Mailhub-Potluck

Overview

This flavour is an application pot flavour with postfix-ldap, dovecot, spamassassin and related packages.

It is assumed this jail is running behind a firewall or gateway device with proxyarp on public address, and 1:1 NAT to internal IP.

Installation

  • Create your local jail from the image or the flavour files.
  • Setup persistent storage
  • Clone the local jail
  • Mount in persistent storage to /mnt
  • Copy in local custom files
    sudo pot copy-in -p <jailname> -s /path/to/postfix_access -d /root/postfix_access
    sudo pot copy-in -p <jailname> -s /path/to/postfix_external_forwards -d /root/postfix_external_forwards
    sudo pot copy-in -p <jailname> -s /path/to/postfix_sender_transport -d /root/postfix_sender_transport
    sudo pot copy-in -p <jailname> -s /path/to/dkim_trusted_hosts -d /root/dkim_trusted_hosts
    sudo pot copy-in -p <jailname> -s /path/to/dkim_my_domains -d /root/dkim_my_domains
    sudo pot copy-in -p <jailname> -s /path/to/spamassassin_whitelist -d /root/spamassassin_whitelist
    
  • Adjust to your environment:
    sudo pot set-env -p <jailname> \
      -E NODENAME=<nodename> \
      -E IP=<IP address of this system> \
      -E DATACENTER=<consul dc> \
      -E CONSULSERVERS="<comma-deliminated list of consul servers>" \
      -E GOSSIPKEY="<gossipkey>" \
      -E LDAPSERVER=<IP address> \
      -E SEARCHBASE="<ldap config, see docs>" \
      -E POSTDATADIR=<directory of persistent storage> \
      -E POSTNETWORKS="<comma-deliminated list of IP/MASK>" \
      -E WHITELIST="<comma-deliminated list of IP/MASK>" \
      -E POSTDOMAINS="<comma-deliminated list of domains>" \
      -E MAILCERTDOMAIN=<FQDN of mail host> \
      -E SIGNDOMAINS="<comma-deliminated list of domains>"
      -E VHOSTDIR=<mount for mail folders> \
      -E POSTMASTERADDRESS=<postmaster email address> \
      -E MYSQLIP=<IP address mysql server> \
      -E MYSQLDB=<spamassassin db name> \
      -E MYSQLUSER=<username> -E MYSQLPASS=<password> \
      [-E REMOTELOG=<IP address of syslog-ng server>]
      [-E POSTSIZELIMIT=<size limit>] \
      [-E ROOTMAIL=<email address to send root's mail>] \
      [-E CUSTOMRBL=<IP address of rbldnsd jail>]
    
  • Start the jail

Required Paramaters

The NODENAME parameter defines the name of this node.

The IP parameter is the IP address which will be used to access services.

The DATACENTER parameter is the consul datacenter.

The CONSULSERVERS parameter is a comma-deliminated list of IP addresses for the consul server or cluster. Do not include spaces!

e.g. CONSULSERVERS="10.0.0.2" or CONSULSERVERS="10.0.0.2,10.0.0.3,10.0.0.4,10.0.0.5,10.0.0.6"

The GOSSIPKEY parameter is the gossip key for the consul datacenter.

The LDAPSERVER parameter is the IP address of the LDAP server to query.

The SEARCHBASE parameter is for LDAP usage in the format "ou=People,dc=yourdomain,dc=tld"

The POSTDATADIR parameter is the postfix data directory, such as /var/db/postfix or /mnt/postfix with a mount-in persistent storage.

The POSTNETWORKS parameter is a comma-deliminated list of host/mask addresses with zero restrictions and must include "127.0.0.0/8,10.0.0.0/8,!10.0.0.1,your-trusted-host/netmask,your-trusted-host-2/netmask"

Do not set too broadly, exclude your gateway/firewall IP with !, else postfix will become an open relay.

The WHITELIST parameter is similar to POSTNETWORKS, except no exclusions. Use CIDR notation and do not include netmask for single IPs, only ranges. "127.0.0.1,10.0.0.0/8,your-trusted-host/netmask,your-trusted-host-2/netmask"

The POSTDOMAINS parameter is a comma-deliminated list of domain names to accept mail for, such as "domain.tld, other.com, newdomain.sh".

The MAILCERTDOMAIN parameter is the FQDN of the mail host requesting certificates, e.g. mail.thishost.tld

The SIGNDOMAINS parameter is a list of domains to sign and must match the domains in the copied in file dkim_my_domains .

The POSTMASTERADDRESS parameter is the postmaster address to use.

The VHOSTDIR parameter is the location of the user mail files. For persistent storage this would be something like /mnt/dovecot.

The MYSQLIP is the IP address or hostname of the mysql server to use with spamassassin.

The MYSQLDB is the name of the database to use with spamassassin. This must be pre-configured.

The MYSQLUSER and MYSQLPASS parameters are the user and password for accessing the mysql database.

Optional Parameters

The REMOTELOG parameter is the IP address of a syslog-ng remote log service, such as via the Beast of Argh pot image.

The POSTSIZELIMIT parameter is to set the size of accepted mail. The default is 536870912.

The ROOTMAIL parameter is an email address to use for redirecting root’s mail.

The CUSTOMRBL parameter is the IP address of a rbldnsd instance, such as Potluck rbldnsd.

Optional files to copy in

Postfix: Replace /usr/local/etc/postfix/access

Create the postfix_access file in the following format and copy-in to /root/postfix_access. Set hosts to reject here.

demo.sophimail.com    REJECT

Postfix: Replace /usr/local/etc/postfix/external_forwards

Create the postfix_external_forwards file in the following format and copy-in to /root/postfix_external_forwards. Set forwards here.

address@domain.com           address@gmail.com
othercontact@newdomain.com   addressa@gmail.com, addressb@aol.com, addressc@anotherhost.com

Postfix: Replace /usr/local/etc/postfix/sender_transport

Create a postfix_sender_transport file in the following format and copy-in to /root/postfix_sender_transport.

@demo.sophimail.com demo_com:

Opendkim: Copy in Trustedhosts

Create the file dkim_trusted_hostsin the following format and copy-in to /root/dkim_trusted_hosts. Make sure to set A.B.C.D/24 to your host/subnet and include additional host/subnet on additional lines.

127.0.0.0/8
10.0.0.0/8
A.B.C.D/24

Opendkim: Copy in My DKIM Domains

Create the file dkim_my_domains in the following format and copy-in to /root/dkim_my_domains. Make sure only one domain per line and no empty lines.

mydomain.com
otherdomain.net
newdomain.rocks

Opendkim will be setup based on these entries.

Spamassasssin: Copy in whitelist entries

Create the file spamassassin_whitelist in the following format and copy-in to /root/spamassassin_whitelist.

email@domain.com
email2@network.rocks

MySQL setup for Spamassassin

You can create an empty database for spamassassin using the following, be sure to set the correct IP address:

mysql -u root -p
create database mail_spamassassin;
grant all privileges on mail_spamassassin.* to 'user_mail_spamassassin'@'10.0.0.1' identified by 'insecure-password';
flush privileges;

Alternatively import an existing database to a new mysql server for use:

mysql -u root -p mail_spamassassin < my-spamassassin-db.sql
mysql -u root -p
  use mail_spamassassin;
  grant all privileges on mail_spamassassin.* to 'user_mail_spamassassin'@'10.0.0.1' identified by 'insecure-password';
  flush privileges;

Usage

Usage documentation pending.

Getting Started

How To Use The Ready-Made Image

FreeBSD 13.2:
pot import -p mailhub-potluck-amd64-13_2 -t 0.10.1 -U https://potluck.honeyguide.net/mailhub-potluck

With Signify Verification:
fetch https://potluck.honeyguide.net/potluck.pub; pot import -p mailhub-potluck-amd64-13_2 -t 0.10.1 -C potluck.pub -U https://potluck.honeyguide.net/mailhub-potluck

If you don’t want to use the default pot bridged network configuration but instead need an individual network setup (e.g. assign a host IP address), after importing it you can simply clone the jail like that (em0 is the host network adapter in this example):
pot clone -P mailhub-potluck-amd64-13_2 -p my-cloned-jail -N alias -i "em0|10.10.10.10"

Note: Some images might require specific network configuration, double check the Overview-chapter at the top.

Alternatively: Create a Jail With This Flavour Yourself

1. Create Flavour Files

Save all files and directories from https://github.com/hny-gd/potluck/tree/master/mailhub-potluck to /usr/local/etc/pot/flavours/

2. Create Jail From Flavour

Run
pot create -b <FreeBSD Version> -p <jailname> -t single -N public-bridge -f fbsd-update

with your FreeBSD version (e.g. 13.2) and the name your jail should get.

Note: Some images might require specific network configuration, double check the Overview-chapter at the top.

Version History

0.10

  • Version bump for new base image

0.9

  • Version bump for new base image

0.8

  • Version bump for new base image
  • Adjust quarterlies link
  • Fix syslog-ng problems for 4.2 version, remove stats_freq option
  • Removed TrustedAuthservIDs setting in opendmarc config
  • Add local unbound and consul DNS services
  • Update README with consul DNS info
  • Comment out local_unbound consul dns as fails to work with unbound dependency
  • fix local_unbound dns resolution with missing parameters for access control
  • Disable consul DNS option with local_unbound as is only practical in VNET jails with a localhost
  • Adjust acme.sh setup and renew scripts for ‘$domain_ecc’ suffix which is default now

0.7

  • Version bump for new base image

0.6

  • Version bump for new base image
  • Signified
  • Fix nologin shell for nodeexport user

0.5

  • Version increment for new feature
  • Pass in consul servers as a comma-deliminated list
  • Fix cert renew script

0.4

  • Version bump for new base image
  • Update syslog-ng.conf stats_freq(0); -> stats(freq(0));
  • Update ports for 2023Q2
  • Need databases/mysql80-client to replace databases/mysql57-client
  • databases/mysql80-client wants /mysql80-server/Makefile, so add mysql80-server
  • Add packages p5-Class-XSAccessor and p5-XString

0.3

  • Version bump for new base image
  • Change mailhome location to mail/domain/username
  • Update checklist
  • Switch to deliver to full uid
  • Debugging adjustments for delivery to correct user folder
  • Add back user-based auth-bind
  • Increase default virtual_alias_expansion_limit to 3000
  • Adjustments for Maildir
  • Revert some settings
  • More changes to Maildir settings
  • Add dovecot-spamass_destination_recipient_limit = 1 to main.cf
  • Adjust postfix ldap alias filters to get uid
  • Create missing sieve directories
  • Fix postfix ldap settings again
  • Add obscure setting ‘receive_override_options = no_address_mappings’ in main.cf to allow delivery to ‘username’ (not ‘username@domain’) accounts which aren’t local but are in virtual aliases
  • Permit authenticated and my networks instead of blocking at helo time
  • Add custom python-policyd-spf.conf
  • Adjust default HELO_reject rule to False in python-policyd-spf.conf
  • Include POSTNETWORKS in python-policyd-spf.conf Whitelist
  • Adjust note for excluding gateway/firewall in POSTNETWORKS
  • Change to WHITELIST for python-policyd-spf.conf Whitelist
  • README updates
  • Revert some python-policyd-spf.conf settings to original
  • Set AuthservID for opendkim to public mail name
  • Set myhostname from mail certificate name in postfix main.cf
  • Adjust copied in files to subdirectory of root
  • Include CUSTOMRBL parameter and update main.cf if set
  • Fix sed for CUSTOMRBL

0.2

  • Version bump for new base image
  • Adjust postfix ldap search parameters
  • Update quarterly release pulled to 2023Q1
  • Update port names to latest versions, include databases/mysql57-client
  • Fix logic to import existing certificates to postfix
  • Shellcheck ignore for SC2039
  • Forced copy and move of certificates into postfix
  • Simplifying postfix ldap search
  • Adjust mailboxes to /mnt/dovecot/mail/username
  • dovecot-ldap needs extra fields to work with new setup

0.1

  • New versioning format
  • Update opendkim setup, requires mailnull ownership on keys
  • Fix postfix dovecot-spamass transport
  • Acme.sh renew script set to use letsencrypt

0.0.39

  • postmap transport file

0.0.38

  • Version bump to rebuild

0.0.37

  • Version bump for rebuild to fix missing images on potluck site

0.0.36

  • Version bump for p3 rebuild

0.0.35

  • Adding back ‘or true’ option

0.0.34

  • Fix errors introduced by last change
  • Make directory /root/.acme.sh/

0.0.33

  • Add log for acme.sh
  • Add second attempt to register if first fails

0.0.32

  • Remove acme.sh insecure flag
  • Set ‘or true’ on acme.sh commands

0.0.31

  • Specify letsencrypt twice

0.0.30

  • Switch to letsencrypt for certificates due to issues with zerossl
  • add options for standalone server to use port 80, insecure

0.0.29

  • update git quarterlies branch to origin 2022Q4
  • Add checklist
  • Update consul config

0.0.28

  • Version bump for rebuild on new base image
  • Adjustments to cook for disabling in nomad and .env.cook

0.0.27

  • Version bump for FreeBSD-13.1 image

0.0.26

  • Left out LDAP option, adjusting format for make.conf

0.0.25

  • Test with option-sets for ports building configured in make.conf

0.0.24

  • Adjusting build process, works manually, not via automation

0.0.23

  • Adding some packages to ports tree git checkout to make dovecot-ldap work

0.0.22

  • Need to postmap copied in config files
  • adjusting make command with all parameters set or unset for compiled ports

0.0.21

  • Still says “Support not compiled in for passdb driver ’ldap’”
  • Added dovecot-ldap.conf.ext customisations

0.0.20

  • Step by step build process for compiled ports to test fix:
  • dovecot error “auth: Fatal: Support not compiled in for passdb driver ’ldap’”

0.0.19

  • chmod -> chown typo fix again
  • remove ssh onedisable entirely, already disabled

0.0.18

  • change to onedisable for ssh disable to remove error
  • remove double start for opendkim-milter causing error code
  • create /var/run/clamav and set owner clamav

0.0.17

  • freshclam needs full path

0.0.16

  • chmod -> chown typo fix

0.0.15

  • Adding vhost user for dovecot
  • fix clamav socket

0.0.14

  • Cleanup opendkim permissions causing script failure
  • Cleanup old comments

0.0.13

  • Version bump for rebuild

0.0.12

  • Fix to POSTSIZELIMIT variable in README
  • Changing how postfix starts to retry

0.0.11

  • Fix typo in previous commit

0.0.10

  • Set postfix ownership on /mnt/postfix to correct startup error

0.0.9

  • Set persistent storage as home directory for initial acme.sh account creation

0.0.8

  • Create missing directories in persistent storage

0.0.7

  • Removed folder permissions change and users for opendkim and opendmarc as users don’t exist
  • Tweaked opendkim.conf template to fix restart parameter error

0.0.6

  • acme.sh changes to register account and use zerossl
  • updated renewal script

0.0.5

  • Fixing error with missing /etc/mail/certs/dh.param
  • Removing postfix option dovecot-spamass_destination_recipient_limit
  • Removing postfix option policyd-spf_time_limit
  • Adding ROOTMAIL parameter for /etc/aliases and root mails

0.0.4

  • Adding gossipkey to docs and parameter check
  • Fixing sendmail disable twice causing error, removed second instance

0.0.3

  • Adding missing package consul

0.0.2

  • Adding missing items to README such as spamassassin whitelist copy-in
  • Typos fixed
  • node_exporter package wasn’t included, added in

0.0.1

  • This is the start of a postfix-ldap, dovecot, spamassassin and related, pot flavour

These images were built on Fri Sep 8 21:25:06 UTC 2023

Manual Image Download Links

mailhub-potluck-amd64-13_2_0.10.1.xz ( )
mailhub-potluck-amd64-13_2_0.10.1.xz.skein ( ) mailhub-potluck-amd64-13_2_0.10.1.xz.skein.sig ( ) mailhub-potluck-amd64-13_2_0.10.1.xz.meta ( )

Jenkins Pot Creation Logs

mailhub-potluck-amd64-13_2_0.10.1:


mailhub-potluck/mailhub-potluck:
copy-in -s /usr/local/etc/pot/flavours/mailhub-potluck.d/local -d /root/.pot_local
mailhub-potluck/mailhub-potluck.sh:
#!/bin/sh

# Based on POTLUCK TEMPLATE v3.0
# Altered by Michael Gmelin
#
# EDIT THE FOLLOWING FOR NEW FLAVOUR:
# 1. RUNS_IN_NOMAD - true or false
# 2. If RUNS_IN_NOMAD is false, can delete the <flavour>+4 file, else
#    make sure pot create command doesn't include it
# 3. Create a matching <flavour> file with this <flavour>.sh file that
#    contains the copy-in commands for the config files from <flavour>.d/
#    Remember that the package directories don't exist yet, so likely copy
#    to /root
# 4. Adjust package installation between BEGIN & END PACKAGE SETUP
# 5. Adjust jail configuration script generation between BEGIN & END COOK
#    Configure the config files that have been copied in where necessary

# Set this to true if this jail flavour is to be created as a nomad
# (i.e. blocking) jail.
# You can then query it in the cook script generation below and the script
# is installed appropriately at the end of this script
RUNS_IN_NOMAD=false

# set the cook log path/filename
COOKLOG=/var/log/cook.log

# check if cooklog exists, create it if not
if [ ! -e $COOKLOG ]
then
    echo "Creating $COOKLOG" | tee -a $COOKLOG
else
    echo "WARNING $COOKLOG already exists"  | tee -a $COOKLOG
fi
date >> $COOKLOG

# -------------------- COMMON ---------------

STEPCOUNT=0
step() {
  STEPCOUNT=$(("$STEPCOUNT" + 1))
  STEP="$*"
  echo "Step $STEPCOUNT: $STEP" | tee -a $COOKLOG
}

exit_ok() {
  trap - EXIT
  exit 0
}

FAILED=" failed"
exit_error() {
  STEP="$*"
  FAILED=""
  exit 1
}

set -e
trap 'echo ERROR: $STEP$FAILED | (>&2 tee -a $COOKLOG)' EXIT

# -------------- BEGIN PACKAGE SETUP -------------

step "Bootstrap package repo"
mkdir -p /usr/local/etc/pkg/repos
# only modify repo if not already done in base image
# shellcheck disable=SC2016
test -e /usr/local/etc/pkg/repos/FreeBSD.conf || \
  echo 'FreeBSD: { url: "pkg+http://pkg.FreeBSD.org/${ABI}/quarterly" }' \
    >/usr/local/etc/pkg/repos/FreeBSD.conf
ASSUME_ALWAYS_YES=yes pkg bootstrap

step "Touch /etc/rc.conf"
touch /etc/rc.conf

# this is important, otherwise running /etc/rc from cook will
# overwrite the IP address set in tinirc
step "Remove ifconfig_epair0b from config"
# shellcheck disable=SC2015
sysrc -cq ifconfig_epair0b && sysrc -x ifconfig_epair0b || true

step "Disable sendmail"
service sendmail onedisable

step "Disable sshd"
service sshd onedisable || true

step "Create /usr/local/etc/rc.d"
mkdir -p /usr/local/etc/rc.d

step "Install package sudo"
pkg install -y sudo

# necessary if installing curl now
step "Install package ca_root_nss"
pkg install -y ca_root_nss

step "Install package curl"
pkg install -y curl

step "Install package jq"
pkg install -y jq

step "Install package jo"
pkg install -y jo

step "Install package nano"
pkg install -y nano

step "Install package bash"
pkg install -y bash

step "Install package rsync"
pkg install -y rsync

step "Install package syslog-ng"
pkg install -y syslog-ng

# ------------- MAILHUB PACKAGES ---------------

step "Install package perl5"
pkg install -y perl5

step "Install package p5-Encode-Detect"
pkg install -y p5-Encode-Detect

step "Install package p5-HTML-Parser"
pkg install -y p5-HTML-Parser

step "Install package p5-HTTP-Date"
pkg install -y p5-HTTP-Date

step "Install package p5-Net-DNS"
pkg install -y p5-Net-DNS

step "Install package p5-NetAddr-IP"
pkg install -y p5-NetAddr-IP

step "Install package p5-Net-CIDR-Lite"
pkg install -y p5-Net-CIDR-Lite

step "Install package p5-Net-IDN-Encode"
pkg install -y p5-Net-IDN-Encode

step "Install package p5-Net-LibIDN"
pkg install -y p5-Net-LibIDN

step "Install package p5-URI"
pkg install -y p5-URI

step "Install package p5-IO-Socket-SSL"
pkg install -y p5-IO-Socket-SSL

step "Install package p5-Mail-DKIM"
pkg install -y p5-Mail-DKIM

step "Install package p5-Crypt-OpenSSL-RSA"
pkg install -y p5-Crypt-OpenSSL-RSA

step "Install package p5-Mail-SPF"
pkg install -y p5-Mail-SPF

step "Install package p5-IO-Socket-SSL"
pkg install -y p5-IO-Socket-SSL

step "Install package p5-Class-XSAccessor"
pkg install -y p5-Class-XSAccessor

step "Install package p5-XString"
pkg install -y p5-XString

step "Install package re2c"
pkg install -y re2c

step "Install package gnupg1"
pkg install -y gnupg1

step "Install package postfix-ldap"
pkg install -y postfix-ldap

step "Install package pkgconf"
pkg install -y pkgconf

step "Install package zstd"
pkg install -y zstd

step "Install package python39"
pkg install -y python39

step "Install package acme.sh"
pkg install -y acme.sh

step "Install package clamav"
pkg install -y clamav

step "Install package opendkim"
pkg install -y opendkim

step "Install package opendmarc"
pkg install -y opendmarc

step "Install package mail/py-spf-engine"
pkg install -y mail/py-spf-engine

step "Install package openldap26-client"
pkg install -y openldap26-client

step "Install package consul"
pkg install -y consul

step "Install package node_exporter"
pkg install -y node_exporter

# ---------------- SETUP PORTS -----------------

step "Install package git-lite"
pkg install -y git-lite

step "Install package go"
pkg install -y go

step "Add openssl and ldap settings to make.conf"
echo "BATCH=yes" > /etc/make.conf
echo "DEFAULT_VERSIONS+=ssl=openssl" >> /etc/make.conf
echo "OPTIONS_SET+= GSSAPI_NONE LDAP MYSQL RAZOR" >> /etc/make.conf

step "Make directory /usr/ports"
mkdir -p /usr/ports

step "Init packages git branch main"
cd /usr/ports
git init -b main

step "Add packages remote origin"
git remote add origin https://git.freebsd.org/ports.git

step "Git sparse checkout init"
git sparse-checkout init

step "Checkout ports and supporting files"
git sparse-checkout set GIDs UIDs \
  Mk/ \
  Templates/ \
  Keywords/ \
  lang/perl5.32/ \
  security/openssl/ \
  archivers/zstd \
  mail/dovecot/ \
  mail/dovecot-pigeonhole/ \
  mail/spamassassin/ \
  lang/python39/ \
  ports-mgmt/pkg/ \
  converters/p5-Encode-Detect/ \
  converters/libiconv/ \
  www/p5-HTML-Parser/ \
  www/p5-HTTP-Date/ \
  dns/p5-Net-DNS/ \
  net-mgmt/p5-NetAddr-IP/ \
  net/p5-Net-CIDR-Lite/ \
  textproc/p5-Net-IDN-Encode/ \
  dns/p5-Net-LibIDN/ \
  net/p5-URI/ \
  devel/re2c/ \
  devel/pkgconf \
  security/p5-IO-Socket-SSL/ \
  mail/p5-Mail-DKIM/ \
  security/p5-Crypt-OpenSSL-RSA/ \
  security/gnupg1/ \
  mail/p5-Mail-SPF/ \
  mail/dcc-dccd/ \
  databases/p5-DBD-mysql/ \
  databases/p5-DBD-Pg/ \
  databases/mysql80-client \
  databases/mysql80-server \
  mail/pyzor/ \
  mail/razor-agents/ \
  security/p5-Digest-SHA1/ \
  net/p5-GeoIP2/ \
  net/p5-IP-Country/ \
  net/openldap26-client \
  net/openldap26-server \
  devel/p5-BSD-Resource/

# checkout quarterly branch instead
# https://wiki.freebsd.org/Ports/QuarterlyBranch
#  "Branches are named according to the year (YYYY)
#   and quarter (Q1-4) they are created in.
#   For example, the quarterly branch created in
#   January 2016, is named 2016Q1."
# Quarterly in Feb 2023 is 2023Q1
step "Pull files"
#git pull --depth=1 origin main
#git pull --depth=1 origin 2022Q3
#git pull --depth=1 origin 2022Q4
#git pull --depth=1 origin 2023Q1
#git pull --depth=1 origin 2023Q2
git pull --depth=1 origin 2023Q3

#step "Port build openssl, remove existing, replace with this port"
##required for latest / main branch
#cd /usr/ports/security/openssl/
#make clean BATCH=1
#make deinstall BATCH=1
#make reinstall BATCH=1

# If openssl port installed, then can build dovecot without giving the error:
#   make: /usr/ports/Mk/Uses/ssl.mk line 95: You are using an unsupported SSL provider openssl
step "Port build dovecot"
cd /usr/ports/mail/dovecot/
make install clean LDAP=ON BATCH=YES
cp -R /usr/local/etc/dovecot/example-config/* /usr/local/etc/dovecot

step "Port build dovecot-pigeonhole"
cd /usr/ports/mail/dovecot-pigeonhole/
make install clean LDAP=ON BATCH=YES

step "Port build spamassassin"
cd /usr/ports/mail/spamassassin/
make reinstall MYSQL=ON RAZOR=ON BATCH=YES

step "Change directory to /root"
cd /root

step "Remove /usr/ports"
rm -rf /usr/ports

# --------------- CLEAN PACKAGES ---------------

step "Package autoremove"
pkg autoremove -y

step "Clean package installation"
pkg clean -y

# -------------- END PACKAGE SETUP -------------


# ------------- DIRECTORY CREATION -------------

# make necessary directories
mkdir -p /mnt/postfix
mkdir -p /mnt/acme
mkdir -p /mnt/spamassassin
mkdir -p /mnt/dovecot
mkdir -p /mnt/opendkim
mkdir -p /mnt/opendmarc
mkdir -p /root/bin

#
# Now generate the run command script "cook"
# It configures the system on the first run by creating the config file(s)
# On subsequent runs, it only starts sleeps (if nomad-jail) or simply exits
#

# this runs when image boots
# ----------------- BEGIN COOK ------------------

step "Clean cook artifacts"
rm -rf /usr/local/bin/cook /usr/local/share/cook

step "Install pot local"
tar -C /root/.pot_local -cf - . | tar -C /usr/local -xf -
rm -rf /root/.pot_local

step "Set file ownership on cook scripts"
chown -R root:wheel /usr/local/bin/cook /usr/local/share/cook
chmod 755 /usr/local/share/cook/bin/*

# ----------------- END COOK ------------------


# ---------- NO NEED TO EDIT BELOW ------------

step "Make cook script executable"
if [ -e /usr/local/bin/cook ]
then
    echo "setting executable bit on /usr/local/bin/cook" | tee -a $COOKLOG
    chmod u+x /usr/local/bin/cook
else
    exit_error "there is no /usr/local/bin/cook to make executable"
fi

#
# There are two ways of running a pot jail: "Normal", non-blocking mode and
# "Nomad", i.e. blocking mode (the pot start command does not return until
# the jail is stopped).
# For the normal mode, we create a /usr/local/etc/rc.d script that starts
# the "cook" script generated above each time, for the "Nomad" mode, the cook
# script is started by pot (configuration through flavour file), therefore
# we do not need to do anything here.
#

# Create rc.d script for "normal" mode:
step "Create rc.d script to start cook"
echo "creating rc.d script to start cook" | tee -a $COOKLOG

# shellcheck disable=SC2016
echo '#!/bin/sh
#
# PROVIDE: cook
# REQUIRE: LOGIN
# KEYWORD: shutdown
#
. /etc/rc.subr
name="cook"
rcvar="cook_enable"
load_rc_config $name
: ${cook_enable:="NO"}
: ${cook_env:=""}
command="/usr/local/bin/cook"
command_args=""
run_rc_command "$1"
' > /usr/local/etc/rc.d/cook

step "Make rc.d script to start cook executable"
if [ -e /usr/local/etc/rc.d/cook ]
then
  echo "Setting executable bit on cook rc file" | tee -a $COOKLOG
  chmod u+x /usr/local/etc/rc.d/cook
else
  exit_error "/usr/local/etc/rc.d/cook does not exist"
fi

if [ "$RUNS_IN_NOMAD" != "true" ]
then
  step "Enable cook service"
  # This is a non-nomad (non-blocking) jail, so we need to make sure the script
  # gets started when the jail is started:
  # Otherwise, /usr/local/bin/cook will be set as start script by the pot
  # flavour
  echo "enabling cook" | tee -a $COOKLOG
  service cook enable
fi

# -------------------- DONE ---------------
exit_ok

mailhub-potluck/mailhub-potluck+1:
mailhub-potluck/mailhub-potluck+1.sh:

mailhub-potluck/mailhub-potluck+2:
mailhub-potluck/mailhub-potluck+2.sh:

mailhub-potluck/mailhub-potluck+3:
mailhub-potluck/mailhub-potluck+3.sh:

mailhub-potluck/mailhub-potluck+4:
mailhub-potluck/mailhub-potluck+4.sh:
=====>  Create conf dir (/mnt/srv/pot/jails/mailhub-potluck-amd64-13_2/conf)
=====>  Cloning freebsd-potluck-amd64-13_2_0_0_17 with snap 
=====>  clone zroot/srv/pot/jails/freebsd-potluck-amd64-13_2_0_0_17/m@1694195587 into zroot/srv/pot/jails/mailhub-potluck-amd64-13_2/m
=====>  Flavour: fbsd-update
=====>  Starting mailhub-potluck-amd64-13_2 pot for the initial bootstrap
=====>  mount /mnt/srv/pot/jails/mailhub-potluck-amd64-13_2/m/tmp
defaultrouter: 10.192.0.1 -> 10.192.0.1
===>  Starting the pot mailhub-potluck-amd64-13_2
ELF ldconfig path: /lib /usr/lib /usr/lib/compat /usr/local/lib /usr/local/lib/compat/pkg /usr/local/lib/compat/pkg
32-bit compatibility ldconfig path: /usr/lib32
Starting Network: lo0 epair0b.
lo0: flags=8049<UP,LOOPBACK,RUNNING,MULTICAST> metric 0 mtu 16384
	options=680003<RXCSUM,TXCSUM,LINKSTATE,RXCSUM_IPV6,TXCSUM_IPV6>
	inet6 ::1 prefixlen 128
	inet6 fe80::1%lo0 prefixlen 64 scopeid 0x1
	inet 127.0.0.1 netmask 0xff000000
	groups: lo
	nd6 options=21<PERFORMNUD,AUTO_LINKLOCAL>
epair0b: flags=8863<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> metric 0 mtu 1500
	options=8<VLAN_MTU>
	ether 02:93:9b:e7:4b:0b
	inet 10.192.0.3 netmask 0xffc00000 broadcast 10.255.255.255
	groups: epair
	media: Ethernet 10Gbase-T (10Gbase-T <full-duplex>)
	status: active
	nd6 options=29<PERFORMNUD,IFDISABLED,AUTO_LINKLOCAL>
add host 127.0.0.1: gateway lo0 fib 0: route already in table
add net default: gateway 10.192.0.1
add host ::1: gateway lo0 fib 0: route already in table
add net fe80::: gateway ::1
add net ff02::: gateway ::1
add net ::ffff:0.0.0.0: gateway ::1
add net ::0.0.0.0: gateway ::1
Clearing /tmp (X related).
Updating motd:.
Updating /var/run/os-release done.
Creating and/or trimming log files.
Starting syslogd.
Starting cron.
Starting sendmail_outbound.

Fri Sep  8 21:13:20 UTC 2023
/usr/local/etc/pot/flavours/fbsd-update.sh -> /mnt/srv/pot/jails/mailhub-potluck-amd64-13_2/m/tmp/fbsd-update.sh
=====>  Executing fbsd-update script on mailhub-potluck-amd64-13_2
src component not installed, skipped
Looking up update.FreeBSD.org mirrors... 2 mirrors found.
Fetching metadata signature for 13.2-RELEASE from update2.freebsd.org... done.
Fetching metadata index... done.
Inspecting system... done.
Preparing to download files... done.

No updates needed to update system to 13.2-RELEASE-p3.
No updates are available to install.
=====>  Stop the pot mailhub-potluck-amd64-13_2
=====>  Remove p464fb8e6bd8ec epair network interfaces
=====>  unmount /mnt/srv/pot/jails/mailhub-potluck-amd64-13_2/m/tmp
=====>  unmount /mnt/srv/pot/jails/mailhub-potluck-amd64-13_2/m/dev
=====>  Flavour: mailhub-potluck
=====>  Executing mailhub-potluck pot commands on mailhub-potluck-amd64-13_2
=====>  mount /mnt/srv/pot/jails/mailhub-potluck-amd64-13_2/m/tmp
=====>  Source /usr/local/etc/pot/flavours/mailhub-potluck.d/local copied in the pot mailhub-potluck-amd64-13_2
=====>  unmount /mnt/srv/pot/jails/mailhub-potluck-amd64-13_2/m/tmp
=====>  /mnt/srv/pot/jails/mailhub-potluck-amd64-13_2/m/dev is already unmounted
=====>  Starting mailhub-potluck-amd64-13_2 pot for the initial bootstrap
=====>  mount /mnt/srv/pot/jails/mailhub-potluck-amd64-13_2/m/tmp
defaultrouter: 10.192.0.1 -> 10.192.0.1
===>  Starting the pot mailhub-potluck-amd64-13_2
ELF ldconfig path: /lib /usr/lib /usr/lib/compat /usr/local/lib /usr/local/lib/compat/pkg /usr/local/lib/compat/pkg
32-bit compatibility ldconfig path: /usr/lib32
Starting Network: lo0 epair0b.
lo0: flags=8049<UP,LOOPBACK,RUNNING,MULTICAST> metric 0 mtu 16384
	options=680003<RXCSUM,TXCSUM,LINKSTATE,RXCSUM_IPV6,TXCSUM_IPV6>
	inet6 ::1 prefixlen 128
	inet6 fe80::1%lo0 prefixlen 64 scopeid 0x1
	inet 127.0.0.1 netmask 0xff000000
	groups: lo
	nd6 options=21<PERFORMNUD,AUTO_LINKLOCAL>
epair0b: flags=8863<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> metric 0 mtu 1500
	options=8<VLAN_MTU>
	ether 02:2b:62:32:cd:0b
	inet 10.192.0.3 netmask 0xffc00000 broadcast 10.255.255.255
	groups: epair
	media: Ethernet 10Gbase-T (10Gbase-T <full-duplex>)
	status: active
	nd6 options=29<PERFORMNUD,IFDISABLED,AUTO_LINKLOCAL>
add host 127.0.0.1: gateway lo0 fib 0: route already in table
add net default: gateway 10.192.0.1
add host ::1: gateway lo0 fib 0: route already in table
add net fe80::: gateway ::1
add net ff02::: gateway ::1
add net ::ffff:0.0.0.0: gateway ::1
add net ::0.0.0.0: gateway ::1
Clearing /tmp (X related).
Updating motd:.
Updating /var/run/os-release done.
Creating and/or trimming log files.
Starting syslogd.
Starting cron.
Starting sendmail_outbound.

Fri Sep  8 21:13:29 UTC 2023
/usr/local/etc/pot/flavours/mailhub-potluck.sh -> /mnt/srv/pot/jails/mailhub-potluck-amd64-13_2/m/tmp/mailhub-potluck.sh
=====>  Executing mailhub-potluck script on mailhub-potluck-amd64-13_2
WARNING /var/log/cook.log already exists
Step 1: Bootstrap package repo
pkg already bootstrapped at /usr/local/sbin/pkg
Step 2: Touch /etc/rc.conf
Step 3: Remove ifconfig_epair0b from config
Step 4: Disable sendmail
sendmail disabled in /etc/rc.conf
sendmail_outbound disabled in /etc/rc.conf
sendmail_msp_queue disabled in /etc/rc.conf
Step 5: Disable sshd
sshd disabled in /etc/rc.conf
Step 6: Create /usr/local/etc/rc.d
Step 7: Install package sudo
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 8: Install package ca_root_nss
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 9: Install package curl
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 10: Install package jq
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 11: Install package jo
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 12: Install package nano
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 13: Install package bash
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 14: Install package rsync
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 15: Install package syslog-ng
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 10 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	e2fsprogs-libuuid: 1.47.0
	glib: 2.76.5,2
	json-c: 0.16
	libffi: 3.4.4
	libxml2: 2.10.4
	mpdecimal: 2.5.1
	pcre: 8.45_3
	pcre2: 10.42
	python39: 3.9.17
	syslog-ng: 4.2.0

Number of packages to be installed: 10

The process will require 171 MiB more space.
26 MiB to be downloaded.
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/10] Fetching libxml2-2.10.4.pkg: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/10] Fetching mpdecimal-2.5.1.pkg: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/10] Fetching python39-3.9.17.pkg: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/10] Fetching pcre-8.45_3.pkg: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/10] Fetching glib-2.76.5,2.pkg: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [6/10] Fetching syslog-ng-4.2.0.pkg: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [7/10] Fetching pcre2-10.42.pkg: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [8/10] Fetching libffi-3.4.4.pkg: ...... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [9/10] Fetching json-c-0.16.pkg: ........ done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [10/10] Fetching e2fsprogs-libuuid-1.47.0.pkg: ..... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/10] Installing mpdecimal-2.5.1...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/10] Extracting mpdecimal-2.5.1: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/10] Installing libffi-3.4.4...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/10] Extracting libffi-3.4.4: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/10] Installing libxml2-2.10.4...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/10] Extracting libxml2-2.10.4: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/10] Installing python39-3.9.17...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/10] Extracting python39-3.9.17: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/10] Installing pcre2-10.42...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/10] Extracting pcre2-10.42: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [6/10] Installing pcre-8.45_3...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [6/10] Extracting pcre-8.45_3: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [7/10] Installing glib-2.76.5,2...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [7/10] Extracting glib-2.76.5,2: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [8/10] Installing json-c-0.16...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [8/10] Extracting json-c-0.16: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [9/10] Installing e2fsprogs-libuuid-1.47.0...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [9/10] Extracting e2fsprogs-libuuid-1.47.0: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [10/10] Installing syslog-ng-4.2.0...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [10/10] Extracting syslog-ng-4.2.0: .......... done
Generating GIO modules cache
Compiling glib schemas
No schema files found: doing nothing.
=====
Message from python39-3.9.17:

--
Note that some standard Python modules are provided as separate ports
as they require additional dependencies. They are available as:

py39-gdbm       databases/py-gdbm@py39
py39-sqlite3    databases/py-sqlite3@py39
py39-tkinter    x11-toolkits/py-tkinter@py39
=====
Message from syslog-ng-4.2.0:

--
syslog-ng is now installed!  To replace FreeBSD's standard syslogd
(/usr/sbin/syslogd), complete these steps:

1. Create a configuration file named /usr/local/etc/syslog-ng.conf
   (a sample named syslog-ng.conf.sample has been included in
   /usr/local/etc). Note that this is a change in 2.0.2
   version, previous ones put the config file in
   /usr/local/etc/syslog-ng/syslog-ng.conf, so if this is an update
   move that file in the right place

2. Configure syslog-ng to start automatically by adding the following
   to /etc/rc.conf:

        syslog_ng_enable="YES"

3. Prevent the standard FreeBSD syslogd from starting automatically by
   adding a line to the end of your /etc/rc.conf file that reads:

        syslogd_enable="NO"

4. Shut down the standard FreeBSD syslogd:

     kill `cat /var/run/syslog.pid`

5. Start syslog-ng:

     /usr/local/etc/rc.d/syslog-ng start
Step 16: Install package perl5
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 1 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	perl5: 5.32.1_3

Number of packages to be installed: 1

The process will require 59 MiB more space.
14 MiB to be downloaded.
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching perl5-5.32.1_3.pkg: .......... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Installing perl5-5.32.1_3...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting perl5-5.32.1_3: .......... done
Step 17: Install package p5-Encode-Detect
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 1 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	p5-Encode-Detect: 1.01_1

Number of packages to be installed: 1

73 KiB to be downloaded.
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching p5-Encode-Detect-1.01_1.pkg: .......... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Installing p5-Encode-Detect-1.01_1...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting p5-Encode-Detect-1.01_1: ......... done
Step 18: Install package p5-HTML-Parser
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 10 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	p5-Clone: 0.46
	p5-Encode-Locale: 1.05
	p5-HTML-Parser: 3.81
	p5-HTML-Tagset: 3.20_1
	p5-HTTP-Date: 6.05
	p5-HTTP-Message: 6.44
	p5-IO-HTML: 1.004
	p5-LWP-MediaTypes: 6.04
	p5-TimeDate: 2.33,1
	p5-URI: 5.19

Number of packages to be installed: 10

351 KiB to be downloaded.
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/10] Fetching p5-HTTP-Date-6.05.pkg: .. done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/10] Fetching p5-URI-5.19.pkg: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/10] Fetching p5-Encode-Locale-1.05.pkg: .. done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/10] Fetching p5-HTML-Parser-3.81.pkg: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/10] Fetching p5-LWP-MediaTypes-6.04.pkg: ... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [6/10] Fetching p5-TimeDate-2.33,1.pkg: ..... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [7/10] Fetching p5-IO-HTML-1.004.pkg: .. done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [8/10] Fetching p5-Clone-0.46.pkg: .. done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [9/10] Fetching p5-HTML-Tagset-3.20_1.pkg: .. done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [10/10] Fetching p5-HTTP-Message-6.44.pkg: .......... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/10] Installing p5-TimeDate-2.33,1...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/10] Extracting p5-TimeDate-2.33,1: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/10] Installing p5-HTTP-Date-6.05...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/10] Extracting p5-HTTP-Date-6.05: ....... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/10] Installing p5-URI-5.19...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/10] Extracting p5-URI-5.19: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/10] Installing p5-Encode-Locale-1.05...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/10] Extracting p5-Encode-Locale-1.05: ....... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/10] Installing p5-LWP-MediaTypes-6.04...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/10] Extracting p5-LWP-MediaTypes-6.04: ........ done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [6/10] Installing p5-IO-HTML-1.004...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [6/10] Extracting p5-IO-HTML-1.004: ....... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [7/10] Installing p5-Clone-0.46...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [7/10] Extracting p5-Clone-0.46: ......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [8/10] Installing p5-HTML-Tagset-3.20_1...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [8/10] Extracting p5-HTML-Tagset-3.20_1: ....... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [9/10] Installing p5-HTTP-Message-6.44...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [9/10] Extracting p5-HTTP-Message-6.44: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [10/10] Installing p5-HTML-Parser-3.81...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [10/10] Extracting p5-HTML-Parser-3.81: .......... done
Step 19: Install package p5-HTTP-Date
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 20: Install package p5-Net-DNS
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 2 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	p5-Digest-HMAC: 1.04
	p5-Net-DNS: 1.39,1

Number of packages to be installed: 2

336 KiB to be downloaded.
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/2] Fetching p5-Net-DNS-1.39,1.pkg: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/2] Fetching p5-Digest-HMAC-1.04.pkg: .. done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/2] Installing p5-Digest-HMAC-1.04...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/2] Extracting p5-Digest-HMAC-1.04: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/2] Installing p5-Net-DNS-1.39,1...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/2] Extracting p5-Net-DNS-1.39,1: .......... done
Step 21: Install package p5-NetAddr-IP
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 1 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	p5-NetAddr-IP: 4.079

Number of packages to be installed: 1

85 KiB to be downloaded.
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching p5-NetAddr-IP-4.079.pkg: .......... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Installing p5-NetAddr-IP-4.079...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting p5-NetAddr-IP-4.079: .......... done
Step 22: Install package p5-Net-CIDR-Lite
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 1 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	p5-Net-CIDR-Lite: 0.22

Number of packages to be installed: 1

12 KiB to be downloaded.
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching p5-Net-CIDR-Lite-0.22.pkg: .. done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Installing p5-Net-CIDR-Lite-0.22...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting p5-Net-CIDR-Lite-0.22: ....... done
Step 23: Install package p5-Net-IDN-Encode
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 1 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	p5-Net-IDN-Encode: 2.500

Number of packages to be installed: 1

74 KiB to be downloaded.
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching p5-Net-IDN-Encode-2.500.pkg: .......... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Installing p5-Net-IDN-Encode-2.500...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting p5-Net-IDN-Encode-2.500: .......... done
Step 24: Install package p5-Net-LibIDN
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 2 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	libidn: 1.38
	p5-Net-LibIDN: 0.12_5

Number of packages to be installed: 2

The process will require 1 MiB more space.
230 KiB to be downloaded.
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/2] Fetching p5-Net-LibIDN-0.12_5.pkg: ... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/2] Fetching libidn-1.38.pkg: .......... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/2] Installing libidn-1.38...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/2] Extracting libidn-1.38: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/2] Installing p5-Net-LibIDN-0.12_5...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/2] Extracting p5-Net-LibIDN-0.12_5: ......... done
Step 25: Install package p5-URI
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 26: Install package p5-IO-Socket-SSL
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 4 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	p5-IO-Socket-IP: 0.41
	p5-IO-Socket-SSL: 2.083_1
	p5-Mozilla-CA: 20221114
	p5-Net-SSLeay: 1.92

Number of packages to be installed: 4

The process will require 2 MiB more space.
610 KiB to be downloaded.
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/4] Fetching p5-Net-SSLeay-1.92.pkg: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/4] Fetching p5-IO-Socket-SSL-2.083_1.pkg: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/4] Fetching p5-IO-Socket-IP-0.41.pkg: .... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/4] Fetching p5-Mozilla-CA-20221114.pkg: .......... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/4] Installing p5-Net-SSLeay-1.92...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/4] Extracting p5-Net-SSLeay-1.92: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/4] Installing p5-IO-Socket-IP-0.41...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/4] Extracting p5-IO-Socket-IP-0.41: ....... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/4] Installing p5-Mozilla-CA-20221114...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/4] Extracting p5-Mozilla-CA-20221114: ....... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/4] Installing p5-IO-Socket-SSL-2.083_1...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/4] Extracting p5-IO-Socket-SSL-2.083_1: .......... done
Step 27: Install package p5-Mail-DKIM
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 7 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	p5-Crypt-OpenSSL-Bignum: 0.09
	p5-Crypt-OpenSSL-RSA: 0.33
	p5-Crypt-OpenSSL-Random: 0.15
	p5-JSON: 4.10
	p5-Mail-AuthenticationResults: 2.20230112
	p5-Mail-DKIM: 1.20230212
	p5-Mail-Tools: 2.21

Number of packages to be installed: 7

The process will require 1 MiB more space.
405 KiB to be downloaded.
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/7] Fetching p5-Mail-AuthenticationResults-2.20230112.pkg: ...... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/7] Fetching p5-Mail-DKIM-1.20230212.pkg: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/7] Fetching p5-Crypt-OpenSSL-RSA-0.33.pkg: .... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/7] Fetching p5-Crypt-OpenSSL-Random-0.15.pkg: .. done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/7] Fetching p5-JSON-4.10.pkg: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [6/7] Fetching p5-Mail-Tools-2.21.pkg: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [7/7] Fetching p5-Crypt-OpenSSL-Bignum-0.09.pkg: .... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/7] Installing p5-Crypt-OpenSSL-Random-0.15...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/7] Extracting p5-Crypt-OpenSSL-Random-0.15: ........ done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/7] Installing p5-JSON-4.10...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/7] Extracting p5-JSON-4.10: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/7] Installing p5-Crypt-OpenSSL-Bignum-0.09...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/7] Extracting p5-Crypt-OpenSSL-Bignum-0.09: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/7] Installing p5-Mail-AuthenticationResults-2.20230112...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/7] Extracting p5-Mail-AuthenticationResults-2.20230112: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/7] Installing p5-Crypt-OpenSSL-RSA-0.33...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/7] Extracting p5-Crypt-OpenSSL-RSA-0.33: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [6/7] Installing p5-Mail-Tools-2.21...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [6/7] Extracting p5-Mail-Tools-2.21: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [7/7] Installing p5-Mail-DKIM-1.20230212...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [7/7] Extracting p5-Mail-DKIM-1.20230212: .......... done
Step 28: Install package p5-Crypt-OpenSSL-RSA
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 29: Install package p5-Mail-SPF
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 3 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	p5-Error: 0.17029
	p5-Mail-SPF: 2.9.0_5
	p5-Net-DNS-Resolver-Programmable: 0.009

Number of packages to be installed: 3

167 KiB to be downloaded.
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/3] Fetching p5-Net-DNS-Resolver-Programmable-0.009.pkg: ... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/3] Fetching p5-Mail-SPF-2.9.0_5.pkg: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/3] Fetching p5-Error-0.17029.pkg: .... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/3] Installing p5-Net-DNS-Resolver-Programmable-0.009...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/3] Extracting p5-Net-DNS-Resolver-Programmable-0.009: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/3] Installing p5-Error-0.17029...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/3] Extracting p5-Error-0.17029: ......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/3] Installing p5-Mail-SPF-2.9.0_5...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/3] Extracting p5-Mail-SPF-2.9.0_5: .......... done
Step 30: Install package p5-IO-Socket-SSL
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 31: Install package p5-Class-XSAccessor
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 1 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	p5-Class-XSAccessor: 1.19_2,1

Number of packages to be installed: 1

32 KiB to be downloaded.
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching p5-Class-XSAccessor-1.19_2,1.pkg: ..... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Installing p5-Class-XSAccessor-1.19_2,1...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting p5-Class-XSAccessor-1.19_2,1: .......... done
Step 32: Install package p5-XString
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 1 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	p5-XString: 0.005

Number of packages to be installed: 1

12 KiB to be downloaded.
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching p5-XString-0.005.pkg: .. done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Installing p5-XString-0.005...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting p5-XString-0.005: ........ done
Step 33: Install package re2c
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 1 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	re2c: 3.0

Number of packages to be installed: 1

The process will require 3 MiB more space.
402 KiB to be downloaded.
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching re2c-3.0.pkg: .......... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Installing re2c-3.0...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting re2c-3.0: .......... done
Step 34: Install package gnupg1
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 1 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	gnupg1: 1.4.23_2

Number of packages to be installed: 1

The process will require 5 MiB more space.
1 MiB to be downloaded.
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching gnupg1-1.4.23_2.pkg: .......... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Installing gnupg1-1.4.23_2...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting gnupg1-1.4.23_2: .......... done
Step 35: Install package postfix-ldap
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 4 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	cyrus-sasl: 2.1.28
	icu: 73.2,1
	openldap26-client: 2.6.4
	postfix-ldap: 3.8.1,1

Number of packages to be installed: 4

The process will require 74 MiB more space.
15 MiB to be downloaded.
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/4] Fetching postfix-ldap-3.8.1,1.pkg: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/4] Fetching cyrus-sasl-2.1.28.pkg: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/4] Fetching icu-73.2,1.pkg: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/4] Fetching openldap26-client-2.6.4.pkg: .......... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/4] Installing cyrus-sasl-2.1.28...
*** Added group `cyrus' (id 60)
*** Added user `cyrus' (id 60)
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/4] Extracting cyrus-sasl-2.1.28: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/4] Installing icu-73.2,1...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/4] Extracting icu-73.2,1: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/4] Installing openldap26-client-2.6.4...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/4] Extracting openldap26-client-2.6.4: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/4] Installing postfix-ldap-3.8.1,1...
===> Creating groups.
Using existing group 'mail'.
Creating group 'maildrop' with gid '126'.
Creating group 'postfix' with gid '125'.
===> Creating users
Creating user 'postfix' with uid '125'.
===> Creating homedir(s)
Adding user 'postfix' to group 'mail'.
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/4] Extracting postfix-ldap-3.8.1,1: .......... done

===============================================================
Postfix was *not* activated in /usr/local/etc/mail/mailer.conf! 

To finish installation run the following commands:

  mkdir -p /usr/local/etc/mail
  install -m 0644 /usr/local/share/postfix/mailer.conf.postfix /usr/local/etc/mail/mailer.conf
===============================================================

=====
Message from cyrus-sasl-2.1.28:

--
You can use sasldb2 for authentication, to add users use:

	saslpasswd2 -c username

If you want to enable SMTP AUTH with the system Sendmail, read
Sendmail.README

NOTE: This port has been compiled with a default pwcheck_method of
      auxprop.  If you want to authenticate your user by /etc/passwd,
      PAM or LDAP, install ports/security/cyrus-sasl2-saslauthd and
      set sasl_pwcheck_method to saslauthd after installing the
      Cyrus-IMAPd 2.X port.  You should also check the
      /usr/local/lib/sasl2/*.conf files for the correct
      pwcheck_method.
      If you want to use GSSAPI mechanism, install
      ports/security/cyrus-sasl2-gssapi.
      If you want to use SRP mechanism, install
      ports/security/cyrus-sasl2-srp.
      If you want to use LDAP auxprop plugin, install
      ports/security/cyrus-sasl2-ldapdb.
=====
Message from openldap26-client-2.6.4:

--
The OpenLDAP client package has been successfully installed.

Edit
  /usr/local/etc/openldap/ldap.conf
to change the system-wide client defaults.

Try `man ldap.conf' and visit the OpenLDAP FAQ-O-Matic at
  http://www.OpenLDAP.org/faq/index.cgi?file=3
for more information.
=====
Message from postfix-ldap-3.8.1,1:

--
To use postfix instead of sendmail:
  - clear sendmail queue and stop the sendmail daemons

Run the following commands to enable postfix during startup:
  - sysrc postfix_enable="YES"
  - sysrc sendmail_enable="NONE"

If postfix is *not* already activated in /usr/local/etc/mail/mailer.conf
  - mv /usr/local/etc/mail/mailer.conf /usr/local/etc/mail/mailer.conf.old
  - install -d /usr/local/etc/mail
  - install -m 0644 /usr/local/share/postfix/mailer.conf.postfix /usr/local/etc/mail/mailer.conf

Disable sendmail(8) specific tasks,
add the following lines to /etc/periodic.conf(.local):
  daily_clean_hoststat_enable="NO"
  daily_status_mail_rejects_enable="NO"
  daily_status_include_submit_mailq="NO"
  daily_submit_queuerun="NO"

If you are using SASL, you need to make sure that postfix has access to read
the sasldb file.  This is accomplished by adding postfix to group mail and
making the /usr/local/etc/sasldb* file(s) readable by group mail (this should
be the default for new installs).
Step 36: Install package pkgconf
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 1 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	pkgconf: 1.8.1,1

Number of packages to be installed: 1

67 KiB to be downloaded.
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching pkgconf-1.8.1,1.pkg: ......... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Installing pkgconf-1.8.1,1...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting pkgconf-1.8.1,1: .......... done
Step 37: Install package zstd
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 38: Install package python39
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 39: Install package acme.sh
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 2 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	acme.sh: 3.0.6
	socat: 1.7.4.4

Number of packages to be installed: 2

The process will require 2 MiB more space.
383 KiB to be downloaded.
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/2] Fetching socat-1.7.4.4.pkg: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/2] Fetching acme.sh-3.0.6.pkg: .......... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/2] Installing socat-1.7.4.4...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/2] Extracting socat-1.7.4.4: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/2] Installing acme.sh-3.0.6...
===> Creating groups.
Creating group 'acme' with gid '169'.
===> Creating users
Creating user 'acme' with uid '169'.
===> Creating homedir(s)
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/2] Extracting acme.sh-3.0.6: .......... done
=====
Message from acme.sh-3.0.6:

--
This script will create the following directories if they do not exist:

 ~acme/.acme.sh
 ~acme/certs

The script will also install ~acme/.acme.sh/account.conf.sample which has
sane defaults.  Copy this to ~acme/.acme.sh/account.conf and edit contents
to suit.

If you have EXAMPLES on:

* In the /usr/local/share/examples/acme.sh directory, you can find the dnsapi 
  scripts which will be useful if you decide to use dns-01 challenges. Also 
  included are the deploy scripts.

* A newsyslog.conf sample file is installed at 
  /usr/local/etc/newsyslog.conf.d/acme.sh.conf - you must modify it by
  at least uncommenting the line.

* If you run `newsyslog -NC` it will create the required logfiles.

* Please review /usr/local/share/examples/acme.sh/acme.sh-cron.d - instructions are
  contained in that file.
Step 40: Install package clamav
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 5 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	arc: 5.21q
	arj: 3.10.22_9
	clamav: 1.1.2,1
	libmspack: 0.11alpha
	unzoo: 4.4_2

Number of packages to be installed: 5

The process will require 39 MiB more space.
6 MiB to be downloaded.
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/5] Fetching libmspack-0.11alpha.pkg: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/5] Fetching unzoo-4.4_2.pkg: ... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/5] Fetching clamav-1.1.2,1.pkg: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/5] Fetching arj-3.10.22_9.pkg: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/5] Fetching arc-5.21q.pkg: ....... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/5] Installing libmspack-0.11alpha...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/5] Extracting libmspack-0.11alpha: ......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/5] Installing unzoo-4.4_2...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/5] Extracting unzoo-4.4_2: ..... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/5] Installing arj-3.10.22_9...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/5] Extracting arj-3.10.22_9: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/5] Installing arc-5.21q...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/5] Extracting arc-5.21q: ....... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/5] Installing clamav-1.1.2,1...
===> Creating groups.
Creating group 'clamav' with gid '106'.
Using existing group 'mail'.
===> Creating users
Creating user 'clamav' with uid '106'.
Adding user 'clamav' to group 'mail'.
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/5] Extracting clamav-1.1.2,1: .......... done
Step 41: Install package opendkim
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 7 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	expat: 2.5.0
	libedit: 3.1.20221030,1
	libevent: 2.1.12
	libsodium: 1.0.18
	lua54: 5.4.6
	opendkim: 2.10.3_16
	unbound: 1.17.1_2

Number of packages to be installed: 7

The process will require 16 MiB more space.
4 MiB to be downloaded.
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/7] Fetching unbound-1.17.1_2.pkg: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/7] Fetching libedit-3.1.20221030,1.pkg: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/7] Fetching lua54-5.4.6.pkg: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/7] Fetching opendkim-2.10.3_16.pkg: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/7] Fetching libsodium-1.0.18.pkg: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [6/7] Fetching expat-2.5.0.pkg: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [7/7] Fetching libevent-2.1.12.pkg: .......... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/7] Installing libedit-3.1.20221030,1...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/7] Extracting libedit-3.1.20221030,1: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/7] Installing libsodium-1.0.18...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/7] Extracting libsodium-1.0.18: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/7] Installing expat-2.5.0...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/7] Extracting expat-2.5.0: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/7] Installing libevent-2.1.12...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/7] Extracting libevent-2.1.12: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/7] Installing unbound-1.17.1_2...
===> Creating groups.
Using existing group 'unbound'.
===> Creating users
Using existing user 'unbound'.
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/7] Extracting unbound-1.17.1_2: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [6/7] Installing lua54-5.4.6...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [6/7] Extracting lua54-5.4.6: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [7/7] Installing opendkim-2.10.3_16...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [7/7] Extracting opendkim-2.10.3_16: .......... done
=====
Message from opendkim-2.10.3_16:

--
In order to run this port, write your opendkim.conf and:

if you use sendmail, add the milter socket `socketspec' in
/etc/mail/<your_configuration>.mc:

INPUT_MAIL_FILTER(`dkim-filter', `S=_YOUR_SOCKET_SPEC_, F=T, T=R:2m')

or if you use postfix write your milter socket `socketspec' in
/usr/local/etc/postfix/main.cf:

smtpd_milters = _YOUR_SOCKET_SPEC_


And to run the milter from startup, add milteropendkim_enable="YES" in
your /etc/rc.conf.
Extra options can be found in startup script.

Note: milter sockets must be accessible from postfix/smtpd;
  using inet sockets might be preferred.
Step 42: Install package opendmarc
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 27 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	groff: 1.22.4_4
	hidapi: 0.14.0
	libcbor: 0.10.2
	libcjson: 1.7.15_1
	libfido2: 1.13.0
	libpaper: 1.1.28
	libspf2: 1.2.11
	libunwind: 20211201_2
	mysql80-client: 8.0.32_3
	opendmarc: 1.4.2
	p5-Authen-NTLM: 1.09_1
	p5-Crypt-SSLeay: 0.72_3
	p5-DBD-mysql: 4.050_1
	p5-DBI: 1.643
	p5-File-Listing: 6.15
	p5-Filter: 1.64
	p5-HTTP-CookieJar: 0.014
	p5-HTTP-Cookies: 6.10
	p5-HTTP-Negotiate: 6.01_1
	p5-LWP-Protocol-https: 6.10
	p5-Net-HTTP: 6.22
	p5-Switch: 2.17_1
	p5-Try-Tiny: 0.31
	p5-WWW-RobotRules: 6.02_1
	p5-libwww: 6.70
	psutils: 1.17_5
	uchardet: 0.0.8

Number of packages to be installed: 27

The process will require 136 MiB more space.
8 MiB to be downloaded.
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/27] Fetching p5-Try-Tiny-0.31.pkg: ... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/27] Fetching libcjson-1.7.15_1.pkg: ..... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/27] Fetching p5-Net-HTTP-6.22.pkg: .... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/27] Fetching p5-libwww-6.70.pkg: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/27] Fetching p5-WWW-RobotRules-6.02_1.pkg: .. done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [6/27] Fetching p5-HTTP-CookieJar-0.014.pkg: .. done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [7/27] Fetching p5-Filter-1.64.pkg: ....... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [8/27] Fetching groff-1.22.4_4.pkg: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [9/27] Fetching p5-HTTP-Cookies-6.10.pkg: .... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [10/27] Fetching p5-LWP-Protocol-https-6.10.pkg: .. done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [11/27] Fetching hidapi-0.14.0.pkg: ..... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [12/27] Fetching p5-Authen-NTLM-1.09_1.pkg: .. done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [13/27] Fetching libunwind-20211201_2.pkg: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [14/27] Fetching p5-HTTP-Negotiate-6.01_1.pkg: .. done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [15/27] Fetching p5-DBD-mysql-4.050_1.pkg: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [16/27] Fetching mysql80-client-8.0.32_3.pkg: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [17/27] Fetching libspf2-1.2.11.pkg: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [18/27] Fetching libcbor-0.10.2.pkg: .... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [19/27] Fetching p5-DBI-1.643.pkg: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [20/27] Fetching uchardet-0.0.8.pkg: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [21/27] Fetching p5-File-Listing-6.15.pkg: .. done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [22/27] Fetching psutils-1.17_5.pkg: ........ done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [23/27] Fetching p5-Crypt-SSLeay-0.72_3.pkg: ..... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [24/27] Fetching libpaper-1.1.28.pkg: ... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [25/27] Fetching opendmarc-1.4.2.pkg: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [26/27] Fetching libfido2-1.13.0.pkg: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [27/27] Fetching p5-Switch-2.17_1.pkg: ... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/27] Installing p5-Try-Tiny-0.31...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/27] Extracting p5-Try-Tiny-0.31: ...... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/27] Installing libcjson-1.7.15_1...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/27] Extracting libcjson-1.7.15_1: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/27] Installing p5-Net-HTTP-6.22...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/27] Extracting p5-Net-HTTP-6.22: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/27] Installing p5-WWW-RobotRules-6.02_1...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/27] Extracting p5-WWW-RobotRules-6.02_1: ......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/27] Installing p5-HTTP-CookieJar-0.014...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/27] Extracting p5-HTTP-CookieJar-0.014: ........ done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [6/27] Installing p5-HTTP-Cookies-6.10...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [6/27] Extracting p5-HTTP-Cookies-6.10: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [7/27] Installing p5-Authen-NTLM-1.09_1...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [7/27] Extracting p5-Authen-NTLM-1.09_1: ......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [8/27] Installing p5-HTTP-Negotiate-6.01_1...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [8/27] Extracting p5-HTTP-Negotiate-6.01_1: ....... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [9/27] Installing p5-File-Listing-6.15...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [9/27] Extracting p5-File-Listing-6.15: ....... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [10/27] Installing libpaper-1.1.28...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [10/27] Extracting libpaper-1.1.28: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [11/27] Installing p5-libwww-6.70...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [11/27] Extracting p5-libwww-6.70: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [12/27] Installing libcbor-0.10.2...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [12/27] Extracting libcbor-0.10.2: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [13/27] Installing uchardet-0.0.8...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [13/27] Extracting uchardet-0.0.8: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [14/27] Installing psutils-1.17_5...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [14/27] Extracting psutils-1.17_5: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [15/27] Installing groff-1.22.4_4...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [15/27] Extracting groff-1.22.4_4: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [16/27] Installing p5-LWP-Protocol-https-6.10...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [16/27] Extracting p5-LWP-Protocol-https-6.10: ....... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [17/27] Installing hidapi-0.14.0...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [17/27] Extracting hidapi-0.14.0: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [18/27] Installing libunwind-20211201_2...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [18/27] Extracting libunwind-20211201_2: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [19/27] Installing libfido2-1.13.0...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [19/27] Extracting libfido2-1.13.0: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [20/27] Installing p5-Filter-1.64...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [20/27] Extracting p5-Filter-1.64: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [21/27] Installing mysql80-client-8.0.32_3...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [21/27] Extracting mysql80-client-8.0.32_3: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [22/27] Installing p5-DBI-1.643...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [22/27] Extracting p5-DBI-1.643: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [23/27] Installing p5-Crypt-SSLeay-0.72_3...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [23/27] Extracting p5-Crypt-SSLeay-0.72_3: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [24/27] Installing p5-DBD-mysql-4.050_1...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [24/27] Extracting p5-DBD-mysql-4.050_1: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [25/27] Installing libspf2-1.2.11...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [25/27] Extracting libspf2-1.2.11: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [26/27] Installing p5-Switch-2.17_1...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [26/27] Extracting p5-Switch-2.17_1: ....... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [27/27] Installing opendmarc-1.4.2...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [27/27] Extracting opendmarc-1.4.2: .......... done
=====
Message from groff-1.22.4_4:

--
In order to be able to use the html driver, you need to install the following
packages:
 - ghostscript
 - netpbm
=====
Message from mysql80-client-8.0.32_3:

--
This is the mysql CLIENT without the server.
for complete server and client, please install databases/mysql80-server
Step 43: Install package mail/py-spf-engine
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 6 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	py39-authres: 1.2.0
	py39-dnspython: 2.3.0,1
	py39-milter: 1.0.5
	py39-pyspf: 2.0.14
	py39-setuptools: 63.1.0_1
	py39-spf-engine: 3.0.4

Number of packages to be installed: 6

The process will require 12 MiB more space.
2 MiB to be downloaded.
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/6] Fetching py39-authres-1.2.0.pkg: .... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/6] Fetching py39-spf-engine-3.0.4.pkg: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/6] Fetching py39-setuptools-63.1.0_1.pkg: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/6] Fetching py39-dnspython-2.3.0,1.pkg: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/6] Fetching py39-pyspf-2.0.14.pkg: ..... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [6/6] Fetching py39-milter-1.0.5.pkg: .......... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/6] Installing py39-setuptools-63.1.0_1...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/6] Extracting py39-setuptools-63.1.0_1: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/6] Installing py39-authres-1.2.0...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/6] Extracting py39-authres-1.2.0: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/6] Installing py39-dnspython-2.3.0,1...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/6] Extracting py39-dnspython-2.3.0,1: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/6] Installing py39-pyspf-2.0.14...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/6] Extracting py39-pyspf-2.0.14: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/6] Installing py39-milter-1.0.5...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/6] Extracting py39-milter-1.0.5: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [6/6] Installing py39-spf-engine-3.0.4...
===> Creating groups.
Creating group 'pyspf-milter' with gid '880'.
===> Creating users
Creating user 'pyspf-milter' with uid '880'.
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [6/6] Extracting py39-spf-engine-3.0.4: .......... done
=====
Message from py39-spf-engine-3.0.4:

--
#
# Using policyd-spf with Postfix
#

Policyd-spf must be integrated with Postfix to be effective:

 1. Add to your postfix master.cf:

        policyd-spf  unix  -       n       n       -       0       spawn
            user=nobody argv=/usr/local/bin/policyd-spf

 2. Configure the Postfix policy service in your main.cf so that the
    "smtpd_recipient_restrictions" includes a call to the policyd-spf policy
    filter.  If you already have a "smtpd_recipient_restrictions" line, you can
    add the "check_policy_service" command anywhere *after* the line which
    reads "reject_unauth_destination" (otherwise you're system can become an
    open relay).

        smtpd_recipient_restrictions =
            ...
            reject_unauth_destination
            check_policy_service unix:private/policyd-spf
            ...

        policyd-spf_time_limit = 3600

  3. Please consult the postfix documentation for more information on these and
     other settings you may wish to have in the "smtpd_recipient_restrictions"
     configuration.

  4. Reload postfix.

#
# Automatically starting pyspf-milter at boot time.
#

Add 'pyspf_milter_enable="YES"' to /etc/rc.conf.

#
# Using pyspf-milter with Sendmail
#

Following is an example configuration line to include in your sendmail.mc.

INPUT_MAIL_FILTER(`pyspf-milter', `S=local:/var/run/pyspf-milter/pyspf-milter.sock')dnl

#
# Using pyspf-milter with Postfix
#

Integration of pyspf-milter into Postfix is like any milter (See Postfix's
README_FILES/MILTER_README). But care is required to segregate outbound mail
from inbound mail to be checked. Here is example using milter macros to keep
the mail streams segregated.

/usr/local/etc/postfix/main.cf:

smtpd_milters = unix:/var/run/pyspf-milter/pyspf-milter.sock

/usr/local/etc/postfix/master.cf:

smtp       inet  n       -       -       -       -       smtpd
    ...
        -o milter_macro_daemon_name=VERIFYING
    ...

/usr/local/etc/python-policyd-spf/policyd-spf.conf:

MacroList               daemon_name|VERIFYING
Step 44: Install package openldap26-client
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 45: Install package consul
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 1 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	consul: 1.16.0_1

Number of packages to be installed: 1

The process will require 108 MiB more space.
19 MiB to be downloaded.
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching consul-1.16.0_1.pkg: .......... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Installing consul-1.16.0_1...
===> Creating groups.
Creating group 'consul' with gid '469'.
===> Creating users
Creating user 'consul' with uid '469'.
===> Creating homedir(s)
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting consul-1.16.0_1: ..... done
Step 46: Install package node_exporter
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 1 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	node_exporter: 1.5.0_6

Number of packages to be installed: 1

The process will require 11 MiB more space.
3 MiB to be downloaded.
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching node_exporter-1.5.0_6.pkg: .......... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Installing node_exporter-1.5.0_6...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting node_exporter-1.5.0_6: .......... done
=====
Message from node_exporter-1.5.0_6:

--
If upgrading from a version of node_exporter <0.15.0 you'll need to update any
custom command line flags that you may have set as it now requires a
double-dash (--flag) instead of a single dash (-flag).
The collector flags in 0.15.0 have now been replaced with individual boolean
flags and the -collector.procfs` and -collector.sysfs` flags have been renamed
to --path.procfs and --path.sysfs respectively.
Step 47: Install package git-lite
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 1 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	git-lite: 2.41.0

Number of packages to be installed: 1

The process will require 33 MiB more space.
5 MiB to be downloaded.
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching git-lite-2.41.0.pkg: .......... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Installing git-lite-2.41.0...
===> Creating groups.
Creating group 'git_daemon' with gid '964'.
===> Creating users
Creating user 'git_daemon' with uid '964'.
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting git-lite-2.41.0: .......... done
=====
Message from git-lite-2.41.0:

--
If you installed the GITWEB option please follow these instructions:

In the directory /usr/local/share/examples/git/gitweb you can find all files to
make gitweb work as a public repository on the web.

All you have to do to make gitweb work is:
1) Please be sure you're able to execute CGI scripts in
   /usr/local/share/examples/git/gitweb.
2) Set the GITWEB_CONFIG variable in your webserver's config to
   /usr/local/etc/git/gitweb.conf. This variable is passed to gitweb.cgi.
3) Restart server.


If you installed the CONTRIB option please note that the scripts are
installed in /usr/local/share/git-core/contrib. Some of them require
other ports to be installed (perl, python, etc), which you may need to
install manually.
Step 48: Install package go
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 2 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	go: 1.20,2
	go120: 1.20.7

Number of packages to be installed: 2

The process will require 200 MiB more space.
38 MiB to be downloaded.
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/2] Fetching go-1.20,2.pkg: . done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/2] Fetching go120-1.20.7.pkg: .......... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/2] Installing go120-1.20.7...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/2] Extracting go120-1.20.7: .......... done
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/2] Installing go-1.20,2...
[mailhub-potluck-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/2] Extracting go-1.20,2: .. done
Step 49: Add openssl and ldap settings to make.conf
Step 50: Make directory /usr/ports
Step 51: Init packages git branch main
Initialized empty Git repository in /usr/ports/.git/
Step 52: Add packages remote origin
Step 53: Git sparse checkout init
Step 54: Checkout ports and supporting files
Step 55: Pull files
From https://git.freebsd.org/ports
 * branch                2023Q3     -> FETCH_HEAD
 * [new branch]          2023Q3     -> origin/2023Q3
Step 56: Port build dovecot
===>  License LGPL21 MIT accepted by the user
===>   dovecot-2.3.20_1 depends on file: /usr/local/sbin/pkg - found
=> dovecot-2.3.20.tar.gz doesn't seem to exist in /usr/ports/distfiles/.
=> Attempting to fetch https://dovecot.org/releases/2.3/dovecot-2.3.20.tar.gz
dovecot-2.3.20.tar.gz                                 7622 kB 3806 kBps    02s
===> Fetching all distfiles required by dovecot-2.3.20_1 for building
===>  Extracting for dovecot-2.3.20_1
=> SHA256 Checksum OK for dovecot-2.3.20.tar.gz.
===>  Patching for dovecot-2.3.20_1
===>  Applying FreeBSD patches for dovecot-2.3.20_1 from /usr/ports/mail/dovecot/files
===>   dovecot-2.3.20_1 depends on package: libiconv>=1.14_11 - found
===>   dovecot-2.3.20_1 depends on package: pkgconf>=1.3.0_1 - found
===>   dovecot-2.3.20_1 depends on file: /usr/local/lib/libcrypto.so.11 - found
===>   dovecot-2.3.20_1 depends on shared library: libzstd.so - found (/usr/local/lib/libzstd.so)
===>   dovecot-2.3.20_1 depends on shared library: libldap.so.2 - found (/usr/local/lib/libldap.so.2)
===>   dovecot-2.3.20_1 depends on shared library: libmysqlclient.so.21 - found (/usr/local/lib/mysql/libmysqlclient.so.21)
===>  Configuring for dovecot-2.3.20_1
configure: loading site script /usr/ports/Templates/config.site
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p
checking for gawk... (cached) /usr/bin/awk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking whether to enable maintainer-specific portions of Makefiles... no
checking pkg-config is at least version 0.9.0... yes
checking whether make supports the include directive... yes (GNU style)
checking for gcc... cc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether cc accepts -g... yes
checking for cc option to accept ISO C89... none needed
checking whether cc understands -c and -o together... yes
checking dependency style of cc... gcc3
checking for library containing strerror... none required
checking for gcc... (cached) cc
checking whether we are using the GNU C compiler... (cached) yes
checking whether cc accepts -g... (cached) yes
checking for cc option to accept ISO C89... (cached) none needed
checking whether cc understands -c and -o together... (cached) yes
checking dependency style of cc... (cached) gcc3
checking how to run the C preprocessor... cpp
checking whether we are using the GNU C++ compiler... yes
checking whether c++ accepts -g... yes
checking dependency style of c++... gcc3
checking for flex... flex
checking for bison... no
checking for grep that handles long lines and -e... (cached) /usr/bin/grep
checking for egrep... (cached) /usr/bin/egrep
checking for ANSI C header files... (cached) yes
checking for inline... inline
checking build system type... amd64-portbld-freebsd13.2
checking host system type... amd64-portbld-freebsd13.2
checking how to print strings... printf
checking for a sed that does not truncate output... (cached) /usr/bin/sed
checking for fgrep... (cached) /usr/bin/fgrep
checking for ld used by cc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm
checking the name lister (/usr/bin/nm) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... (cached) 524288
checking how to convert amd64-portbld-freebsd13.2 file names to amd64-portbld-freebsd13.2 format... func_convert_file_noop
checking how to convert amd64-portbld-freebsd13.2 file names to toolchain format... func_convert_file_noop
checking for /usr/bin/ld option to reload object files... -r
checking for objdump... no
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for ar... ar
checking for archiver @FILE support... no
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/bin/nm output from cc object... ok
checking for sysroot... no
checking for a working dd... /bin/dd
checking how to truncate binary pipes... /bin/dd bs=4096 count=1
checking for mt... mt
checking if mt is a manifest tool... no
checking for sys/types.h... (cached) yes
checking for sys/stat.h... (cached) yes
checking for stdlib.h... (cached) yes
checking for string.h... (cached) yes
checking for memory.h... (cached) yes
checking for strings.h... (cached) yes
checking for inttypes.h... (cached) yes
checking for stdint.h... (cached) yes
checking for unistd.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for objdir... .libs
checking if cc supports -fno-rtti -fno-exceptions... yes
checking for cc option to produce PIC... -fPIC -DPIC
checking if cc PIC flag -fPIC -DPIC works... yes
checking if cc static flag -static works... yes
checking if cc supports -c -o file.o... yes
checking if cc supports -c -o file.o... (cached) yes
checking whether the cc linker (/usr/bin/ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... freebsd13.2 ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking how to run the C++ preprocessor... c++ -E
checking for ld used by c++... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking whether the c++ linker (/usr/bin/ld) supports shared libraries... yes
checking for c++ option to produce PIC... -fPIC -DPIC
checking if c++ PIC flag -fPIC -DPIC works... yes
checking if c++ static flag -static works... yes
checking if c++ supports -c -o file.o... yes
checking if c++ supports -c -o file.o... (cached) yes
checking whether the c++ linker (/usr/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... freebsd13.2 ld.so
checking how to hardcode library paths into programs... immediate
checking for ld used by cc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for shared library run path origin... done
checking for iconv... yes
checking for working iconv... yes
checking for iconv declaration... 
         extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);
checking for strings.h... (cached) yes
checking for stdint.h... (cached) yes
checking for unistd.h... (cached) yes
checking for dirent.h... (cached) yes
checking malloc.h usability... yes
checking malloc.h presence... yes
checking for malloc.h... yes
checking for sys/uio.h... (cached) yes
checking sys/sysmacros.h usability... no
checking sys/sysmacros.h presence... no
checking for sys/sysmacros.h... no
checking for sys/resource.h... (cached) yes
checking for sys/select.h... (cached) yes
checking for libgen.h... (cached) yes
checking sys/quota.h usability... no
checking sys/quota.h presence... no
checking for sys/quota.h... no
checking sys/fs/ufs_quota.h usability... no
checking sys/fs/ufs_quota.h presence... no
checking for sys/fs/ufs_quota.h... no
checking ufs/ufs/quota.h usability... yes
checking ufs/ufs/quota.h presence... yes
checking for ufs/ufs/quota.h... yes
checking jfs/quota.h usability... no
checking jfs/quota.h presence... no
checking for jfs/quota.h... no
checking quota.h usability... no
checking quota.h presence... no
checking for quota.h... no
checking sys/fs/quota_common.h usability... no
checking sys/fs/quota_common.h presence... no
checking for sys/fs/quota_common.h... no
checking mntent.h usability... no
checking mntent.h presence... no
checking for mntent.h... no
checking sys/mnttab.h usability... no
checking sys/mnttab.h presence... no
checking for sys/mnttab.h... no
checking sys/event.h usability... yes
checking sys/event.h presence... yes
checking for sys/event.h... yes
checking for sys/time.h... (cached) yes
checking sys/mkdev.h usability... no
checking sys/mkdev.h presence... no
checking for sys/mkdev.h... no
checking linux/dqblk_xfs.h usability... no
checking linux/dqblk_xfs.h presence... no
checking for linux/dqblk_xfs.h... no
checking xfs/xqm.h usability... no
checking xfs/xqm.h presence... no
checking for xfs/xqm.h... no
checking execinfo.h usability... yes
checking execinfo.h presence... yes
checking for execinfo.h... yes
checking for ucontext.h... (cached) yes
checking malloc_np.h usability... yes
checking malloc_np.h presence... yes
checking for malloc_np.h... yes
checking sys/utsname.h usability... yes
checking sys/utsname.h presence... yes
checking for sys/utsname.h... yes
checking sys/vmount.h usability... no
checking sys/vmount.h presence... no
checking for sys/vmount.h... no
checking for sys/utsname.h... (cached) yes
checking for glob.h... (cached) yes
checking linux/falloc.h usability... no
checking linux/falloc.h presence... no
checking for linux/falloc.h... no
checking ucred.h usability... no
checking ucred.h presence... no
checking for ucred.h... no
checking sys/ucred.h usability... yes
checking sys/ucred.h presence... yes
checking for sys/ucred.h... yes
checking crypt.h usability... no
checking crypt.h presence... no
checking for crypt.h... no
checking whether cc is clang 3.3+... yes
checking whether C compiler handles -Werror -Wunknown-warning-option... yes
checking whether C compiler handles -Wstrict-bool... no
checking for linker option to include whole archive... -Wl,--whole-archive
checking Whether to enable hardening... yes
checking whether C compiler handles -pie... yes
checking whether C compiler handles -fstack-protector-strong... yes
checking whether C compiler handles -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2... yes
checking whether C compiler handles -mfunction-return=keep... no
checking whether C compiler handles -mindirect-branch=keep... no
checking for how to force completely read-only GOT table... unknown
checking whether we want undefined behaviour sanitizer... no
checking for library containing inet_aton... none required
checking for library containing gethostbyname... none required
checking for library containing socket... none required
checking for library containing gethostent... none required
checking for library containing fdatasync... none required
checking for cap_init in -lcap... no
checking tcpd.h usability... yes
checking tcpd.h presence... yes
checking for tcpd.h... yes
checking whether we have libwrap... yes
checking sys/random.h usability... yes
checking sys/random.h presence... yes
checking for sys/random.h... yes
checking for getrandom... yes
checking whether getrandom is declared... yes
checking for arc4random_buf... (cached) yes
checking for fcntl... (cached) yes
checking for flock... yes
checking for lockf... yes
checking for inet_aton... (cached) yes
checking for sigaction... (cached) yes
checking for getpagesize... (cached) yes
checking for madvise... yes
checking for strcasecmp... (cached) yes
checking for stricmp... no
checking for vsyslog... yes
checking for writev... yes
checking for pread... (cached) yes
checking for uname... (cached) yes
checking for setrlimit... (cached) yes
checking for setproctitle... (cached) yes
checking for seteuid... (cached) yes
checking for setreuid... (cached) yes
checking for setegid... (cached) yes
checking for setresgid... (cached) yes
checking for getmntinfo... yes
checking for setpriority... yes
checking for quotactl... yes
checking for getmntent... no
checking for kqueue... yes
checking for kevent... yes
checking for backtrace_symbols... no
checking for walkcontext... no
checking for dirfd... (cached) yes
checking for clearenv... no
checking for malloc_usable_size... yes
checking for glob... (cached) yes
checking for fallocate... no
checking for posix_fadvise... yes
checking for getpeereid... (cached) yes
checking for getpeerucred... no
checking for inotify_init... no
checking for timegm... yes
checking for struct sockpeercred... no
checking for library containing clock_gettime... none required
checking for typeof... yes
checking whether we can use epoll... no
checking whether we can use inotify... "no"
checking whether we can use BSD kqueue() notify... "yes"
checking whether we have glibc... no
checking whether posix_fallocate() works... yes
checking whether OS supports plugin dependencies... yes
checking size of int... 4
checking size of long... 8
checking size of void *... 8
checking size of long long... 8
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... no
checking for _Bool... (cached) yes
checking for uoff_t... no
checking type of off_t... long
checking whether size_t is signed... no
checking type of size_t... unsigned long
checking for inttypes.h... (cached) yes
checking for stdint.h... (cached) yes
checking for uintmax_t... yes
checking for uint_fast32_t... yes
checking for socklen_t... yes
checking for /dev/urandom... yes
checking for tm_gmtoff... yes
checking how large time_t values gmtime() accepts... 40
checking type of time_t... long
checking if we can use C99 static in array sizes... yes
checking if we can use C99-like flexible array members... yes
checking for struct iovec... yes
checking whether dev_t is struct... no
checking whether RLIMIT_AS exists... yes
checking whether RLIMIT_NPROC exists... yes
checking whether RLIMIT_CORE exists... yes
checking whether PR_SET_DUMPABLE exists... no
checking Linux compatible mremap()... no
checking whether shared mmaps get updated by write()s... yes
checking whether fd passing works... yes
checking for sendfile in -lsendfile... no
checking Linux compatible sendfile()... no
checking FreeBSD compatible sendfile()... yes
checking if we should use _XPG6 macro for crypt()... yes
checking for crypt... no
checking for crypt in -lcrypt... (cached) yes
checking if struct stat has st_?tim timespec fields... yes
checking if struct stat has st_?timespec fields... yes
checking if statvfs.f_mntfromname exists... no
checking if statfs.f_mntfromname exists... yes
checking if struct dqblk.dqb_curblocks exists... yes
checking if struct dqblk.dqb_curspace exists... no
checking if Q_QUOTACTL ioctl exists... no
checking for C99 vsnprintf()... yes
checking for an implementation of va_copy()... yes
checking for an implementation of __va_copy()... yes
checking whether va_lists can be copied by value... no
checking for dlopen... (cached) yes
checking for SSL... yes
checking if OpenSSL version is 1.0.1 or newer... true
checking if OpenSSL version is 1.0.2 or better... true
checking whether SSL_clear_options exists... yes
checking whether CRYPTO_set_mem_functions has new style parameters... yes
checking whether SSL_CTX_set1_curves_list exists... yes
checking whether SSL_CTX_set_min_proto_version exists... yes
checking whether SSL_CTX_add0_chain_cert exists... yes
checking whether SSL_CTX_set_current_cert exists... yes
checking for SSL_CIPHER_get_kx_nid in -lssl... yes
checking for ERR_remove_thread_state in -lssl... yes
checking for OPENSSL_thread_stop in -lssl... yes
checking for OPENSSL_cleanup in -lssl... yes
checking for SSL_get_current_compression in -lssl... yes
checking for SSL_get_servername in -lssl... yes
checking for SSL_COMP_free_compression_methods in -lssl... no
checking for RSA_generate_key_ex in -lssl... yes
checking for ASN1_STRING_get0_data in -lssl... yes
checking for HMAC_CTX_new in -lssl... yes
checking for EVP_MD_CTX_new in -lssl... yes
checking for OBJ_length in -lssl... yes
checking for EVP_PKEY_get0_RSA in -lssl... yes
checking for SSL_CTX_set_ciphersuites in -lssl... yes
checking for BN_secure_new in -lssl... yes
checking for RSA_set0_key in -lssl... yes
checking for RSA_set0_factors in -lssl... yes
checking for RSA_set0_crt_params in -lssl... yes
checking for ECDSA_SIG_get0 in -lssl... yes
checking for ECDSA_SIG_set0 in -lssl... yes
checking for EC_GROUP_order_bits in -lssl... yes
checking for X509_check_host in -lssl... yes
checking for X509_check_ip in -lssl... yes
checking for X509_check_ip_asc in -lssl... yes
checking for EVP_PKEY_CTX_new_id in -lssl... yes
checking for EC_KEY_new in -lssl... yes
checking whether we will be linking with libunwind... no
checking whether we will be linking in Lua... no
checking for pam_start in -lpam... yes
checking for security/pam_appl.h... (cached) yes
checking pam/pam_appl.h usability... no
checking pam/pam_appl.h presence... no
checking for pam/pam_appl.h... no
checking for pam_setcred in -lpam... yes
checking for auth_userokay... no
checking for ldap_init in -lldap... yes
checking ldap.h usability... yes
checking ldap.h presence... yes
checking for ldap.h... yes
checking for ldap_initialize in -lldap... yes
checking for ldap_start_tls_s in -lldap... yes
checking for ber_free in -lldap... no
checking for ber_free in -llber... yes
checking sasl.h usability... no
checking sasl.h presence... no
checking for sasl.h... no
checking sasl/sasl.h usability... yes
checking sasl/sasl.h presence... yes
checking for sasl/sasl.h... yes
checking for mysql_config... mysql_config
checking for mysql_init in -lmysqlclient... yes
checking mysql.h usability... yes
checking mysql.h presence... yes
checking for mysql.h... yes
checking for mysql_ssl_set in -lmysqlclient... yes
checking whether byte ordering is bigendian... no
checking for IPv6... yes
checking for zlib.h... (cached) yes
checking bzlib.h usability... yes
checking bzlib.h presence... yes
checking for bzlib.h... yes
checking for BZ2_bzdopen in -lbz2... yes
checking lzma.h usability... yes
checking lzma.h presence... yes
checking for lzma.h... yes
checking for lzma_stream_decoder in -llzma... yes
checking for ZSTD... yes
checking whether ZSTD_error_parameter_unsupported is declared... yes
checking whether ZSTD_minCLevel is declared... no
checking for ZSTD_getErrorCode in -lzstd... yes
checking for LIBTIRPC... no
checking rpc/rpc.h usability... yes
checking rpc/rpc.h presence... yes
checking for rpc/rpc.h... yes
checking for library containing quota_open... no
checking sys/apparmor.h usability... no
checking sys/apparmor.h presence... no
checking for sys/apparmor.h... no
checking for pandoc... no
checking for valgrind... reject
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating doc/Makefile
config.status: creating doc/man/Makefile
config.status: creating doc/wiki/Makefile
config.status: creating doc/example-config/Makefile
config.status: creating doc/example-config/conf.d/Makefile
config.status: creating src/Makefile
config.status: creating src/lib/Makefile
config.status: creating src/lib-sql/Makefile
config.status: creating src/lib-auth/Makefile
config.status: creating src/lib-charset/Makefile
config.status: creating src/lib-compression/Makefile
config.status: creating src/lib-dcrypt/Makefile
config.status: creating src/lib-dict/Makefile
config.status: creating src/lib-dict-backend/Makefile
config.status: creating src/lib-dict-extra/Makefile
config.status: creating src/lib-dns/Makefile
config.status: creating src/lib-fs/Makefile
config.status: creating src/lib-fts/Makefile
config.status: creating src/lib-http/Makefile
config.status: creating src/lib-oauth2/Makefile
config.status: creating src/lib-imap/Makefile
config.status: creating src/lib-imap-storage/Makefile
config.status: creating src/lib-imap-client/Makefile
config.status: creating src/lib-imap-urlauth/Makefile
config.status: creating src/lib-index/Makefile
config.status: creating src/lib-lda/Makefile
config.status: creating src/lib-ldap/Makefile
config.status: creating src/lib-lua/Makefile
config.status: creating src/lib-mail/Makefile
config.status: creating src/lib-master/Makefile
config.status: creating src/lib-program-client/Makefile
config.status: creating src/lib-otp/Makefile
config.status: creating src/lib-dovecot/Makefile
config.status: creating src/lib-sasl/Makefile
config.status: creating src/lib-settings/Makefile
config.status: creating src/lib-smtp/Makefile
config.status: creating src/lib-ssl-iostream/Makefile
config.status: creating src/lib-old-stats/Makefile
config.status: creating src/lib-test/Makefile
config.status: creating src/lib-storage/Makefile
config.status: creating src/lib-storage/list/Makefile
config.status: creating src/lib-storage/index/Makefile
config.status: creating src/lib-storage/index/imapc/Makefile
config.status: creating src/lib-storage/index/pop3c/Makefile
config.status: creating src/lib-storage/index/maildir/Makefile
config.status: creating src/lib-storage/index/mbox/Makefile
config.status: creating src/lib-storage/index/dbox-common/Makefile
config.status: creating src/lib-storage/index/dbox-multi/Makefile
config.status: creating src/lib-storage/index/dbox-single/Makefile
config.status: creating src/lib-storage/index/raw/Makefile
config.status: creating src/lib-storage/index/shared/Makefile
config.status: creating src/anvil/Makefile
config.status: creating src/auth/Makefile
config.status: creating src/config/Makefile
config.status: creating src/doveadm/Makefile
config.status: creating src/doveadm/dsync/Makefile
config.status: creating src/lda/Makefile
config.status: creating src/log/Makefile
config.status: creating src/lmtp/Makefile
config.status: creating src/dict/Makefile
config.status: creating src/director/Makefile
config.status: creating src/dns/Makefile
config.status: creating src/indexer/Makefile
config.status: creating src/ipc/Makefile
config.status: creating src/imap/Makefile
config.status: creating src/imap-hibernate/Makefile
config.status: creating src/imap-login/Makefile
config.status: creating src/imap-urlauth/Makefile
config.status: creating src/login-common/Makefile
config.status: creating src/master/Makefile
config.status: creating src/pop3/Makefile
config.status: creating src/pop3-login/Makefile
config.status: creating src/submission/Makefile
config.status: creating src/submission-login/Makefile
config.status: creating src/replication/Makefile
config.status: creating src/replication/aggregator/Makefile
config.status: creating src/replication/replicator/Makefile
config.status: creating src/stats/Makefile
config.status: creating src/old-stats/Makefile
config.status: creating src/util/Makefile
config.status: creating src/plugins/Makefile
config.status: creating src/plugins/acl/Makefile
config.status: creating src/plugins/imap-acl/Makefile
config.status: creating src/plugins/fs-compress/Makefile
config.status: creating src/plugins/fts/Makefile
config.status: creating src/plugins/fts-lucene/Makefile
config.status: creating src/plugins/fts-solr/Makefile
config.status: creating src/plugins/fts-squat/Makefile
config.status: creating src/plugins/last-login/Makefile
config.status: creating src/plugins/lazy-expunge/Makefile
config.status: creating src/plugins/listescape/Makefile
config.status: creating src/plugins/mail-log/Makefile
config.status: creating src/plugins/mail-lua/Makefile
config.status: creating src/plugins/mailbox-alias/Makefile
config.status: creating src/plugins/notify/Makefile
config.status: creating src/plugins/notify-status/Makefile
config.status: creating src/plugins/push-notification/Makefile
config.status: creating src/plugins/pop3-migration/Makefile
config.status: creating src/plugins/quota/Makefile
config.status: creating src/plugins/quota-clone/Makefile
config.status: creating src/plugins/imap-quota/Makefile
config.status: creating src/plugins/replication/Makefile
config.status: creating src/plugins/old-stats/Makefile
config.status: creating src/plugins/imap-old-stats/Makefile
config.status: creating src/plugins/trash/Makefile
config.status: creating src/plugins/virtual/Makefile
config.status: creating src/plugins/welcome/Makefile
config.status: creating src/plugins/zlib/Makefile
config.status: creating src/plugins/imap-zlib/Makefile
config.status: creating src/plugins/mail-crypt/Makefile
config.status: creating src/plugins/var-expand-crypt/Makefile
config.status: creating src/plugins/apparmor/Makefile
config.status: creating src/plugins/charset-alias/Makefile
config.status: creating stamp.h
config.status: creating dovecot-config.in
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing libtool commands

Install prefix . : /usr/local
File offsets ... : 64bit
I/O polling .... : kqueue
I/O notifys .... : kqueue
SSL ............ : yes (OpenSSL)
GSSAPI ......... : no
passdbs ........ : static passwd passwd-file pam checkpassword ldap sql
                 : -shadow -bsdauth
userdbs ........ : static prefetch passwd passwd-file checkpassword ldap sql
CFLAGS ......... : -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include  
SYSTEMD ........ : simple - (no unit file)
SQL drivers .... : mysql
                 : -pgsql -sqlite -cassandra
Full text search : squat
                 : -lucene -solr
===>  Building for dovecot-2.3.20_1
--- all ---
/usr/bin/make  all-recursive
--- all-recursive ---
Making all in .
--- dovecot-version.h ---
--- dovecot-config ---
--- dovecot-version.h ---
/bin/sh ./update-version.sh . .
--- dovecot-config ---
old=`pwd` && cd . && abs_builddir=`pwd` && cd $old &&  cd . && abs_srcdir=`pwd` && cd $old &&  (echo "DOVECOT_INSTALLED=no"; cat dovecot-config.in | sed  -e "s|\$(top_builddir)|$abs_builddir|g"  -e "s|\$(incdir)|$abs_srcdir|g"  -e "s|\$(LIBICONV)||g"  -e "s|\$(MODULE_LIBS)|-export-dynamic|g"  -e "s|^\(dovecot_pkgincludedir\)=|\1=/usr/local/include/dovecot|"  -e "s|^\(dovecot_pkglibdir\)=|\1=/usr/local/lib/dovecot|"  -e "s|^\(dovecot_pkglibexecdir\)=|\1=/usr/local/libexec/dovecot|"  -e "s|^\(dovecot_docdir\)=|\1=/usr/local/share/doc/dovecot|"  -e "s|^\(dovecot_moduledir\)=|\1=/usr/local/lib/dovecot|"  -e "s|^\(dovecot_statedir\)=|\1=/var/db/dovecot|"  ) > dovecot-config
Making all in src
--- all-recursive ---
Making all in lib-test
--- fuzzer.lo ---
--- test-common.lo ---
--- test-istream.lo ---
--- test-ostream.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-char--- fuzzer.lo ---
/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fuzzer.lo -MD -MP -MF .deps/fuzzer.Tpo -c -o fuzzer.lo fuzzer.c
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-char--- test-common.lo ---
/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-common.lo -MD -MP -MF .deps/test-common.Tpo -c -o test-common.lo test-common.c
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-char--- test-istream.lo ---
/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-istream.lo -MD -MP -MF .deps/test-istream.Tpo -c -o test-istream.lo test-istream.c
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-char--- test-ostream.lo ---
/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-ostream.lo -MD -MP -MF .deps/test-ostream.Tpo -c -o test-ostream.lo test-ostream.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-char/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-ostream.lo -MD -MP -MF .deps/test-ostream.Tpo -c test-ostream.c  -fPIC -DPIC -o .libs/test-ostream.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-char--- fuzzer.lo ---
/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fuzzer.lo -MD -MP -MF .deps/fuzzer.Tpo -c fuzzer.c  -fPIC -DPIC -o .libs/fuzzer.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-char--- test-common.lo ---
/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-common.lo -MD -MP -MF .deps/test-common.Tpo -c test-common.c  -fPIC -DPIC -o .libs/test-common.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-char--- test-istream.lo ---
/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-istream.lo -MD -MP -MF .deps/test-istream.Tpo -c test-istream.c  -fPIC -DPIC -o .libs/test-istream.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-char/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-istream.lo -MD -MP -MF .deps/test-istream.Tpo -c test-istream.c -o test-istream.o >/dev/null 2>&1
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-char--- test-ostream.lo ---
/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-ostream.lo -MD -MP -MF .deps/test-ostream.Tpo -c test-ostream.c -o test-ostream.o >/dev/null 2>&1
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-char--- fuzzer.lo ---
/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fuzzer.lo -MD -MP -MF .deps/fuzzer.Tpo -c fuzzer.c -o fuzzer.o >/dev/null 2>&1
--- test-istream.lo ---
mv -f .deps/test-istream.Tpo .deps/test-istream.Plo
--- fuzzer.lo ---
mv -f .deps/fuzzer.Tpo .deps/fuzzer.Plo
--- test-subprocess.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-char/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-subprocess.lo -MD -MP -MF .deps/test-subprocess.Tpo -c -o test-subprocess.lo test-subprocess.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-char--- test-common.lo ---
/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-common.lo -MD -MP -MF .deps/test-common.Tpo -c test-common.c -o test-common.o >/dev/null 2>&1
--- test-ostream.lo ---
mv -f .deps/test-ostream.Tpo .deps/test-ostream.Plo
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-char--- test-subprocess.lo ---
/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-subprocess.lo -MD -MP -MF .deps/test-subprocess.Tpo -c test-subprocess.c  -fPIC -DPIC -o .libs/test-subprocess.o
--- test-common.lo ---
mv -f .deps/test-common.Tpo .deps/test-common.Plo
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-char--- test-subprocess.lo ---
/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-subprocess.lo -MD -MP -MF .deps/test-subprocess.Tpo -c test-subprocess.c -o test-subprocess.o >/dev/null 2>&1
mv -f .deps/test-subprocess.Tpo .deps/test-subprocess.Plo
--- libtest.la ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o libtest.la  fuzzer.lo test-common.lo test-istream.lo  test-ostream.lo test-subprocess.lo  
libtool: link: ar cru .libs/libtest.a .libs/fuzzer.o .libs/test-common.o .libs/test-istream.o .libs/test-ostream.o .libs/test-subprocess.o 
libtool: link: ranlib .libs/libtest.a
libtool: link: ( cd ".libs" && rm -f "libtest.la" && ln -s "../libtest.la" "libtest.la" )
Making all in lib
--- all ---
/usr/bin/make  all-am
--- test_lib-test-lib.o ---
--- test_lib-test-array.o ---
--- test_lib-test-aqueue.o ---
--- test_lib-test-backtrace.o ---
--- test_lib-test-lib.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-lib.o -MD -MP -MF .deps/test_lib-test-lib.Tpo -c -o test_lib-test-lib.o `test -f 'test-lib.c' || echo './'`test-lib.c
--- test_lib-test-array.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-array.o -MD -MP -MF .deps/test_lib-test-array.Tpo -c -o test_lib-test-array.o `test -f 'test-array.c' || echo './'`test-array.c
--- test_lib-test-aqueue.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-aqueue.o -MD -MP -MF .deps/test_lib-test-aqueue.Tpo -c -o test_lib-test-aqueue.o `test -f 'test-aqueue.c' || echo './'`test-aqueue.c
--- test_lib-test-backtrace.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-backtrace.o -MD -MP -MF .deps/test_lib-test-backtrace.Tpo -c -o test_lib-test-backtrace.o `test -f 'test-backtrace.c' || echo './'`test-backtrace.c
mv -f .deps/test_lib-test-backtrace.Tpo .deps/test_lib-test-backtrace.Po
--- test_lib-test-lib.o ---
mv -f .deps/test_lib-test-lib.Tpo .deps/test_lib-test-lib.Po
--- test_lib-test-base32.o ---
--- test_lib-test-base64.o ---
--- test_lib-test-base32.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-base32.o -MD -MP -MF .deps/test_lib-test-base32.Tpo -c -o test_lib-test-base32.o `test -f 'test-base32.c' || echo './'`test-base32.c
--- test_lib-test-base64.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-base64.o -MD -MP -MF .deps/test_lib-test-base64.Tpo -c -o test_lib-test-base64.o `test -f 'test-base64.c' || echo './'`test-base64.c
--- test_lib-test-aqueue.o ---
mv -f .deps/test_lib-test-aqueue.Tpo .deps/test_lib-test-aqueue.Po
--- test_lib-test-bits.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-bits.o -MD -MP -MF .deps/test_lib-test-bits.Tpo -c -o test_lib-test-bits.o `test -f 'test-bits.c' || echo './'`test-bits.c
--- test_lib-test-base32.o ---
mv -f .deps/test_lib-test-base32.Tpo .deps/test_lib-test-base32.Po
--- test_lib-test-bsearch-insert-pos.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-bsearch-insert-pos.o -MD -MP -MF .deps/test_lib-test-bsearch-insert-pos.Tpo -c -o test_lib-test-bsearch-insert-pos.o `test -f 'test-bsearch-insert-pos.c' || echo './'`test-bsearch-insert-pos.c
--- test_lib-test-bits.o ---
mv -f .deps/test_lib-test-bits.Tpo .deps/test_lib-test-bits.Po
--- test_lib-test-buffer.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-buffer.o -MD -MP -MF .deps/test_lib-test-buffer.Tpo -c -o test_lib-test-buffer.o `test -f 'test-buffer.c' || echo './'`test-buffer.c
--- test_lib-test-bsearch-insert-pos.o ---
mv -f .deps/test_lib-test-bsearch-insert-pos.Tpo .deps/test_lib-test-bsearch-insert-pos.Po
--- test_lib-test-buffer-istream.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-buffer-istream.o -MD -MP -MF .deps/test_lib-test-buffer-istream.Tpo -c -o test_lib-test-buffer-istream.o `test -f 'test-buffer-istream.c' || echo './'`test-buffer-istream.c
--- test_lib-test-array.o ---
mv -f .deps/test_lib-test-array.Tpo .deps/test_lib-test-array.Po
--- test_lib-test-byteorder.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-byteorder.o -MD -MP -MF .deps/test_lib-test-byteorder.Tpo -c -o test_lib-test-byteorder.o `test -f 'test-byteorder.c' || echo './'`test-byteorder.c
--- test_lib-test-base64.o ---
mv -f .deps/test_lib-test-base64.Tpo .deps/test_lib-test-base64.Po
--- test_lib-test-connection.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-connection.o -MD -MP -MF .deps/test_lib-test-connection.Tpo -c -o test_lib-test-connection.o `test -f 'test-connection.c' || echo './'`test-connection.c
--- test_lib-test-buffer-istream.o ---
mv -f .deps/test_lib-test-buffer-istream.Tpo .deps/test_lib-test-buffer-istream.Po
--- test_lib-test-crc32.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-crc32.o -MD -MP -MF .deps/test_lib-test-crc32.Tpo -c -o test_lib-test-crc32.o `test -f 'test-crc32.c' || echo './'`test-crc32.c
--- test_lib-test-buffer.o ---
mv -f .deps/test_lib-test-buffer.Tpo .deps/test_lib-test-buffer.Po
--- test_lib-test-cpu-limit.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-cpu-limit.o -MD -MP -MF .deps/test_lib-test-cpu-limit.Tpo -c -o test_lib-test-cpu-limit.o `test -f 'test-cpu-limit.c' || echo './'`test-cpu-limit.c
--- test_lib-test-crc32.o ---
mv -f .deps/test_lib-test-crc32.Tpo .deps/test_lib-test-crc32.Po
--- test_lib-test-data-stack.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-data-stack.o -MD -MP -MF .deps/test_lib-test-data-stack.Tpo -c -o test_lib-test-data-stack.o `test -f 'test-data-stack.c' || echo './'`test-data-stack.c
--- test_lib-test-byteorder.o ---
mv -f .deps/test_lib-test-byteorder.Tpo .deps/test_lib-test-byteorder.Po
--- test_lib-test-env-util.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-env-util.o -MD -MP -MF .deps/test_lib-test-env-util.Tpo -c -o test_lib-test-env-util.o `test -f 'test-env-util.c' || echo './'`test-env-util.c
--- test_lib-test-connection.o ---
mv -f .deps/test_lib-test-connection.Tpo .deps/test_lib-test-connection.Po
--- test_lib-test-event-category-register.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-event-category-register.o -MD -MP -MF .deps/test_lib-test-event-category-register.Tpo -c -o test_lib-test-event-category-register.o `test -f 'test-event-category-register.c' || echo './'`test-event-category-register.c
--- test_lib-test-cpu-limit.o ---
mv -f .deps/test_lib-test-cpu-limit.Tpo .deps/test_lib-test-cpu-limit.Po
--- test_lib-test-event-filter.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-event-filter.o -MD -MP -MF .deps/test_lib-test-event-filter.Tpo -c -o test_lib-test-event-filter.o `test -f 'test-event-filter.c' || echo './'`test-event-filter.c
--- test_lib-test-env-util.o ---
mv -f .deps/test_lib-test-env-util.Tpo .deps/test_lib-test-env-util.Po
--- test_lib-test-event-filter-expr.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-event-filter-expr.o -MD -MP -MF .deps/test_lib-test-event-filter-expr.Tpo -c -o test_lib-test-event-filter-expr.o `test -f 'test-event-filter-expr.c' || echo './'`test-event-filter-expr.c
--- test_lib-test-data-stack.o ---
mv -f .deps/test_lib-test-data-stack.Tpo .deps/test_lib-test-data-stack.Po
--- test_lib-test-event-filter-merge.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-event-filter-merge.o -MD -MP -MF .deps/test_lib-test-event-filter-merge.Tpo -c -o test_lib-test-event-filter-merge.o `test -f 'test-event-filter-merge.c' || echo './'`test-event-filter-merge.c
--- test_lib-test-event-category-register.o ---
mv -f .deps/test_lib-test-event-category-register.Tpo .deps/test_lib-test-event-category-register.Po
--- test_lib-test-event-filter-parser.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-event-filter-parser.o -MD -MP -MF .deps/test_lib-test-event-filter-parser.Tpo -c -o test_lib-test-event-filter-parser.o `test -f 'test-event-filter-parser.c' || echo './'`test-event-filter-parser.c
--- test_lib-test-event-filter-expr.o ---
mv -f .deps/test_lib-test-event-filter-expr.Tpo .deps/test_lib-test-event-filter-expr.Po
--- test_lib-test-event-flatten.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-event-flatten.o -MD -MP -MF .deps/test_lib-test-event-flatten.Tpo -c -o test_lib-test-event-flatten.o `test -f 'test-event-flatten.c' || echo './'`test-event-flatten.c
--- test_lib-test-event-filter-merge.o ---
mv -f .deps/test_lib-test-event-filter-merge.Tpo .deps/test_lib-test-event-filter-merge.Po
--- test_lib-test-event-log.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-event-log.o -MD -MP -MF .deps/test_lib-test-event-log.Tpo -c -o test_lib-test-event-log.o `test -f 'test-event-log.c' || echo './'`test-event-log.c
--- test_lib-test-event-filter.o ---
mv -f .deps/test_lib-test-event-filter.Tpo .deps/test_lib-test-event-filter.Po
--- test_lib-test-failures.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-failures.o -MD -MP -MF .deps/test_lib-test-failures.Tpo -c -o test_lib-test-failures.o `test -f 'test-failures.c' || echo './'`test-failures.c
--- test_lib-test-event-flatten.o ---
mv -f .deps/test_lib-test-event-flatten.Tpo .deps/test_lib-test-event-flatten.Po
--- test_lib-test-fd-util.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-fd-util.o -MD -MP -MF .deps/test_lib-test-fd-util.Tpo -c -o test_lib-test-fd-util.o `test -f 'test-fd-util.c' || echo './'`test-fd-util.c
--- test_lib-test-event-filter-parser.o ---
mv -f .deps/test_lib-test-event-filter-parser.Tpo .deps/test_lib-test-event-filter-parser.Po
--- test_lib-test-file-cache.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-file-cache.o -MD -MP -MF .deps/test_lib-test-file-cache.Tpo -c -o test_lib-test-file-cache.o `test -f 'test-file-cache.c' || echo './'`test-file-cache.c
--- test_lib-test-fd-util.o ---
mv -f .deps/test_lib-test-fd-util.Tpo .deps/test_lib-test-fd-util.Po
--- test_lib-test-file-create-locked.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-file-create-locked.o -MD -MP -MF .deps/test_lib-test-file-create-locked.Tpo -c -o test_lib-test-file-create-locked.o `test -f 'test-file-create-locked.c' || echo './'`test-file-create-locked.c
--- test_lib-test-failures.o ---
mv -f .deps/test_lib-test-failures.Tpo .deps/test_lib-test-failures.Po
--- test_lib-test-guid.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-guid.o -MD -MP -MF .deps/test_lib-test-guid.Tpo -c -o test_lib-test-guid.o `test -f 'test-guid.c' || echo './'`test-guid.c
--- test_lib-test-file-create-locked.o ---
mv -f .deps/test_lib-test-file-create-locked.Tpo .deps/test_lib-test-file-create-locked.Po
--- test_lib-test-hash.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-hash.o -MD -MP -MF .deps/test_lib-test-hash.Tpo -c -o test_lib-test-hash.o `test -f 'test-hash.c' || echo './'`test-hash.c
--- test_lib-test-file-cache.o ---
mv -f .deps/test_lib-test-file-cache.Tpo .deps/test_lib-test-file-cache.Po
--- test_lib-test-hash-format.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-hash-format.o -MD -MP -MF .deps/test_lib-test-hash-format.Tpo -c -o test_lib-test-hash-format.o `test -f 'test-hash-format.c' || echo './'`test-hash-format.c
--- test_lib-test-hash.o ---
mv -f .deps/test_lib-test-hash.Tpo .deps/test_lib-test-hash.Po
--- test_lib-test-hash-method.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-hash-method.o -MD -MP -MF .deps/test_lib-test-hash-method.Tpo -c -o test_lib-test-hash-method.o `test -f 'test-hash-method.c' || echo './'`test-hash-method.c
--- test_lib-test-hash-format.o ---
mv -f .deps/test_lib-test-hash-format.Tpo .deps/test_lib-test-hash-format.Po
--- test_lib-test-hmac.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-hmac.o -MD -MP -MF .deps/test_lib-test-hmac.Tpo -c -o test_lib-test-hmac.o `test -f 'test-hmac.c' || echo './'`test-hmac.c
--- test_lib-test-guid.o ---
mv -f .deps/test_lib-test-guid.Tpo .deps/test_lib-test-guid.Po
--- test_lib-test-hex-binary.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-hex-binary.o -MD -MP -MF .deps/test_lib-test-hex-binary.Tpo -c -o test_lib-test-hex-binary.o `test -f 'test-hex-binary.c' || echo './'`test-hex-binary.c
--- test_lib-test-hash-method.o ---
mv -f .deps/test_lib-test-hash-method.Tpo .deps/test_lib-test-hash-method.Po
--- test_lib-test-imem.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-imem.o -MD -MP -MF .deps/test_lib-test-imem.Tpo -c -o test_lib-test-imem.o `test -f 'test-imem.c' || echo './'`test-imem.c
--- test_lib-test-hmac.o ---
mv -f .deps/test_lib-test-hmac.Tpo .deps/test_lib-test-hmac.Po
--- test_lib-test-ioloop.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-ioloop.o -MD -MP -MF .deps/test_lib-test-ioloop.Tpo -c -o test_lib-test-ioloop.o `test -f 'test-ioloop.c' || echo './'`test-ioloop.c
--- test_lib-test-hex-binary.o ---
mv -f .deps/test_lib-test-hex-binary.Tpo .deps/test_lib-test-hex-binary.Po
--- test_lib-test-iso8601-date.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-iso8601-date.o -MD -MP -MF .deps/test_lib-test-iso8601-date.Tpo -c -o test_lib-test-iso8601-date.o `test -f 'test-iso8601-date.c' || echo './'`test-iso8601-date.c
--- test_lib-test-imem.o ---
mv -f .deps/test_lib-test-imem.Tpo .deps/test_lib-test-imem.Po
--- test_lib-test-iostream-pump.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-iostream-pump.o -MD -MP -MF .deps/test_lib-test-iostream-pump.Tpo -c -o test_lib-test-iostream-pump.o `test -f 'test-iostream-pump.c' || echo './'`test-iostream-pump.c
--- test_lib-test-iso8601-date.o ---
mv -f .deps/test_lib-test-iso8601-date.Tpo .deps/test_lib-test-iso8601-date.Po
--- test_lib-test-iostream-proxy.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-iostream-proxy.o -MD -MP -MF .deps/test_lib-test-iostream-proxy.Tpo -c -o test_lib-test-iostream-proxy.o `test -f 'test-iostream-proxy.c' || echo './'`test-iostream-proxy.c
--- test_lib-test-ioloop.o ---
mv -f .deps/test_lib-test-ioloop.Tpo .deps/test_lib-test-ioloop.Po
--- test_lib-test-iostream-temp.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-iostream-temp.o -MD -MP -MF .deps/test_lib-test-iostream-temp.Tpo -c -o test_lib-test-iostream-temp.o `test -f 'test-iostream-temp.c' || echo './'`test-iostream-temp.c
--- test_lib-test-iostream-pump.o ---
mv -f .deps/test_lib-test-iostream-pump.Tpo .deps/test_lib-test-iostream-pump.Po
--- test_lib-test-istream.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-istream.o -MD -MP -MF .deps/test_lib-test-istream.Tpo -c -o test_lib-test-istream.o `test -f 'test-istream.c' || echo './'`test-istream.c
--- test_lib-test-iostream-proxy.o ---
mv -f .deps/test_lib-test-iostream-proxy.Tpo .deps/test_lib-test-iostream-proxy.Po
--- test_lib-test-istream-base64-decoder.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-istream-base64-decoder.o -MD -MP -MF .deps/test_lib-test-istream-base64-decoder.Tpo -c -o test_lib-test-istream-base64-decoder.o `test -f 'test-istream-base64-decoder.c' || echo './'`test-istream-base64-decoder.c
--- test_lib-test-iostream-temp.o ---
mv -f .deps/test_lib-test-iostream-temp.Tpo .deps/test_lib-test-iostream-temp.Po
--- test_lib-test-istream-base64-encoder.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-istream-base64-encoder.o -MD -MP -MF .deps/test_lib-test-istream-base64-encoder.Tpo -c -o test_lib-test-istream-base64-encoder.o `test -f 'test-istream-base64-encoder.c' || echo './'`test-istream-base64-encoder.c
--- test_lib-test-istream-base64-decoder.o ---
mv -f .deps/test_lib-test-istream-base64-decoder.Tpo .deps/test_lib-test-istream-base64-decoder.Po
--- test_lib-test-istream-chain.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-istream-chain.o -MD -MP -MF .deps/test_lib-test-istream-chain.Tpo -c -o test_lib-test-istream-chain.o `test -f 'test-istream-chain.c' || echo './'`test-istream-chain.c
--- test_lib-test-istream-base64-encoder.o ---
mv -f .deps/test_lib-test-istream-base64-encoder.Tpo .deps/test_lib-test-istream-base64-encoder.Po
--- test_lib-test-istream-concat.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-istream-concat.o -MD -MP -MF .deps/test_lib-test-istream-concat.Tpo -c -o test_lib-test-istream-concat.o `test -f 'test-istream-concat.c' || echo './'`test-istream-concat.c
--- test_lib-test-istream.o ---
mv -f .deps/test_lib-test-istream.Tpo .deps/test_lib-test-istream.Po
--- test_lib-test-istream-crlf.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-istream-crlf.o -MD -MP -MF .deps/test_lib-test-istream-crlf.Tpo -c -o test_lib-test-istream-crlf.o `test -f 'test-istream-crlf.c' || echo './'`test-istream-crlf.c
--- test_lib-test-istream-chain.o ---
mv -f .deps/test_lib-test-istream-chain.Tpo .deps/test_lib-test-istream-chain.Po
--- test_lib-test-istream-failure-at.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-istream-failure-at.o -MD -MP -MF .deps/test_lib-test-istream-failure-at.Tpo -c -o test_lib-test-istream-failure-at.o `test -f 'test-istream-failure-at.c' || echo './'`test-istream-failure-at.c
--- test_lib-test-istream-crlf.o ---
mv -f .deps/test_lib-test-istream-crlf.Tpo .deps/test_lib-test-istream-crlf.Po
--- test_lib-test-istream-jsonstr.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-istream-jsonstr.o -MD -MP -MF .deps/test_lib-test-istream-jsonstr.Tpo -c -o test_lib-test-istream-jsonstr.o `test -f 'test-istream-jsonstr.c' || echo './'`test-istream-jsonstr.c
--- test_lib-test-istream-failure-at.o ---
mv -f .deps/test_lib-test-istream-failure-at.Tpo .deps/test_lib-test-istream-failure-at.Po
--- test_lib-test-istream-multiplex.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-istream-multiplex.o -MD -MP -MF .deps/test_lib-test-istream-multiplex.Tpo -c -o test_lib-test-istream-multiplex.o `test -f 'test-istream-multiplex.c' || echo './'`test-istream-multiplex.c
--- test_lib-test-istream-concat.o ---
mv -f .deps/test_lib-test-istream-concat.Tpo .deps/test_lib-test-istream-concat.Po
--- test_lib-test-istream-seekable.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-istream-seekable.o -MD -MP -MF .deps/test_lib-test-istream-seekable.Tpo -c -o test_lib-test-istream-seekable.o `test -f 'test-istream-seekable.c' || echo './'`test-istream-seekable.c
--- test_lib-test-istream-jsonstr.o ---
mv -f .deps/test_lib-test-istream-jsonstr.Tpo .deps/test_lib-test-istream-jsonstr.Po
--- test_lib-test-istream-sized.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-istream-sized.o -MD -MP -MF .deps/test_lib-test-istream-sized.Tpo -c -o test_lib-test-istream-sized.o `test -f 'test-istream-sized.c' || echo './'`test-istream-sized.c
mv -f .deps/test_lib-test-istream-sized.Tpo .deps/test_lib-test-istream-sized.Po
--- test_lib-test-istream-tee.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-istream-tee.o -MD -MP -MF .deps/test_lib-test-istream-tee.Tpo -c -o test_lib-test-istream-tee.o `test -f 'test-istream-tee.c' || echo './'`test-istream-tee.c
--- test_lib-test-istream-multiplex.o ---
mv -f .deps/test_lib-test-istream-multiplex.Tpo .deps/test_lib-test-istream-multiplex.Po
--- test_lib-test-istream-try.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-istream-try.o -MD -MP -MF .deps/test_lib-test-istream-try.Tpo -c -o test_lib-test-istream-try.o `test -f 'test-istream-try.c' || echo './'`test-istream-try.c
--- test_lib-test-istream-seekable.o ---
mv -f .deps/test_lib-test-istream-seekable.Tpo .deps/test_lib-test-istream-seekable.Po
--- test_lib-test-istream-unix.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-istream-unix.o -MD -MP -MF .deps/test_lib-test-istream-unix.Tpo -c -o test_lib-test-istream-unix.o `test -f 'test-istream-unix.c' || echo './'`test-istream-unix.c
--- test_lib-test-event-log.o ---
mv -f .deps/test_lib-test-event-log.Tpo .deps/test_lib-test-event-log.Po
--- test_lib-test-json-parser.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-json-parser.o -MD -MP -MF .deps/test_lib-test-json-parser.Tpo -c -o test_lib-test-json-parser.o `test -f 'test-json-parser.c' || echo './'`test-json-parser.c
--- test_lib-test-istream-try.o ---
mv -f .deps/test_lib-test-istream-try.Tpo .deps/test_lib-test-istream-try.Po
--- test_lib-test-istream-tee.o ---
mv -f .deps/test_lib-test-istream-tee.Tpo .deps/test_lib-test-istream-tee.Po
--- test_lib-test-json-tree.o ---
--- test_lib-test-lib-event.o ---
--- test_lib-test-json-tree.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-json-tree.o -MD -MP -MF .deps/test_lib-test-json-tree.Tpo -c -o test_lib-test-json-tree.o `test -f 'test-json-tree.c' || echo './'`test-json-tree.c
--- test_lib-test-lib-event.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-lib-event.o -MD -MP -MF .deps/test_lib-test-lib-event.Tpo -c -o test_lib-test-lib-event.o `test -f 'test-lib-event.c' || echo './'`test-lib-event.c
--- test_lib-test-istream-unix.o ---
mv -f .deps/test_lib-test-istream-unix.Tpo .deps/test_lib-test-istream-unix.Po
--- test_lib-test-lib-signals.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-lib-signals.o -MD -MP -MF .deps/test_lib-test-lib-signals.Tpo -c -o test_lib-test-lib-signals.o `test -f 'test-lib-signals.c' || echo './'`test-lib-signals.c
--- test_lib-test-lib-event.o ---
mv -f .deps/test_lib-test-lib-event.Tpo .deps/test_lib-test-lib-event.Po
--- test_lib-test-llist.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-llist.o -MD -MP -MF .deps/test_lib-test-llist.Tpo -c -o test_lib-test-llist.o `test -f 'test-llist.c' || echo './'`test-llist.c
--- test_lib-test-json-tree.o ---
mv -f .deps/test_lib-test-json-tree.Tpo .deps/test_lib-test-json-tree.Po
--- test_lib-test-log-throttle.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-log-throttle.o -MD -MP -MF .deps/test_lib-test-log-throttle.Tpo -c -o test_lib-test-log-throttle.o `test -f 'test-log-throttle.c' || echo './'`test-log-throttle.c
--- test_lib-test-lib-signals.o ---
mv -f .deps/test_lib-test-lib-signals.Tpo .deps/test_lib-test-lib-signals.Po
--- test_lib-test-macros.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-macros.o -MD -MP -MF .deps/test_lib-test-macros.Tpo -c -o test_lib-test-macros.o `test -f 'test-macros.c' || echo './'`test-macros.c
--- test_lib-test-json-parser.o ---
mv -f .deps/test_lib-test-json-parser.Tpo .deps/test_lib-test-json-parser.Po
--- test_lib-test-malloc-overflow.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-malloc-overflow.o -MD -MP -MF .deps/test_lib-test-malloc-overflow.Tpo -c -o test_lib-test-malloc-overflow.o `test -f 'test-malloc-overflow.c' || echo './'`test-malloc-overflow.c
--- test_lib-test-log-throttle.o ---
mv -f .deps/test_lib-test-log-throttle.Tpo .deps/test_lib-test-log-throttle.Po
--- test_lib-test-memarea.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-memarea.o -MD -MP -MF .deps/test_lib-test-memarea.Tpo -c -o test_lib-test-memarea.o `test -f 'test-memarea.c' || echo './'`test-memarea.c
--- test_lib-test-macros.o ---
mv -f .deps/test_lib-test-macros.Tpo .deps/test_lib-test-macros.Po
--- test_lib-test-mempool.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-mempool.o -MD -MP -MF .deps/test_lib-test-mempool.Tpo -c -o test_lib-test-mempool.o `test -f 'test-mempool.c' || echo './'`test-mempool.c
--- test_lib-test-malloc-overflow.o ---
mv -f .deps/test_lib-test-malloc-overflow.Tpo .deps/test_lib-test-malloc-overflow.Po
--- test_lib-test-mempool-allocfree.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-mempool-allocfree.o -MD -MP -MF .deps/test_lib-test-mempool-allocfree.Tpo -c -o test_lib-test-mempool-allocfree.o `test -f 'test-mempool-allocfree.c' || echo './'`test-mempool-allocfree.c
--- test_lib-test-memarea.o ---
mv -f .deps/test_lib-test-memarea.Tpo .deps/test_lib-test-memarea.Po
--- test_lib-test-llist.o ---
mv -f .deps/test_lib-test-llist.Tpo .deps/test_lib-test-llist.Po
--- test_lib-test-mempool-alloconly.o ---
--- test_lib-test-pkcs5.o ---
--- test_lib-test-mempool-alloconly.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-mempool-alloconly.o -MD -MP -MF .deps/test_lib-test-mempool-alloconly.Tpo -c -o test_lib-test-mempool-alloconly.o `test -f 'test-mempool-alloconly.c' || echo './'`test-mempool-alloconly.c
--- test_lib-test-pkcs5.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-pkcs5.o -MD -MP -MF .deps/test_lib-test-pkcs5.Tpo -c -o test_lib-test-pkcs5.o `test -f 'test-pkcs5.c' || echo './'`test-pkcs5.c
--- test_lib-test-mempool.o ---
mv -f .deps/test_lib-test-mempool.Tpo .deps/test_lib-test-mempool.Po
--- test_lib-test-net.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-net.o -MD -MP -MF .deps/test_lib-test-net.Tpo -c -o test_lib-test-net.o `test -f 'test-net.c' || echo './'`test-net.c
--- test_lib-test-pkcs5.o ---
mv -f .deps/test_lib-test-pkcs5.Tpo .deps/test_lib-test-pkcs5.Po
--- test_lib-test-numpack.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-numpack.o -MD -MP -MF .deps/test_lib-test-numpack.Tpo -c -o test_lib-test-numpack.o `test -f 'test-numpack.c' || echo './'`test-numpack.c
--- test_lib-test-mempool-allocfree.o ---
mv -f .deps/test_lib-test-mempool-allocfree.Tpo .deps/test_lib-test-mempool-allocfree.Po
--- test_lib-test-ostream-buffer.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-ostream-buffer.o -MD -MP -MF .deps/test_lib-test-ostream-buffer.Tpo -c -o test_lib-test-ostream-buffer.o `test -f 'test-ostream-buffer.c' || echo './'`test-ostream-buffer.c
--- test_lib-test-mempool-alloconly.o ---
mv -f .deps/test_lib-test-mempool-alloconly.Tpo .deps/test_lib-test-mempool-alloconly.Po
--- test_lib-test-ostream-failure-at.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-ostream-failure-at.o -MD -MP -MF .deps/test_lib-test-ostream-failure-at.Tpo -c -o test_lib-test-ostream-failure-at.o `test -f 'test-ostream-failure-at.c' || echo './'`test-ostream-failure-at.c
--- test_lib-test-numpack.o ---
mv -f .deps/test_lib-test-numpack.Tpo .deps/test_lib-test-numpack.Po
--- test_lib-test-ostream-file.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-ostream-file.o -MD -MP -MF .deps/test_lib-test-ostream-file.Tpo -c -o test_lib-test-ostream-file.o `test -f 'test-ostream-file.c' || echo './'`test-ostream-file.c
--- test_lib-test-ostream-failure-at.o ---
mv -f .deps/test_lib-test-ostream-failure-at.Tpo .deps/test_lib-test-ostream-failure-at.Po
--- test_lib-test-ostream-multiplex.o ---
--- test_lib-test-net.o ---
mv -f .deps/test_lib-test-net.Tpo .deps/test_lib-test-net.Po
--- test_lib-test-ostream-multiplex.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-ostream-multiplex.o -MD -MP -MF .deps/test_lib-test-ostream-multiplex.Tpo -c -o test_lib-test-ostream-multiplex.o `test -f 'test-ostream-multiplex.c' || echo './'`test-ostream-multiplex.c
--- test_lib-test-multiplex.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-multiplex.o -MD -MP -MF .deps/test_lib-test-multiplex.Tpo -c -o test_lib-test-multiplex.o `test -f 'test-multiplex.c' || echo './'`test-multiplex.c
--- test_lib-test-ostream-buffer.o ---
mv -f .deps/test_lib-test-ostream-buffer.Tpo .deps/test_lib-test-ostream-buffer.Po
--- test_lib-test-path-util.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-path-util.o -MD -MP -MF .deps/test_lib-test-path-util.Tpo -c -o test_lib-test-path-util.o `test -f 'test-path-util.c' || echo './'`test-path-util.c
--- test_lib-test-multiplex.o ---
mv -f .deps/test_lib-test-multiplex.Tpo .deps/test_lib-test-multiplex.Po
--- test_lib-test-primes.o ---
--- test_lib-test-ostream-file.o ---
mv -f .deps/test_lib-test-ostream-file.Tpo .deps/test_lib-test-ostream-file.Po
--- test_lib-test-primes.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-primes.o -MD -MP -MF .deps/test_lib-test-primes.Tpo -c -o test_lib-test-primes.o `test -f 'test-primes.c' || echo './'`test-primes.c
--- test_lib-test-printf-format-fix.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-printf-format-fix.o -MD -MP -MF .deps/test_lib-test-printf-format-fix.Tpo -c -o test_lib-test-printf-format-fix.o `test -f 'test-printf-format-fix.c' || echo './'`test-printf-format-fix.c
--- test_lib-test-primes.o ---
mv -f .deps/test_lib-test-primes.Tpo .deps/test_lib-test-primes.Po
--- test_lib-test-priorityq.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-priorityq.o -MD -MP -MF .deps/test_lib-test-priorityq.Tpo -c -o test_lib-test-priorityq.o `test -f 'test-priorityq.c' || echo './'`test-priorityq.c
--- test_lib-test-path-util.o ---
mv -f .deps/test_lib-test-path-util.Tpo .deps/test_lib-test-path-util.Po
--- test_lib-test-random.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-random.o -MD -MP -MF .deps/test_lib-test-random.Tpo -c -o test_lib-test-random.o `test -f 'test-random.c' || echo './'`test-random.c
--- test_lib-test-ostream-multiplex.o ---
mv -f .deps/test_lib-test-ostream-multiplex.Tpo .deps/test_lib-test-ostream-multiplex.Po
--- test_lib-test-seq-range-array.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-seq-range-array.o -MD -MP -MF .deps/test_lib-test-seq-range-array.Tpo -c -o test_lib-test-seq-range-array.o `test -f 'test-seq-range-array.c' || echo './'`test-seq-range-array.c
--- test_lib-test-printf-format-fix.o ---
mv -f .deps/test_lib-test-printf-format-fix.Tpo .deps/test_lib-test-printf-format-fix.Po
--- test_lib-test-seq-set-builder.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-seq-set-builder.o -MD -MP -MF .deps/test_lib-test-seq-set-builder.Tpo -c -o test_lib-test-seq-set-builder.o `test -f 'test-seq-set-builder.c' || echo './'`test-seq-set-builder.c
--- test_lib-test-random.o ---
mv -f .deps/test_lib-test-random.Tpo .deps/test_lib-test-random.Po
--- test_lib-test-stats-dist.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-stats-dist.o -MD -MP -MF .deps/test_lib-test-stats-dist.Tpo -c -o test_lib-test-stats-dist.o `test -f 'test-stats-dist.c' || echo './'`test-stats-dist.c
--- test_lib-test-priorityq.o ---
mv -f .deps/test_lib-test-priorityq.Tpo .deps/test_lib-test-priorityq.Po
--- test_lib-test-str.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-str.o -MD -MP -MF .deps/test_lib-test-str.Tpo -c -o test_lib-test-str.o `test -f 'test-str.c' || echo './'`test-str.c
--- test_lib-test-seq-set-builder.o ---
mv -f .deps/test_lib-test-seq-set-builder.Tpo .deps/test_lib-test-seq-set-builder.Po
--- test_lib-test-strescape.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-strescape.o -MD -MP -MF .deps/test_lib-test-strescape.Tpo -c -o test_lib-test-strescape.o `test -f 'test-strescape.c' || echo './'`test-strescape.c
--- test_lib-test-stats-dist.o ---
mv -f .deps/test_lib-test-stats-dist.Tpo .deps/test_lib-test-stats-dist.Po
--- test_lib-test-strfuncs.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-strfuncs.o -MD -MP -MF .deps/test_lib-test-strfuncs.Tpo -c -o test_lib-test-strfuncs.o `test -f 'test-strfuncs.c' || echo './'`test-strfuncs.c
--- test_lib-test-str.o ---
mv -f .deps/test_lib-test-str.Tpo .deps/test_lib-test-str.Po
--- test_lib-test-strnum.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-strnum.o -MD -MP -MF .deps/test_lib-test-strnum.Tpo -c -o test_lib-test-strnum.o `test -f 'test-strnum.c' || echo './'`test-strnum.c
--- test_lib-test-strescape.o ---
mv -f .deps/test_lib-test-strescape.Tpo .deps/test_lib-test-strescape.Po
--- test_lib-test-str-find.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-str-find.o -MD -MP -MF .deps/test_lib-test-str-find.Tpo -c -o test_lib-test-str-find.o `test -f 'test-str-find.c' || echo './'`test-str-find.c
--- test_lib-test-seq-range-array.o ---
mv -f .deps/test_lib-test-seq-range-array.Tpo .deps/test_lib-test-seq-range-array.Po
--- test_lib-test-str-sanitize.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-str-sanitize.o -MD -MP -MF .deps/test_lib-test-str-sanitize.Tpo -c -o test_lib-test-str-sanitize.o `test -f 'test-str-sanitize.c' || echo './'`test-str-sanitize.c
--- test_lib-test-str-find.o ---
mv -f .deps/test_lib-test-str-find.Tpo .deps/test_lib-test-str-find.Po
--- test_lib-test-str-table.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-str-table.o -MD -MP -MF .deps/test_lib-test-str-table.Tpo -c -o test_lib-test-str-table.o `test -f 'test-str-table.c' || echo './'`test-str-table.c
--- test_lib-test-str-sanitize.o ---
mv -f .deps/test_lib-test-str-sanitize.Tpo .deps/test_lib-test-str-sanitize.Po
--- test_lib-test-time-util.o ---
--- test_lib-test-str-table.o ---
mv -f .deps/test_lib-test-str-table.Tpo .deps/test_lib-test-str-table.Po
--- test_lib-test-time-util.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-time-util.o -MD -MP -MF .deps/test_lib-test-time-util.Tpo -c -o test_lib-test-time-util.o `test -f 'test-time-util.c' || echo './'`test-time-util.c
--- test_lib-test-unichar.o ---
--- test_lib-test-strnum.o ---
mv -f .deps/test_lib-test-strnum.Tpo .deps/test_lib-test-strnum.Po
--- test_lib-test-unichar.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-unichar.o -MD -MP -MF .deps/test_lib-test-unichar.Tpo -c -o test_lib-test-unichar.o `test -f 'test-unichar.c' || echo './'`test-unichar.c
--- test_lib-test-utc-mktime.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-utc-mktime.o -MD -MP -MF .deps/test_lib-test-utc-mktime.Tpo -c -o test_lib-test-utc-mktime.o `test -f 'test-utc-mktime.c' || echo './'`test-utc-mktime.c
mv -f .deps/test_lib-test-utc-mktime.Tpo .deps/test_lib-test-utc-mktime.Po
--- test_lib-test-uri.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-uri.o -MD -MP -MF .deps/test_lib-test-uri.Tpo -c -o test_lib-test-uri.o `test -f 'test-uri.c' || echo './'`test-uri.c
--- test_lib-test-strfuncs.o ---
mv -f .deps/test_lib-test-strfuncs.Tpo .deps/test_lib-test-strfuncs.Po
--- test_lib-test-var-expand.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-var-expand.o -MD -MP -MF .deps/test_lib-test-var-expand.Tpo -c -o test_lib-test-var-expand.o `test -f 'test-var-expand.c' || echo './'`test-var-expand.c
--- test_lib-test-unichar.o ---
mv -f .deps/test_lib-test-unichar.Tpo .deps/test_lib-test-unichar.Po
--- test_lib-test-wildcard-match.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-wildcard-match.o -MD -MP -MF .deps/test_lib-test-wildcard-match.Tpo -c -o test_lib-test-wildcard-match.o `test -f 'test-wildcard-match.c' || echo './'`test-wildcard-match.c
--- test_lib-test-time-util.o ---
mv -f .deps/test_lib-test-time-util.Tpo .deps/test_lib-test-time-util.Po
--- array.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT array.lo -MD -MP -MF .deps/array.Tpo -c -o array.lo array.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT array.lo -MD -MP -MF .deps/array.Tpo -c array.c  -fPIC -DPIC -o .libs/array.o
--- test_lib-test-wildcard-match.o ---
mv -f .deps/test_lib-test-wildcard-match.Tpo .deps/test_lib-test-wildcard-match.Po
--- aqueue.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT aqueue.lo -MD -MP -MF .deps/aqueue.Tpo -c -o aqueue.lo aqueue.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT aqueue.lo -MD -MP -MF .deps/aqueue.Tpo -c aqueue.c  -fPIC -DPIC -o .libs/aqueue.o
--- test_lib-test-uri.o ---
mv -f .deps/test_lib-test-uri.Tpo .deps/test_lib-test-uri.Po
--- askpass.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT askpass.lo -MD -MP -MF .deps/askpass.Tpo -c -o askpass.lo askpass.c
--- test_lib-test-var-expand.o ---
mv -f .deps/test_lib-test-var-expand.Tpo .deps/test_lib-test-var-expand.Po
--- backtrace-string.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT backtrace-string.lo -MD -MP -MF .deps/backtrace-string.Tpo -c -o backtrace-string.lo backtrace-string.c
--- askpass.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT askpass.lo -MD -MP -MF .deps/askpass.Tpo -c askpass.c  -fPIC -DPIC -o .libs/askpass.o
--- array.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT array.lo -MD -MP -MF .deps/array.Tpo -c array.c -o array.o >/dev/null 2>&1
--- backtrace-string.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT backtrace-string.lo -MD -MP -MF .deps/backtrace-string.Tpo -c backtrace-string.c  -fPIC -DPIC -o .libs/backtrace-string.o
--- aqueue.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT aqueue.lo -MD -MP -MF .deps/aqueue.Tpo -c aqueue.c -o aqueue.o >/dev/null 2>&1
--- backtrace-string.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT backtrace-string.lo -MD -MP -MF .deps/backtrace-string.Tpo -c backtrace-string.c -o backtrace-string.o >/dev/null 2>&1
--- askpass.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT askpass.lo -MD -MP -MF .deps/askpass.Tpo -c askpass.c -o askpass.o >/dev/null 2>&1
--- array.lo ---
mv -f .deps/array.Tpo .deps/array.Plo
--- base32.lo ---
--- aqueue.lo ---
mv -f .deps/aqueue.Tpo .deps/aqueue.Plo
--- base32.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT base32.lo -MD -MP -MF .deps/base32.Tpo -c -o base32.lo base32.c
--- base64.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT base64.lo -MD -MP -MF .deps/base64.Tpo -c -o base64.lo base64.c
--- backtrace-string.lo ---
mv -f .deps/backtrace-string.Tpo .deps/backtrace-string.Plo
--- bits.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT bits.lo -MD -MP -MF .deps/bits.Tpo -c -o bits.lo bits.c
--- base32.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT base32.lo -MD -MP -MF .deps/base32.Tpo -c base32.c  -fPIC -DPIC -o .libs/base32.o
--- base64.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT base64.lo -MD -MP -MF .deps/base64.Tpo -c base64.c  -fPIC -DPIC -o .libs/base64.o
--- bits.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT bits.lo -MD -MP -MF .deps/bits.Tpo -c bits.c  -fPIC -DPIC -o .libs/bits.o
--- askpass.lo ---
mv -f .deps/askpass.Tpo .deps/askpass.Plo
--- bsearch-insert-pos.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT bsearch-insert-pos.lo -MD -MP -MF .deps/bsearch-insert-pos.Tpo -c -o bsearch-insert-pos.lo bsearch-insert-pos.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT bsearch-insert-pos.lo -MD -MP -MF .deps/bsearch-insert-pos.Tpo -c bsearch-insert-pos.c  -fPIC -DPIC -o .libs/bsearch-insert-pos.o
--- bits.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT bits.lo -MD -MP -MF .deps/bits.Tpo -c bits.c -o bits.o >/dev/null 2>&1
mv -f .deps/bits.Tpo .deps/bits.Plo
--- buffer.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT buffer.lo -MD -MP -MF .deps/buffer.Tpo -c -o buffer.lo buffer.c
--- bsearch-insert-pos.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT bsearch-insert-pos.lo -MD -MP -MF .deps/bsearch-insert-pos.Tpo -c bsearch-insert-pos.c -o bsearch-insert-pos.o >/dev/null 2>&1
--- base32.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT base32.lo -MD -MP -MF .deps/base32.Tpo -c base32.c -o base32.o >/dev/null 2>&1
--- buffer.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT buffer.lo -MD -MP -MF .deps/buffer.Tpo -c buffer.c  -fPIC -DPIC -o .libs/buffer.o
--- bsearch-insert-pos.lo ---
mv -f .deps/bsearch-insert-pos.Tpo .deps/bsearch-insert-pos.Plo
--- buffer-istream.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT buffer-istream.lo -MD -MP -MF .deps/buffer-istream.Tpo -c -o buffer-istream.lo buffer-istream.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT buffer-istream.lo -MD -MP -MF .deps/buffer-istream.Tpo -c buffer-istream.c  -fPIC -DPIC -o .libs/buffer-istream.o
--- base32.lo ---
mv -f .deps/base32.Tpo .deps/base32.Plo
--- child-wait.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT child-wait.lo -MD -MP -MF .deps/child-wait.Tpo -c -o child-wait.lo child-wait.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT child-wait.lo -MD -MP -MF .deps/child-wait.Tpo -c child-wait.c  -fPIC -DPIC -o .libs/child-wait.o
--- buffer-istream.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT buffer-istream.lo -MD -MP -MF .deps/buffer-istream.Tpo -c buffer-istream.c -o buffer-istream.o >/dev/null 2>&1
--- base64.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT base64.lo -MD -MP -MF .deps/base64.Tpo -c base64.c -o base64.o >/dev/null 2>&1
--- buffer.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT buffer.lo -MD -MP -MF .deps/buffer.Tpo -c buffer.c -o buffer.o >/dev/null 2>&1
--- buffer-istream.lo ---
mv -f .deps/buffer-istream.Tpo .deps/buffer-istream.Plo
--- child-wait.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT child-wait.lo -MD -MP -MF .deps/child-wait.Tpo -c child-wait.c -o child-wait.o >/dev/null 2>&1
--- compat.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT compat.lo -MD -MP -MF .deps/compat.Tpo -c -o compat.lo compat.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT compat.lo -MD -MP -MF .deps/compat.Tpo -c compat.c  -fPIC -DPIC -o .libs/compat.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT compat.lo -MD -MP -MF .deps/compat.Tpo -c compat.c -o compat.o >/dev/null 2>&1
--- child-wait.lo ---
mv -f .deps/child-wait.Tpo .deps/child-wait.Plo
--- connection.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT connection.lo -MD -MP -MF .deps/connection.Tpo -c -o connection.lo connection.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT connection.lo -MD -MP -MF .deps/connection.Tpo -c connection.c  -fPIC -DPIC -o .libs/connection.o
--- compat.lo ---
mv -f .deps/compat.Tpo .deps/compat.Plo
--- cpu-limit.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT cpu-limit.lo -MD -MP -MF .deps/cpu-limit.Tpo -c -o cpu-limit.lo cpu-limit.c
--- buffer.lo ---
mv -f .deps/buffer.Tpo .deps/buffer.Plo
--- crc32.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT crc32.lo -MD -MP -MF .deps/crc32.Tpo -c -o crc32.lo crc32.c
--- cpu-limit.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT cpu-limit.lo -MD -MP -MF .deps/cpu-limit.Tpo -c cpu-limit.c  -fPIC -DPIC -o .libs/cpu-limit.o
--- crc32.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT crc32.lo -MD -MP -MF .deps/crc32.Tpo -c crc32.c  -fPIC -DPIC -o .libs/crc32.o
--- base64.lo ---
mv -f .deps/base64.Tpo .deps/base64.Plo
--- data-stack.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT data-stack.lo -MD -MP -MF .deps/data-stack.Tpo -c -o data-stack.lo data-stack.c
--- crc32.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT crc32.lo -MD -MP -MF .deps/crc32.Tpo -c crc32.c -o crc32.o >/dev/null 2>&1
--- data-stack.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT data-stack.lo -MD -MP -MF .deps/data-stack.Tpo -c data-stack.c  -fPIC -DPIC -o .libs/data-stack.o
--- cpu-limit.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT cpu-limit.lo -MD -MP -MF .deps/cpu-limit.Tpo -c cpu-limit.c -o cpu-limit.o >/dev/null 2>&1
--- crc32.lo ---
mv -f .deps/crc32.Tpo .deps/crc32.Plo
--- eacces-error.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT eacces-error.lo -MD -MP -MF .deps/eacces-error.Tpo -c -o eacces-error.lo eacces-error.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT eacces-error.lo -MD -MP -MF .deps/eacces-error.Tpo -c eacces-error.c  -fPIC -DPIC -o .libs/eacces-error.o
--- cpu-limit.lo ---
mv -f .deps/cpu-limit.Tpo .deps/cpu-limit.Plo
--- env-util.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT env-util.lo -MD -MP -MF .deps/env-util.Tpo -c -o env-util.lo env-util.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT env-util.lo -MD -MP -MF .deps/env-util.Tpo -c env-util.c  -fPIC -DPIC -o .libs/env-util.o
--- data-stack.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT data-stack.lo -MD -MP -MF .deps/data-stack.Tpo -c data-stack.c -o data-stack.o >/dev/null 2>&1
--- connection.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT connection.lo -MD -MP -MF .deps/connection.Tpo -c connection.c -o connection.o >/dev/null 2>&1
--- eacces-error.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT eacces-error.lo -MD -MP -MF .deps/eacces-error.Tpo -c eacces-error.c -o eacces-error.o >/dev/null 2>&1
--- env-util.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT env-util.lo -MD -MP -MF .deps/env-util.Tpo -c env-util.c -o env-util.o >/dev/null 2>&1
--- data-stack.lo ---
mv -f .deps/data-stack.Tpo .deps/data-stack.Plo
--- event-filter.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT event-filter.lo -MD -MP -MF .deps/event-filter.Tpo -c -o event-filter.lo event-filter.c
--- eacces-error.lo ---
mv -f .deps/eacces-error.Tpo .deps/eacces-error.Plo
--- event-log.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT event-log.lo -MD -MP -MF .deps/event-log.Tpo -c -o event-log.lo event-log.c
--- env-util.lo ---
mv -f .deps/env-util.Tpo .deps/env-util.Plo
--- execv-const.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT execv-const.lo -MD -MP -MF .deps/execv-const.Tpo -c -o execv-const.lo execv-const.c
--- event-filter.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT event-filter.lo -MD -MP -MF .deps/event-filter.Tpo -c event-filter.c  -fPIC -DPIC -o .libs/event-filter.o
--- event-log.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT event-log.lo -MD -MP -MF .deps/event-log.Tpo -c event-log.c  -fPIC -DPIC -o .libs/event-log.o
--- execv-const.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT execv-const.lo -MD -MP -MF .deps/execv-const.Tpo -c execv-const.c  -fPIC -DPIC -o .libs/execv-const.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT execv-const.lo -MD -MP -MF .deps/execv-const.Tpo -c execv-const.c -o execv-const.o >/dev/null 2>&1
mv -f .deps/execv-const.Tpo .deps/execv-const.Plo
--- failures.lo ---
--- connection.lo ---
mv -f .deps/connection.Tpo .deps/connection.Plo
--- failures.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT failures.lo -MD -MP -MF .deps/failures.Tpo -c -o failures.lo failures.c
--- fd-util.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fd-util.lo -MD -MP -MF .deps/fd-util.Tpo -c -o fd-util.lo fd-util.c
--- event-log.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT event-log.lo -MD -MP -MF .deps/event-log.Tpo -c event-log.c -o event-log.o >/dev/null 2>&1
--- failures.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT failures.lo -MD -MP -MF .deps/failures.Tpo -c failures.c  -fPIC -DPIC -o .libs/failures.o
--- fd-util.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fd-util.lo -MD -MP -MF .deps/fd-util.Tpo -c fd-util.c  -fPIC -DPIC -o .libs/fd-util.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fd-util.lo -MD -MP -MF .deps/fd-util.Tpo -c fd-util.c -o fd-util.o >/dev/null 2>&1
--- event-filter.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT event-filter.lo -MD -MP -MF .deps/event-filter.Tpo -c event-filter.c -o event-filter.o >/dev/null 2>&1
--- event-log.lo ---
mv -f .deps/event-log.Tpo .deps/event-log.Plo
--- fdatasync-path.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fdatasync-path.lo -MD -MP -MF .deps/fdatasync-path.Tpo -c -o fdatasync-path.lo fdatasync-path.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fdatasync-path.lo -MD -MP -MF .deps/fdatasync-path.Tpo -c fdatasync-path.c  -fPIC -DPIC -o .libs/fdatasync-path.o
--- fd-util.lo ---
mv -f .deps/fd-util.Tpo .deps/fd-util.Plo
--- fdpass.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fdpass.lo -MD -MP -MF .deps/fdpass.Tpo -c -o fdpass.lo fdpass.c
--- fdatasync-path.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fdatasync-path.lo -MD -MP -MF .deps/fdatasync-path.Tpo -c fdatasync-path.c -o fdatasync-path.o >/dev/null 2>&1
--- fdpass.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fdpass.lo -MD -MP -MF .deps/fdpass.Tpo -c fdpass.c  -fPIC -DPIC -o .libs/fdpass.o
--- failures.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT failures.lo -MD -MP -MF .deps/failures.Tpo -c failures.c -o failures.o >/dev/null 2>&1
--- fdatasync-path.lo ---
mv -f .deps/fdatasync-path.Tpo .deps/fdatasync-path.Plo
--- file-cache.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT file-cache.lo -MD -MP -MF .deps/file-cache.Tpo -c -o file-cache.lo file-cache.c
--- fdpass.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fdpass.lo -MD -MP -MF .deps/fdpass.Tpo -c fdpass.c -o fdpass.o >/dev/null 2>&1
--- file-cache.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT file-cache.lo -MD -MP -MF .deps/file-cache.Tpo -c file-cache.c  -fPIC -DPIC -o .libs/file-cache.o
--- fdpass.lo ---
mv -f .deps/fdpass.Tpo .deps/fdpass.Plo
--- file-create-locked.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT file-create-locked.lo -MD -MP -MF .deps/file-create-locked.Tpo -c -o file-create-locked.lo file-create-locked.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT file-create-locked.lo -MD -MP -MF .deps/file-create-locked.Tpo -c file-create-locked.c  -fPIC -DPIC -o .libs/file-create-locked.o
--- event-filter.lo ---
mv -f .deps/event-filter.Tpo .deps/event-filter.Plo
--- file-copy.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT file-copy.lo -MD -MP -MF .deps/file-copy.Tpo -c -o file-copy.lo file-copy.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT file-copy.lo -MD -MP -MF .deps/file-copy.Tpo -c file-copy.c  -fPIC -DPIC -o .libs/file-copy.o
--- file-cache.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT file-cache.lo -MD -MP -MF .deps/file-cache.Tpo -c file-cache.c -o file-cache.o >/dev/null 2>&1
--- file-create-locked.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT file-create-locked.lo -MD -MP -MF .deps/file-create-locked.Tpo -c file-create-locked.c -o file-create-locked.o >/dev/null 2>&1
--- file-copy.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT file-copy.lo -MD -MP -MF .deps/file-copy.Tpo -c file-copy.c -o file-copy.o >/dev/null 2>&1
--- failures.lo ---
mv -f .deps/failures.Tpo .deps/failures.Plo
--- file-dotlock.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT file-dotlock.lo -MD -MP -MF .deps/file-dotlock.Tpo -c -o file-dotlock.lo file-dotlock.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT file-dotlock.lo -MD -MP -MF .deps/file-dotlock.Tpo -c file-dotlock.c  -fPIC -DPIC -o .libs/file-dotlock.o
--- file-copy.lo ---
mv -f .deps/file-copy.Tpo .deps/file-copy.Plo
--- file-lock.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT file-lock.lo -MD -MP -MF .deps/file-lock.Tpo -c -o file-lock.lo file-lock.c
--- file-create-locked.lo ---
mv -f .deps/file-create-locked.Tpo .deps/file-create-locked.Plo
--- file-cache.lo ---
mv -f .deps/file-cache.Tpo .deps/file-cache.Plo
--- file-set-size.lo ---
--- guid.lo ---
--- file-set-size.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT file-set-size.lo -MD -MP -MF .deps/file-set-size.Tpo -c -o file-set-size.lo file-set-size.c
--- guid.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT guid.lo -MD -MP -MF .deps/guid.Tpo -c -o guid.lo guid.c
--- file-lock.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT file-lock.lo -MD -MP -MF .deps/file-lock.Tpo -c file-lock.c  -fPIC -DPIC -o .libs/file-lock.o
--- guid.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT guid.lo -MD -MP -MF .deps/guid.Tpo -c guid.c  -fPIC -DPIC -o .libs/guid.o
--- file-set-size.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT file-set-size.lo -MD -MP -MF .deps/file-set-size.Tpo -c file-set-size.c  -fPIC -DPIC -o .libs/file-set-size.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT file-set-size.lo -MD -MP -MF .deps/file-set-size.Tpo -c file-set-size.c -o file-set-size.o >/dev/null 2>&1
--- guid.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT guid.lo -MD -MP -MF .deps/guid.Tpo -c guid.c -o guid.o >/dev/null 2>&1
--- file-set-size.lo ---
mv -f .deps/file-set-size.Tpo .deps/file-set-size.Plo
--- hash.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT hash.lo -MD -MP -MF .deps/hash.Tpo -c -o hash.lo hash.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT hash.lo -MD -MP -MF .deps/hash.Tpo -c hash.c  -fPIC -DPIC -o .libs/hash.o
--- file-lock.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT file-lock.lo -MD -MP -MF .deps/file-lock.Tpo -c file-lock.c -o file-lock.o >/dev/null 2>&1
--- guid.lo ---
mv -f .deps/guid.Tpo .deps/guid.Plo
--- hash-format.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT hash-format.lo -MD -MP -MF .deps/hash-format.Tpo -c -o hash-format.lo hash-format.c
--- file-dotlock.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT file-dotlock.lo -MD -MP -MF .deps/file-dotlock.Tpo -c file-dotlock.c -o file-dotlock.o >/dev/null 2>&1
--- hash-format.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT hash-format.lo -MD -MP -MF .deps/hash-format.Tpo -c hash-format.c  -fPIC -DPIC -o .libs/hash-format.o
--- file-lock.lo ---
mv -f .deps/file-lock.Tpo .deps/file-lock.Plo
--- hash-method.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT hash-method.lo -MD -MP -MF .deps/hash-method.Tpo -c -o hash-method.lo hash-method.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT hash-method.lo -MD -MP -MF .deps/hash-method.Tpo -c hash-method.c  -fPIC -DPIC -o .libs/hash-method.o
--- hash.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT hash.lo -MD -MP -MF .deps/hash.Tpo -c hash.c -o hash.o >/dev/null 2>&1
--- hash-format.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT hash-format.lo -MD -MP -MF .deps/hash-format.Tpo -c hash-format.c -o hash-format.o >/dev/null 2>&1
--- hash-method.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT hash-method.lo -MD -MP -MF .deps/hash-method.Tpo -c hash-method.c -o hash-method.o >/dev/null 2>&1
mv -f .deps/hash-method.Tpo .deps/hash-method.Plo
--- hash2.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT hash2.lo -MD -MP -MF .deps/hash2.Tpo -c -o hash2.lo hash2.c
--- hash-format.lo ---
mv -f .deps/hash-format.Tpo .deps/hash-format.Plo
--- hex-binary.lo ---
--- file-dotlock.lo ---
mv -f .deps/file-dotlock.Tpo .deps/file-dotlock.Plo
--- hex-binary.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT hex-binary.lo -MD -MP -MF .deps/hex-binary.Tpo -c -o hex-binary.lo hex-binary.c
--- hex-dec.lo ---
--- hash2.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT hash2.lo -MD -MP -MF .deps/hash2.Tpo -c hash2.c  -fPIC -DPIC -o .libs/hash2.o
--- hex-dec.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT hex-dec.lo -MD -MP -MF .deps/hex-dec.Tpo -c -o hex-dec.lo hex-dec.c
--- hex-binary.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT hex-binary.lo -MD -MP -MF .deps/hex-binary.Tpo -c hex-binary.c  -fPIC -DPIC -o .libs/hex-binary.o
--- hex-dec.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT hex-dec.lo -MD -MP -MF .deps/hex-dec.Tpo -c hex-dec.c  -fPIC -DPIC -o .libs/hex-dec.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT hex-dec.lo -MD -MP -MF .deps/hex-dec.Tpo -c hex-dec.c -o hex-dec.o >/dev/null 2>&1
--- hash.lo ---
mv -f .deps/hash.Tpo .deps/hash.Plo
--- hmac.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT hmac.lo -MD -MP -MF .deps/hmac.Tpo -c -o hmac.lo hmac.c
--- hash2.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT hash2.lo -MD -MP -MF .deps/hash2.Tpo -c hash2.c -o hash2.o >/dev/null 2>&1
--- hmac.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT hmac.lo -MD -MP -MF .deps/hmac.Tpo -c hmac.c  -fPIC -DPIC -o .libs/hmac.o
--- hex-binary.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT hex-binary.lo -MD -MP -MF .deps/hex-binary.Tpo -c hex-binary.c -o hex-binary.o >/dev/null 2>&1
--- hex-dec.lo ---
mv -f .deps/hex-dec.Tpo .deps/hex-dec.Plo
--- hmac-cram-md5.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT hmac-cram-md5.lo -MD -MP -MF .deps/hmac-cram-md5.Tpo -c -o hmac-cram-md5.lo hmac-cram-md5.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT hmac-cram-md5.lo -MD -MP -MF .deps/hmac-cram-md5.Tpo -c hmac-cram-md5.c  -fPIC -DPIC -o .libs/hmac-cram-md5.o
--- hmac.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT hmac.lo -MD -MP -MF .deps/hmac.Tpo -c hmac.c -o hmac.o >/dev/null 2>&1
--- hex-binary.lo ---
mv -f .deps/hex-binary.Tpo .deps/hex-binary.Plo
--- home-expand.lo ---
--- hash2.lo ---
mv -f .deps/hash2.Tpo .deps/hash2.Plo
--- home-expand.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT home-expand.lo -MD -MP -MF .deps/home-expand.Tpo -c -o home-expand.lo home-expand.c
--- hook-build.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT hook-build.lo -MD -MP -MF .deps/hook-build.Tpo -c -o hook-build.lo hook-build.c
--- hmac-cram-md5.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT hmac-cram-md5.lo -MD -MP -MF .deps/hmac-cram-md5.Tpo -c hmac-cram-md5.c -o hmac-cram-md5.o >/dev/null 2>&1
--- home-expand.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT home-expand.lo -MD -MP -MF .deps/home-expand.Tpo -c home-expand.c  -fPIC -DPIC -o .libs/home-expand.o
--- hook-build.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT hook-build.lo -MD -MP -MF .deps/hook-build.Tpo -c hook-build.c  -fPIC -DPIC -o .libs/hook-build.o
--- hmac-cram-md5.lo ---
mv -f .deps/hmac-cram-md5.Tpo .deps/hmac-cram-md5.Plo
--- hostpid.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT hostpid.lo -MD -MP -MF .deps/hostpid.Tpo -c -o hostpid.lo hostpid.c
--- home-expand.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT home-expand.lo -MD -MP -MF .deps/home-expand.Tpo -c home-expand.c -o home-expand.o >/dev/null 2>&1
--- hmac.lo ---
mv -f .deps/hmac.Tpo .deps/hmac.Plo
--- imem.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imem.lo -MD -MP -MF .deps/imem.Tpo -c -o imem.lo imem.c
--- hostpid.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT hostpid.lo -MD -MP -MF .deps/hostpid.Tpo -c hostpid.c  -fPIC -DPIC -o .libs/hostpid.o
--- hook-build.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT hook-build.lo -MD -MP -MF .deps/hook-build.Tpo -c hook-build.c -o hook-build.o >/dev/null 2>&1
--- imem.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imem.lo -MD -MP -MF .deps/imem.Tpo -c imem.c  -fPIC -DPIC -o .libs/imem.o
--- home-expand.lo ---
mv -f .deps/home-expand.Tpo .deps/home-expand.Plo
--- ipwd.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ipwd.lo -MD -MP -MF .deps/ipwd.Tpo -c -o ipwd.lo ipwd.c
--- hostpid.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT hostpid.lo -MD -MP -MF .deps/hostpid.Tpo -c hostpid.c -o hostpid.o >/dev/null 2>&1
--- ipwd.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ipwd.lo -MD -MP -MF .deps/ipwd.Tpo -c ipwd.c  -fPIC -DPIC -o .libs/ipwd.o
--- hook-build.lo ---
mv -f .deps/hook-build.Tpo .deps/hook-build.Plo
--- iostream.lo ---
--- imem.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imem.lo -MD -MP -MF .deps/imem.Tpo -c imem.c -o imem.o >/dev/null 2>&1
--- iostream.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT iostream.lo -MD -MP -MF .deps/iostream.Tpo -c -o iostream.lo iostream.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT iostream.lo -MD -MP -MF .deps/iostream.Tpo -c iostream.c  -fPIC -DPIC -o .libs/iostream.o
--- hostpid.lo ---
mv -f .deps/hostpid.Tpo .deps/hostpid.Plo
--- iostream-pump.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT iostream-pump.lo -MD -MP -MF .deps/iostream-pump.Tpo -c -o iostream-pump.lo iostream-pump.c
--- ipwd.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ipwd.lo -MD -MP -MF .deps/ipwd.Tpo -c ipwd.c -o ipwd.o >/dev/null 2>&1
--- imem.lo ---
mv -f .deps/imem.Tpo .deps/imem.Plo
--- iostream-proxy.lo ---
--- iostream-pump.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT iostream-pump.lo -MD -MP -MF .deps/iostream-pump.Tpo -c iostream-pump.c  -fPIC -DPIC -o .libs/iostream-pump.o
--- iostream-proxy.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT iostream-proxy.lo -MD -MP -MF .deps/iostream-proxy.Tpo -c -o iostream-proxy.lo iostream-proxy.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT iostream-proxy.lo -MD -MP -MF .deps/iostream-proxy.Tpo -c iostream-proxy.c  -fPIC -DPIC -o .libs/iostream-proxy.o
--- iostream.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT iostream.lo -MD -MP -MF .deps/iostream.Tpo -c iostream.c -o iostream.o >/dev/null 2>&1
--- ipwd.lo ---
mv -f .deps/ipwd.Tpo .deps/ipwd.Plo
--- iostream-rawlog.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT iostream-rawlog.lo -MD -MP -MF .deps/iostream-rawlog.Tpo -c -o iostream-rawlog.lo iostream-rawlog.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT iostream-rawlog.lo -MD -MP -MF .deps/iostream-rawlog.Tpo -c iostream-rawlog.c  -fPIC -DPIC -o .libs/iostream-rawlog.o
--- iostream-pump.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT iostream-pump.lo -MD -MP -MF .deps/iostream-pump.Tpo -c iostream-pump.c -o iostream-pump.o >/dev/null 2>&1
--- iostream-proxy.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT iostream-proxy.lo -MD -MP -MF .deps/iostream-proxy.Tpo -c iostream-proxy.c -o iostream-proxy.o >/dev/null 2>&1
--- iostream.lo ---
mv -f .deps/iostream.Tpo .deps/iostream.Plo
--- iostream-temp.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT iostream-temp.lo -MD -MP -MF .deps/iostream-temp.Tpo -c -o iostream-temp.lo iostream-temp.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT iostream-temp.lo -MD -MP -MF .deps/iostream-temp.Tpo -c iostream-temp.c  -fPIC -DPIC -o .libs/iostream-temp.o
--- iostream-proxy.lo ---
mv -f .deps/iostream-proxy.Tpo .deps/iostream-proxy.Plo
--- iso8601-date.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT iso8601-date.lo -MD -MP -MF .deps/iso8601-date.Tpo -c -o iso8601-date.lo iso8601-date.c
--- iostream-pump.lo ---
mv -f .deps/iostream-pump.Tpo .deps/iostream-pump.Plo
--- istream.lo ---
--- iostream-rawlog.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT iostream-rawlog.lo -MD -MP -MF .deps/iostream-rawlog.Tpo -c iostream-rawlog.c -o iostream-rawlog.o >/dev/null 2>&1
--- istream.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream.lo -MD -MP -MF .deps/istream.Tpo -c -o istream.lo istream.c
--- iso8601-date.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT iso8601-date.lo -MD -MP -MF .deps/iso8601-date.Tpo -c iso8601-date.c  -fPIC -DPIC -o .libs/iso8601-date.o
--- istream.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream.lo -MD -MP -MF .deps/istream.Tpo -c istream.c  -fPIC -DPIC -o .libs/istream.o
--- iostream-temp.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT iostream-temp.lo -MD -MP -MF .deps/iostream-temp.Tpo -c iostream-temp.c -o iostream-temp.o >/dev/null 2>&1
--- iostream-rawlog.lo ---
mv -f .deps/iostream-rawlog.Tpo .deps/iostream-rawlog.Plo
--- istream-base64-decoder.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-base64-decoder.lo -MD -MP -MF .deps/istream-base64-decoder.Tpo -c -o istream-base64-decoder.lo istream-base64-decoder.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-base64-decoder.lo -MD -MP -MF .deps/istream-base64-decoder.Tpo -c istream-base64-decoder.c  -fPIC -DPIC -o .libs/istream-base64-decoder.o
--- iso8601-date.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT iso8601-date.lo -MD -MP -MF .deps/iso8601-date.Tpo -c iso8601-date.c -o iso8601-date.o >/dev/null 2>&1
--- istream-base64-decoder.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-base64-decoder.lo -MD -MP -MF .deps/istream-base64-decoder.Tpo -c istream-base64-decoder.c -o istream-base64-decoder.o >/dev/null 2>&1
--- iostream-temp.lo ---
mv -f .deps/iostream-temp.Tpo .deps/iostream-temp.Plo
--- istream-base64-encoder.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-base64-encoder.lo -MD -MP -MF .deps/istream-base64-encoder.Tpo -c -o istream-base64-encoder.lo istream-base64-encoder.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-base64-encoder.lo -MD -MP -MF .deps/istream-base64-encoder.Tpo -c istream-base64-encoder.c  -fPIC -DPIC -o .libs/istream-base64-encoder.o
--- iso8601-date.lo ---
mv -f .deps/iso8601-date.Tpo .deps/iso8601-date.Plo
--- istream-callback.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-callback.lo -MD -MP -MF .deps/istream-callback.Tpo -c -o istream-callback.lo istream-callback.c
--- istream-base64-decoder.lo ---
mv -f .deps/istream-base64-decoder.Tpo .deps/istream-base64-decoder.Plo
--- istream-chain.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-chain.lo -MD -MP -MF .deps/istream-chain.Tpo -c -o istream-chain.lo istream-chain.c
--- istream-callback.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-callback.lo -MD -MP -MF .deps/istream-callback.Tpo -c istream-callback.c  -fPIC -DPIC -o .libs/istream-callback.o
--- istream-chain.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-chain.lo -MD -MP -MF .deps/istream-chain.Tpo -c istream-chain.c  -fPIC -DPIC -o .libs/istream-chain.o
--- istream-base64-encoder.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-base64-encoder.lo -MD -MP -MF .deps/istream-base64-encoder.Tpo -c istream-base64-encoder.c -o istream-base64-encoder.o >/dev/null 2>&1
--- istream-callback.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-callback.lo -MD -MP -MF .deps/istream-callback.Tpo -c istream-callback.c -o istream-callback.o >/dev/null 2>&1
--- istream.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream.lo -MD -MP -MF .deps/istream.Tpo -c istream.c -o istream.o >/dev/null 2>&1
--- istream-chain.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-chain.lo -MD -MP -MF .deps/istream-chain.Tpo -c istream-chain.c -o istream-chain.o >/dev/null 2>&1
--- istream-callback.lo ---
mv -f .deps/istream-callback.Tpo .deps/istream-callback.Plo
--- istream-concat.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-concat.lo -MD -MP -MF .deps/istream-concat.Tpo -c -o istream-concat.lo istream-concat.c
--- istream-base64-encoder.lo ---
mv -f .deps/istream-base64-encoder.Tpo .deps/istream-base64-encoder.Plo
--- istream-crlf.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-crlf.lo -MD -MP -MF .deps/istream-crlf.Tpo -c -o istream-crlf.lo istream-crlf.c
--- istream-concat.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-concat.lo -MD -MP -MF .deps/istream-concat.Tpo -c istream-concat.c  -fPIC -DPIC -o .libs/istream-concat.o
--- istream-crlf.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-crlf.lo -MD -MP -MF .deps/istream-crlf.Tpo -c istream-crlf.c  -fPIC -DPIC -o .libs/istream-crlf.o
--- istream-chain.lo ---
mv -f .deps/istream-chain.Tpo .deps/istream-chain.Plo
--- istream-data.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-data.lo -MD -MP -MF .deps/istream-data.Tpo -c -o istream-data.lo istream-data.c
--- istream-crlf.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-crlf.lo -MD -MP -MF .deps/istream-crlf.Tpo -c istream-crlf.c -o istream-crlf.o >/dev/null 2>&1
--- istream-data.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-data.lo -MD -MP -MF .deps/istream-data.Tpo -c istream-data.c  -fPIC -DPIC -o .libs/istream-data.o
--- istream-concat.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-concat.lo -MD -MP -MF .deps/istream-concat.Tpo -c istream-concat.c -o istream-concat.o >/dev/null 2>&1
--- istream-data.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-data.lo -MD -MP -MF .deps/istream-data.Tpo -c istream-data.c -o istream-data.o >/dev/null 2>&1
--- istream-crlf.lo ---
mv -f .deps/istream-crlf.Tpo .deps/istream-crlf.Plo
--- istream-failure-at.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-failure-at.lo -MD -MP -MF .deps/istream-failure-at.Tpo -c -o istream-failure-at.lo istream-failure-at.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-failure-at.lo -MD -MP -MF .deps/istream-failure-at.Tpo -c istream-failure-at.c  -fPIC -DPIC -o .libs/istream-failure-at.o
--- istream-data.lo ---
mv -f .deps/istream-data.Tpo .deps/istream-data.Plo
--- istream-file.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-file.lo -MD -MP -MF .deps/istream-file.Tpo -c -o istream-file.lo istream-file.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-file.lo -MD -MP -MF .deps/istream-file.Tpo -c istream-file.c  -fPIC -DPIC -o .libs/istream-file.o
--- istream-failure-at.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-failure-at.lo -MD -MP -MF .deps/istream-failure-at.Tpo -c istream-failure-at.c -o istream-failure-at.o >/dev/null 2>&1
--- istream-concat.lo ---
mv -f .deps/istream-concat.Tpo .deps/istream-concat.Plo
--- istream-hash.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-hash.lo -MD -MP -MF .deps/istream-hash.Tpo -c -o istream-hash.lo istream-hash.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-hash.lo -MD -MP -MF .deps/istream-hash.Tpo -c istream-hash.c  -fPIC -DPIC -o .libs/istream-hash.o
--- istream.lo ---
mv -f .deps/istream.Tpo .deps/istream.Plo
--- istream-jsonstr.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-jsonstr.lo -MD -MP -MF .deps/istream-jsonstr.Tpo -c -o istream-jsonstr.lo istream-jsonstr.c
--- istream-file.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-file.lo -MD -MP -MF .deps/istream-file.Tpo -c istream-file.c -o istream-file.o >/dev/null 2>&1
--- istream-failure-at.lo ---
mv -f .deps/istream-failure-at.Tpo .deps/istream-failure-at.Plo
--- istream-limit.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-limit.lo -MD -MP -MF .deps/istream-limit.Tpo -c -o istream-limit.lo istream-limit.c
--- istream-jsonstr.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-jsonstr.lo -MD -MP -MF .deps/istream-jsonstr.Tpo -c istream-jsonstr.c  -fPIC -DPIC -o .libs/istream-jsonstr.o
--- istream-limit.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-limit.lo -MD -MP -MF .deps/istream-limit.Tpo -c istream-limit.c  -fPIC -DPIC -o .libs/istream-limit.o
--- istream-hash.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-hash.lo -MD -MP -MF .deps/istream-hash.Tpo -c istream-hash.c -o istream-hash.o >/dev/null 2>&1
mv -f .deps/istream-hash.Tpo .deps/istream-hash.Plo
--- istream-multiplex.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-multiplex.lo -MD -MP -MF .deps/istream-multiplex.Tpo -c -o istream-multiplex.lo istream-multiplex.c
--- istream-limit.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-limit.lo -MD -MP -MF .deps/istream-limit.Tpo -c istream-limit.c -o istream-limit.o >/dev/null 2>&1
--- istream-file.lo ---
mv -f .deps/istream-file.Tpo .deps/istream-file.Plo
--- istream-rawlog.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-rawlog.lo -MD -MP -MF .deps/istream-rawlog.Tpo -c -o istream-rawlog.lo istream-rawlog.c
--- istream-jsonstr.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-jsonstr.lo -MD -MP -MF .deps/istream-jsonstr.Tpo -c istream-jsonstr.c -o istream-jsonstr.o >/dev/null 2>&1
--- istream-multiplex.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-multiplex.lo -MD -MP -MF .deps/istream-multiplex.Tpo -c istream-multiplex.c  -fPIC -DPIC -o .libs/istream-multiplex.o
--- istream-rawlog.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-rawlog.lo -MD -MP -MF .deps/istream-rawlog.Tpo -c istream-rawlog.c  -fPIC -DPIC -o .libs/istream-rawlog.o
--- istream-limit.lo ---
mv -f .deps/istream-limit.Tpo .deps/istream-limit.Plo
--- istream-seekable.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-seekable.lo -MD -MP -MF .deps/istream-seekable.Tpo -c -o istream-seekable.lo istream-seekable.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-seekable.lo -MD -MP -MF .deps/istream-seekable.Tpo -c istream-seekable.c  -fPIC -DPIC -o .libs/istream-seekable.o
--- istream-rawlog.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-rawlog.lo -MD -MP -MF .deps/istream-rawlog.Tpo -c istream-rawlog.c -o istream-rawlog.o >/dev/null 2>&1
--- istream-jsonstr.lo ---
mv -f .deps/istream-jsonstr.Tpo .deps/istream-jsonstr.Plo
--- istream-sized.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-sized.lo -MD -MP -MF .deps/istream-sized.Tpo -c -o istream-sized.lo istream-sized.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-sized.lo -MD -MP -MF .deps/istream-sized.Tpo -c istream-sized.c  -fPIC -DPIC -o .libs/istream-sized.o
--- istream-multiplex.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-multiplex.lo -MD -MP -MF .deps/istream-multiplex.Tpo -c istream-multiplex.c -o istream-multiplex.o >/dev/null 2>&1
--- istream-rawlog.lo ---
mv -f .deps/istream-rawlog.Tpo .deps/istream-rawlog.Plo
--- istream-tee.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-tee.lo -MD -MP -MF .deps/istream-tee.Tpo -c -o istream-tee.lo istream-tee.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-tee.lo -MD -MP -MF .deps/istream-tee.Tpo -c istream-tee.c  -fPIC -DPIC -o .libs/istream-tee.o
--- istream-sized.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-sized.lo -MD -MP -MF .deps/istream-sized.Tpo -c istream-sized.c -o istream-sized.o >/dev/null 2>&1
--- istream-seekable.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-seekable.lo -MD -MP -MF .deps/istream-seekable.Tpo -c istream-seekable.c -o istream-seekable.o >/dev/null 2>&1
--- istream-tee.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-tee.lo -MD -MP -MF .deps/istream-tee.Tpo -c istream-tee.c -o istream-tee.o >/dev/null 2>&1
--- istream-multiplex.lo ---
mv -f .deps/istream-multiplex.Tpo .deps/istream-multiplex.Plo
--- istream-try.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-try.lo -MD -MP -MF .deps/istream-try.Tpo -c -o istream-try.lo istream-try.c
--- istream-sized.lo ---
mv -f .deps/istream-sized.Tpo .deps/istream-sized.Plo
--- istream-timeout.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-timeout.lo -MD -MP -MF .deps/istream-timeout.Tpo -c -o istream-timeout.lo istream-timeout.c
--- istream-try.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-try.lo -MD -MP -MF .deps/istream-try.Tpo -c istream-try.c  -fPIC -DPIC -o .libs/istream-try.o
--- istream-timeout.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-timeout.lo -MD -MP -MF .deps/istream-timeout.Tpo -c istream-timeout.c  -fPIC -DPIC -o .libs/istream-timeout.o
--- istream-tee.lo ---
mv -f .deps/istream-tee.Tpo .deps/istream-tee.Plo
--- istream-unix.lo ---
--- istream-timeout.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-timeout.lo -MD -MP -MF .deps/istream-timeout.Tpo -c istream-timeout.c -o istream-timeout.o >/dev/null 2>&1
--- istream-unix.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-unix.lo -MD -MP -MF .deps/istream-unix.Tpo -c -o istream-unix.lo istream-unix.c
--- istream-try.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-try.lo -MD -MP -MF .deps/istream-try.Tpo -c istream-try.c -o istream-try.o >/dev/null 2>&1
--- istream-seekable.lo ---
mv -f .deps/istream-seekable.Tpo .deps/istream-seekable.Plo
--- ioloop.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ioloop.lo -MD -MP -MF .deps/ioloop.Tpo -c -o ioloop.lo ioloop.c
--- istream-unix.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-unix.lo -MD -MP -MF .deps/istream-unix.Tpo -c istream-unix.c  -fPIC -DPIC -o .libs/istream-unix.o
--- ioloop.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ioloop.lo -MD -MP -MF .deps/ioloop.Tpo -c ioloop.c  -fPIC -DPIC -o .libs/ioloop.o
--- istream-timeout.lo ---
mv -f .deps/istream-timeout.Tpo .deps/istream-timeout.Plo
--- ioloop-iolist.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ioloop-iolist.lo -MD -MP -MF .deps/ioloop-iolist.Tpo -c -o ioloop-iolist.lo ioloop-iolist.c
--- istream-unix.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-unix.lo -MD -MP -MF .deps/istream-unix.Tpo -c istream-unix.c -o istream-unix.o >/dev/null 2>&1
--- istream-try.lo ---
mv -f .deps/istream-try.Tpo .deps/istream-try.Plo
--- ioloop-notify-none.lo ---
--- ioloop-iolist.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ioloop-iolist.lo -MD -MP -MF .deps/ioloop-iolist.Tpo -c ioloop-iolist.c  -fPIC -DPIC -o .libs/ioloop-iolist.o
--- ioloop-notify-none.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ioloop-notify-none.lo -MD -MP -MF .deps/ioloop-notify-none.Tpo -c -o ioloop-notify-none.lo ioloop-notify-none.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ioloop-notify-none.lo -MD -MP -MF .deps/ioloop-notify-none.Tpo -c ioloop-notify-none.c  -fPIC -DPIC -o .libs/ioloop-notify-none.o
--- ioloop-iolist.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ioloop-iolist.lo -MD -MP -MF .deps/ioloop-iolist.Tpo -c ioloop-iolist.c -o ioloop-iolist.o >/dev/null 2>&1
--- istream-unix.lo ---
mv -f .deps/istream-unix.Tpo .deps/istream-unix.Plo
--- ioloop-notify-fd.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ioloop-notify-fd.lo -MD -MP -MF .deps/ioloop-notify-fd.Tpo -c -o ioloop-notify-fd.lo ioloop-notify-fd.c
--- ioloop-notify-none.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ioloop-notify-none.lo -MD -MP -MF .deps/ioloop-notify-none.Tpo -c ioloop-notify-none.c -o ioloop-notify-none.o >/dev/null 2>&1
--- ioloop-notify-fd.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ioloop-notify-fd.lo -MD -MP -MF .deps/ioloop-notify-fd.Tpo -c ioloop-notify-fd.c  -fPIC -DPIC -o .libs/ioloop-notify-fd.o
--- ioloop-notify-none.lo ---
mv -f .deps/ioloop-notify-none.Tpo .deps/ioloop-notify-none.Plo
--- ioloop-notify-inotify.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ioloop-notify-inotify.lo -MD -MP -MF .deps/ioloop-notify-inotify.Tpo -c -o ioloop-notify-inotify.lo ioloop-notify-inotify.c
--- ioloop-iolist.lo ---
mv -f .deps/ioloop-iolist.Tpo .deps/ioloop-iolist.Plo
--- ioloop-notify-kqueue.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ioloop-notify-kqueue.lo -MD -MP -MF .deps/ioloop-notify-kqueue.Tpo -c -o ioloop-notify-kqueue.lo ioloop-notify-kqueue.c
--- ioloop-notify-fd.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ioloop-notify-fd.lo -MD -MP -MF .deps/ioloop-notify-fd.Tpo -c ioloop-notify-fd.c -o ioloop-notify-fd.o >/dev/null 2>&1
--- ioloop-notify-inotify.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ioloop-notify-inotify.lo -MD -MP -MF .deps/ioloop-notify-inotify.Tpo -c ioloop-notify-inotify.c  -fPIC -DPIC -o .libs/ioloop-notify-inotify.o
--- ioloop-notify-kqueue.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ioloop-notify-kqueue.lo -MD -MP -MF .deps/ioloop-notify-kqueue.Tpo -c ioloop-notify-kqueue.c  -fPIC -DPIC -o .libs/ioloop-notify-kqueue.o
--- ioloop-notify-fd.lo ---
mv -f .deps/ioloop-notify-fd.Tpo .deps/ioloop-notify-fd.Plo
--- ioloop-poll.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ioloop-poll.lo -MD -MP -MF .deps/ioloop-poll.Tpo -c -o ioloop-poll.lo ioloop-poll.c
--- ioloop-notify-inotify.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ioloop-notify-inotify.lo -MD -MP -MF .deps/ioloop-notify-inotify.Tpo -c ioloop-notify-inotify.c -o ioloop-notify-inotify.o >/dev/null 2>&1
--- ioloop-poll.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ioloop-poll.lo -MD -MP -MF .deps/ioloop-poll.Tpo -c ioloop-poll.c  -fPIC -DPIC -o .libs/ioloop-poll.o
--- ioloop-notify-inotify.lo ---
mv -f .deps/ioloop-notify-inotify.Tpo .deps/ioloop-notify-inotify.Plo
--- ioloop-select.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ioloop-select.lo -MD -MP -MF .deps/ioloop-select.Tpo -c -o ioloop-select.lo ioloop-select.c
--- ioloop-poll.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ioloop-poll.lo -MD -MP -MF .deps/ioloop-poll.Tpo -c ioloop-poll.c -o ioloop-poll.o >/dev/null 2>&1
--- ioloop-notify-kqueue.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ioloop-notify-kqueue.lo -MD -MP -MF .deps/ioloop-notify-kqueue.Tpo -c ioloop-notify-kqueue.c -o ioloop-notify-kqueue.o >/dev/null 2>&1
--- ioloop-select.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ioloop-select.lo -MD -MP -MF .deps/ioloop-select.Tpo -c ioloop-select.c  -fPIC -DPIC -o .libs/ioloop-select.o
--- ioloop-poll.lo ---
mv -f .deps/ioloop-poll.Tpo .deps/ioloop-poll.Plo
--- ioloop-select.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ioloop-select.lo -MD -MP -MF .deps/ioloop-select.Tpo -c ioloop-select.c -o ioloop-select.o >/dev/null 2>&1
--- ioloop-epoll.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ioloop-epoll.lo -MD -MP -MF .deps/ioloop-epoll.Tpo -c -o ioloop-epoll.lo ioloop-epoll.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ioloop-epoll.lo -MD -MP -MF .deps/ioloop-epoll.Tpo -c ioloop-epoll.c  -fPIC -DPIC -o .libs/ioloop-epoll.o
--- ioloop-select.lo ---
mv -f .deps/ioloop-select.Tpo .deps/ioloop-select.Plo
--- ioloop-kqueue.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ioloop-kqueue.lo -MD -MP -MF .deps/ioloop-kqueue.Tpo -c -o ioloop-kqueue.lo ioloop-kqueue.c
--- ioloop-notify-kqueue.lo ---
mv -f .deps/ioloop-notify-kqueue.Tpo .deps/ioloop-notify-kqueue.Plo
--- json-parser.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT json-parser.lo -MD -MP -MF .deps/json-parser.Tpo -c -o json-parser.lo json-parser.c
--- ioloop-epoll.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ioloop-epoll.lo -MD -MP -MF .deps/ioloop-epoll.Tpo -c ioloop-epoll.c -o ioloop-epoll.o >/dev/null 2>&1
--- ioloop-kqueue.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ioloop-kqueue.lo -MD -MP -MF .deps/ioloop-kqueue.Tpo -c ioloop-kqueue.c  -fPIC -DPIC -o .libs/ioloop-kqueue.o
--- json-parser.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT json-parser.lo -MD -MP -MF .deps/json-parser.Tpo -c json-parser.c  -fPIC -DPIC -o .libs/json-parser.o
--- ioloop.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ioloop.lo -MD -MP -MF .deps/ioloop.Tpo -c ioloop.c -o ioloop.o >/dev/null 2>&1
--- ioloop-epoll.lo ---
mv -f .deps/ioloop-epoll.Tpo .deps/ioloop-epoll.Plo
--- json-tree.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT json-tree.lo -MD -MP -MF .deps/json-tree.Tpo -c -o json-tree.lo json-tree.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT json-tree.lo -MD -MP -MF .deps/json-tree.Tpo -c json-tree.c  -fPIC -DPIC -o .libs/json-tree.o
--- ioloop-kqueue.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ioloop-kqueue.lo -MD -MP -MF .deps/ioloop-kqueue.Tpo -c ioloop-kqueue.c -o ioloop-kqueue.o >/dev/null 2>&1
--- json-tree.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT json-tree.lo -MD -MP -MF .deps/json-tree.Tpo -c json-tree.c -o json-tree.o >/dev/null 2>&1
--- ioloop-kqueue.lo ---
mv -f .deps/ioloop-kqueue.Tpo .deps/ioloop-kqueue.Plo
--- lib.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT lib.lo -MD -MP -MF .deps/lib.Tpo -c -o lib.lo lib.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT lib.lo -MD -MP -MF .deps/lib.Tpo -c lib.c  -fPIC -DPIC -o .libs/lib.o
--- json-tree.lo ---
mv -f .deps/json-tree.Tpo .deps/json-tree.Plo
--- lib-event.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT lib-event.lo -MD -MP -MF .deps/lib-event.Tpo -c -o lib-event.lo lib-event.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT lib-event.lo -MD -MP -MF .deps/lib-event.Tpo -c lib-event.c  -fPIC -DPIC -o .libs/lib-event.o
--- json-parser.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT json-parser.lo -MD -MP -MF .deps/json-parser.Tpo -c json-parser.c -o json-parser.o >/dev/null 2>&1
--- lib.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT lib.lo -MD -MP -MF .deps/lib.Tpo -c lib.c -o lib.o >/dev/null 2>&1
mv -f .deps/lib.Tpo .deps/lib.Plo
--- lib-signals.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT lib-signals.lo -MD -MP -MF .deps/lib-signals.Tpo -c -o lib-signals.lo lib-signals.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT lib-signals.lo -MD -MP -MF .deps/lib-signals.Tpo -c lib-signals.c  -fPIC -DPIC -o .libs/lib-signals.o
--- ioloop.lo ---
mv -f .deps/ioloop.Tpo .deps/ioloop.Plo
--- log-throttle.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT log-throttle.lo -MD -MP -MF .deps/log-throttle.Tpo -c -o log-throttle.lo log-throttle.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT log-throttle.lo -MD -MP -MF .deps/log-throttle.Tpo -c log-throttle.c  -fPIC -DPIC -o .libs/log-throttle.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT log-throttle.lo -MD -MP -MF .deps/log-throttle.Tpo -c log-throttle.c -o log-throttle.o >/dev/null 2>&1
--- json-parser.lo ---
mv -f .deps/json-parser.Tpo .deps/json-parser.Plo
--- md4.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT md4.lo -MD -MP -MF .deps/md4.Tpo -c -o md4.lo md4.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT md4.lo -MD -MP -MF .deps/md4.Tpo -c md4.c  -fPIC -DPIC -o .libs/md4.o
--- log-throttle.lo ---
mv -f .deps/log-throttle.Tpo .deps/log-throttle.Plo
--- md5.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT md5.lo -MD -MP -MF .deps/md5.Tpo -c -o md5.lo md5.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT md5.lo -MD -MP -MF .deps/md5.Tpo -c md5.c  -fPIC -DPIC -o .libs/md5.o
--- lib-signals.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT lib-signals.lo -MD -MP -MF .deps/lib-signals.Tpo -c lib-signals.c -o lib-signals.o >/dev/null 2>&1
--- md4.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT md4.lo -MD -MP -MF .deps/md4.Tpo -c md4.c -o md4.o >/dev/null 2>&1
--- md5.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT md5.lo -MD -MP -MF .deps/md5.Tpo -c md5.c -o md5.o >/dev/null 2>&1
--- lib-event.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT lib-event.lo -MD -MP -MF .deps/lib-event.Tpo -c lib-event.c -o lib-event.o >/dev/null 2>&1
--- md4.lo ---
mv -f .deps/md4.Tpo .deps/md4.Plo
--- memarea.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT memarea.lo -MD -MP -MF .deps/memarea.Tpo -c -o memarea.lo memarea.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT memarea.lo -MD -MP -MF .deps/memarea.Tpo -c memarea.c  -fPIC -DPIC -o .libs/memarea.o
--- lib-signals.lo ---
mv -f .deps/lib-signals.Tpo .deps/lib-signals.Plo
--- mempool.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mempool.lo -MD -MP -MF .deps/mempool.Tpo -c -o mempool.lo mempool.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mempool.lo -MD -MP -MF .deps/mempool.Tpo -c mempool.c  -fPIC -DPIC -o .libs/mempool.o
--- memarea.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT memarea.lo -MD -MP -MF .deps/memarea.Tpo -c memarea.c -o memarea.o >/dev/null 2>&1
--- mempool.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mempool.lo -MD -MP -MF .deps/mempool.Tpo -c mempool.c -o mempool.o >/dev/null 2>&1
--- md5.lo ---
mv -f .deps/md5.Tpo .deps/md5.Plo
--- mempool-allocfree.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mempool-allocfree.lo -MD -MP -MF .deps/mempool-allocfree.Tpo -c -o mempool-allocfree.lo mempool-allocfree.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mempool-allocfree.lo -MD -MP -MF .deps/mempool-allocfree.Tpo -c mempool-allocfree.c  -fPIC -DPIC -o .libs/mempool-allocfree.o
--- mempool.lo ---
mv -f .deps/mempool.Tpo .deps/mempool.Plo
--- mempool-alloconly.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mempool-alloconly.lo -MD -MP -MF .deps/mempool-alloconly.Tpo -c -o mempool-alloconly.lo mempool-alloconly.c
--- memarea.lo ---
mv -f .deps/memarea.Tpo .deps/memarea.Plo
--- mempool-datastack.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mempool-datastack.lo -MD -MP -MF .deps/mempool-datastack.Tpo -c -o mempool-datastack.lo mempool-datastack.c
--- mempool-alloconly.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mempool-alloconly.lo -MD -MP -MF .deps/mempool-alloconly.Tpo -c mempool-alloconly.c  -fPIC -DPIC -o .libs/mempool-alloconly.o
--- mempool-datastack.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mempool-datastack.lo -MD -MP -MF .deps/mempool-datastack.Tpo -c mempool-datastack.c  -fPIC -DPIC -o .libs/mempool-datastack.o
--- mempool-allocfree.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mempool-allocfree.lo -MD -MP -MF .deps/mempool-allocfree.Tpo -c mempool-allocfree.c -o mempool-allocfree.o >/dev/null 2>&1
--- mempool-datastack.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mempool-datastack.lo -MD -MP -MF .deps/mempool-datastack.Tpo -c mempool-datastack.c -o mempool-datastack.o >/dev/null 2>&1
--- mempool-alloconly.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mempool-alloconly.lo -MD -MP -MF .deps/mempool-alloconly.Tpo -c mempool-alloconly.c -o mempool-alloconly.o >/dev/null 2>&1
--- mempool-datastack.lo ---
mv -f .deps/mempool-datastack.Tpo .deps/mempool-datastack.Plo
--- mempool-system.lo ---
--- mempool-allocfree.lo ---
mv -f .deps/mempool-allocfree.Tpo .deps/mempool-allocfree.Plo
--- mempool-system.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mempool-system.lo -MD -MP -MF .deps/mempool-system.Tpo -c -o mempool-system.lo mempool-system.c
--- mempool-unsafe-datastack.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mempool-unsafe-datastack.lo -MD -MP -MF .deps/mempool-unsafe-datastack.Tpo -c -o mempool-unsafe-datastack.lo mempool-unsafe-datastack.c
--- mempool-system.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mempool-system.lo -MD -MP -MF .deps/mempool-system.Tpo -c mempool-system.c  -fPIC -DPIC -o .libs/mempool-system.o
--- mempool-unsafe-datastack.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mempool-unsafe-datastack.lo -MD -MP -MF .deps/mempool-unsafe-datastack.Tpo -c mempool-unsafe-datastack.c  -fPIC -DPIC -o .libs/mempool-unsafe-datastack.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mempool-unsafe-datastack.lo -MD -MP -MF .deps/mempool-unsafe-datastack.Tpo -c mempool-unsafe-datastack.c -o mempool-unsafe-datastack.o >/dev/null 2>&1
--- mempool-alloconly.lo ---
mv -f .deps/mempool-alloconly.Tpo .deps/mempool-alloconly.Plo
--- mkdir-parents.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mkdir-parents.lo -MD -MP -MF .deps/mkdir-parents.Tpo -c -o mkdir-parents.lo mkdir-parents.c
--- mempool-system.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mempool-system.lo -MD -MP -MF .deps/mempool-system.Tpo -c mempool-system.c -o mempool-system.o >/dev/null 2>&1
--- mkdir-parents.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mkdir-parents.lo -MD -MP -MF .deps/mkdir-parents.Tpo -c mkdir-parents.c  -fPIC -DPIC -o .libs/mkdir-parents.o
--- mempool-unsafe-datastack.lo ---
mv -f .deps/mempool-unsafe-datastack.Tpo .deps/mempool-unsafe-datastack.Plo
--- mmap-anon.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mmap-anon.lo -MD -MP -MF .deps/mmap-anon.Tpo -c -o mmap-anon.lo mmap-anon.c
--- mempool-system.lo ---
mv -f .deps/mempool-system.Tpo .deps/mempool-system.Plo
--- mmap-util.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mmap-util.lo -MD -MP -MF .deps/mmap-util.Tpo -c -o mmap-util.lo mmap-util.c
--- mmap-anon.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mmap-anon.lo -MD -MP -MF .deps/mmap-anon.Tpo -c mmap-anon.c  -fPIC -DPIC -o .libs/mmap-anon.o
--- mmap-util.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mmap-util.lo -MD -MP -MF .deps/mmap-util.Tpo -c mmap-util.c  -fPIC -DPIC -o .libs/mmap-util.o
--- mkdir-parents.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mkdir-parents.lo -MD -MP -MF .deps/mkdir-parents.Tpo -c mkdir-parents.c -o mkdir-parents.o >/dev/null 2>&1
--- lib-event.lo ---
mv -f .deps/lib-event.Tpo .deps/lib-event.Plo
--- module-dir.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT module-dir.lo -MD -MP -MF .deps/module-dir.Tpo -c -o module-dir.lo module-dir.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT module-dir.lo -MD -MP -MF .deps/module-dir.Tpo -c module-dir.c  -fPIC -DPIC -o .libs/module-dir.o
--- mmap-util.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mmap-util.lo -MD -MP -MF .deps/mmap-util.Tpo -c mmap-util.c -o mmap-util.o >/dev/null 2>&1
--- mmap-anon.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mmap-anon.lo -MD -MP -MF .deps/mmap-anon.Tpo -c mmap-anon.c -o mmap-anon.o >/dev/null 2>&1
--- mkdir-parents.lo ---
mv -f .deps/mkdir-parents.Tpo .deps/mkdir-parents.Plo
--- mountpoint.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mountpoint.lo -MD -MP -MF .deps/mountpoint.Tpo -c -o mountpoint.lo mountpoint.c
--- mmap-util.lo ---
mv -f .deps/mmap-util.Tpo .deps/mmap-util.Plo
--- net.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT net.lo -MD -MP -MF .deps/net.Tpo -c -o net.lo net.c
--- mmap-anon.lo ---
mv -f .deps/mmap-anon.Tpo .deps/mmap-anon.Plo
--- nfs-workarounds.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT nfs-workarounds.lo -MD -MP -MF .deps/nfs-workarounds.Tpo -c -o nfs-workarounds.lo nfs-workarounds.c
--- mountpoint.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mountpoint.lo -MD -MP -MF .deps/mountpoint.Tpo -c mountpoint.c  -fPIC -DPIC -o .libs/mountpoint.o
--- net.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT net.lo -MD -MP -MF .deps/net.Tpo -c net.c  -fPIC -DPIC -o .libs/net.o
--- nfs-workarounds.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT nfs-workarounds.lo -MD -MP -MF .deps/nfs-workarounds.Tpo -c nfs-workarounds.c  -fPIC -DPIC -o .libs/nfs-workarounds.o
--- mountpoint.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mountpoint.lo -MD -MP -MF .deps/mountpoint.Tpo -c mountpoint.c -o mountpoint.o >/dev/null 2>&1
mv -f .deps/mountpoint.Tpo .deps/mountpoint.Plo
--- nfs-workarounds.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT nfs-workarounds.lo -MD -MP -MF .deps/nfs-workarounds.Tpo -c nfs-workarounds.c -o nfs-workarounds.o >/dev/null 2>&1
--- numpack.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT numpack.lo -MD -MP -MF .deps/numpack.Tpo -c -o numpack.lo numpack.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT numpack.lo -MD -MP -MF .deps/numpack.Tpo -c numpack.c  -fPIC -DPIC -o .libs/numpack.o
--- module-dir.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT module-dir.lo -MD -MP -MF .deps/module-dir.Tpo -c module-dir.c -o module-dir.o >/dev/null 2>&1
--- numpack.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT numpack.lo -MD -MP -MF .deps/numpack.Tpo -c numpack.c -o numpack.o >/dev/null 2>&1
--- nfs-workarounds.lo ---
mv -f .deps/nfs-workarounds.Tpo .deps/nfs-workarounds.Plo
--- ostream.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ostream.lo -MD -MP -MF .deps/ostream.Tpo -c -o ostream.lo ostream.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ostream.lo -MD -MP -MF .deps/ostream.Tpo -c ostream.c  -fPIC -DPIC -o .libs/ostream.o
--- numpack.lo ---
mv -f .deps/numpack.Tpo .deps/numpack.Plo
--- ostream-buffer.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ostream-buffer.lo -MD -MP -MF .deps/ostream-buffer.Tpo -c -o ostream-buffer.lo ostream-buffer.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ostream-buffer.lo -MD -MP -MF .deps/ostream-buffer.Tpo -c ostream-buffer.c  -fPIC -DPIC -o .libs/ostream-buffer.o
--- net.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT net.lo -MD -MP -MF .deps/net.Tpo -c net.c -o net.o >/dev/null 2>&1
--- ostream-buffer.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ostream-buffer.lo -MD -MP -MF .deps/ostream-buffer.Tpo -c ostream-buffer.c -o ostream-buffer.o >/dev/null 2>&1
mv -f .deps/ostream-buffer.Tpo .deps/ostream-buffer.Plo
--- ostream-failure-at.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ostream-failure-at.lo -MD -MP -MF .deps/ostream-failure-at.Tpo -c -o ostream-failure-at.lo ostream-failure-at.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ostream-failure-at.lo -MD -MP -MF .deps/ostream-failure-at.Tpo -c ostream-failure-at.c  -fPIC -DPIC -o .libs/ostream-failure-at.o
--- module-dir.lo ---
mv -f .deps/module-dir.Tpo .deps/module-dir.Plo
--- ostream-file.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ostream-file.lo -MD -MP -MF .deps/ostream-file.Tpo -c -o ostream-file.lo ostream-file.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ostream-file.lo -MD -MP -MF .deps/ostream-file.Tpo -c ostream-file.c  -fPIC -DPIC -o .libs/ostream-file.o
--- ostream.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ostream.lo -MD -MP -MF .deps/ostream.Tpo -c ostream.c -o ostream.o >/dev/null 2>&1
--- ostream-failure-at.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ostream-failure-at.lo -MD -MP -MF .deps/ostream-failure-at.Tpo -c ostream-failure-at.c -o ostream-failure-at.o >/dev/null 2>&1
--- net.lo ---
mv -f .deps/net.Tpo .deps/net.Plo
--- ostream-hash.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ostream-hash.lo -MD -MP -MF .deps/ostream-hash.Tpo -c -o ostream-hash.lo ostream-hash.c
--- ostream-failure-at.lo ---
mv -f .deps/ostream-failure-at.Tpo .deps/ostream-failure-at.Plo
--- ostream-multiplex.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ostream-multiplex.lo -MD -MP -MF .deps/ostream-multiplex.Tpo -c -o ostream-multiplex.lo ostream-multiplex.c
--- ostream-hash.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ostream-hash.lo -MD -MP -MF .deps/ostream-hash.Tpo -c ostream-hash.c  -fPIC -DPIC -o .libs/ostream-hash.o
--- ostream-multiplex.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ostream-multiplex.lo -MD -MP -MF .deps/ostream-multiplex.Tpo -c ostream-multiplex.c  -fPIC -DPIC -o .libs/ostream-multiplex.o
--- ostream-hash.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ostream-hash.lo -MD -MP -MF .deps/ostream-hash.Tpo -c ostream-hash.c -o ostream-hash.o >/dev/null 2>&1
mv -f .deps/ostream-hash.Tpo .deps/ostream-hash.Plo
--- ostream-null.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ostream-null.lo -MD -MP -MF .deps/ostream-null.Tpo -c -o ostream-null.lo ostream-null.c
--- ostream.lo ---
mv -f .deps/ostream.Tpo .deps/ostream.Plo
--- ostream-rawlog.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ostream-rawlog.lo -MD -MP -MF .deps/ostream-rawlog.Tpo -c -o ostream-rawlog.lo ostream-rawlog.c
--- ostream-null.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ostream-null.lo -MD -MP -MF .deps/ostream-null.Tpo -c ostream-null.c  -fPIC -DPIC -o .libs/ostream-null.o
--- ostream-rawlog.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ostream-rawlog.lo -MD -MP -MF .deps/ostream-rawlog.Tpo -c ostream-rawlog.c  -fPIC -DPIC -o .libs/ostream-rawlog.o
--- ostream-multiplex.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ostream-multiplex.lo -MD -MP -MF .deps/ostream-multiplex.Tpo -c ostream-multiplex.c -o ostream-multiplex.o >/dev/null 2>&1
--- ostream-null.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ostream-null.lo -MD -MP -MF .deps/ostream-null.Tpo -c ostream-null.c -o ostream-null.o >/dev/null 2>&1
--- ostream-file.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ostream-file.lo -MD -MP -MF .deps/ostream-file.Tpo -c ostream-file.c -o ostream-file.o >/dev/null 2>&1
--- ostream-rawlog.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ostream-rawlog.lo -MD -MP -MF .deps/ostream-rawlog.Tpo -c ostream-rawlog.c -o ostream-rawlog.o >/dev/null 2>&1
--- ostream-null.lo ---
mv -f .deps/ostream-null.Tpo .deps/ostream-null.Plo
--- ostream-unix.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ostream-unix.lo -MD -MP -MF .deps/ostream-unix.Tpo -c -o ostream-unix.lo ostream-unix.c
--- ostream-rawlog.lo ---
mv -f .deps/ostream-rawlog.Tpo .deps/ostream-rawlog.Plo
--- ostream-unix.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ostream-unix.lo -MD -MP -MF .deps/ostream-unix.Tpo -c ostream-unix.c  -fPIC -DPIC -o .libs/ostream-unix.o
--- ostream-wrapper.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ostream-wrapper.lo -MD -MP -MF .deps/ostream-wrapper.Tpo -c -o ostream-wrapper.lo ostream-wrapper.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ostream-wrapper.lo -MD -MP -MF .deps/ostream-wrapper.Tpo -c ostream-wrapper.c  -fPIC -DPIC -o .libs/ostream-wrapper.o
--- ostream-multiplex.lo ---
mv -f .deps/ostream-multiplex.Tpo .deps/ostream-multiplex.Plo
--- path-util.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT path-util.lo -MD -MP -MF .deps/path-util.Tpo -c -o path-util.lo path-util.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT path-util.lo -MD -MP -MF .deps/path-util.Tpo -c path-util.c  -fPIC -DPIC -o .libs/path-util.o
--- ostream-unix.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ostream-unix.lo -MD -MP -MF .deps/ostream-unix.Tpo -c ostream-unix.c -o ostream-unix.o >/dev/null 2>&1
mv -f .deps/ostream-unix.Tpo .deps/ostream-unix.Plo
--- pkcs5.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT pkcs5.lo -MD -MP -MF .deps/pkcs5.Tpo -c -o pkcs5.lo pkcs5.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT pkcs5.lo -MD -MP -MF .deps/pkcs5.Tpo -c pkcs5.c  -fPIC -DPIC -o .libs/pkcs5.o
--- path-util.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT path-util.lo -MD -MP -MF .deps/path-util.Tpo -c path-util.c -o path-util.o >/dev/null 2>&1
--- pkcs5.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT pkcs5.lo -MD -MP -MF .deps/pkcs5.Tpo -c pkcs5.c -o pkcs5.o >/dev/null 2>&1
--- ostream-file.lo ---
mv -f .deps/ostream-file.Tpo .deps/ostream-file.Plo
--- primes.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT primes.lo -MD -MP -MF .deps/primes.Tpo -c -o primes.lo primes.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT primes.lo -MD -MP -MF .deps/primes.Tpo -c primes.c  -fPIC -DPIC -o .libs/primes.o
--- pkcs5.lo ---
mv -f .deps/pkcs5.Tpo .deps/pkcs5.Plo
--- printf-format-fix.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT printf-format-fix.lo -MD -MP -MF .deps/printf-format-fix.Tpo -c -o printf-format-fix.lo printf-format-fix.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT printf-format-fix.lo -MD -MP -MF .deps/printf-format-fix.Tpo -c printf-format-fix.c  -fPIC -DPIC -o .libs/printf-format-fix.o
--- primes.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT primes.lo -MD -MP -MF .deps/primes.Tpo -c primes.c -o primes.o >/dev/null 2>&1
--- path-util.lo ---
mv -f .deps/path-util.Tpo .deps/path-util.Plo
--- process-stat.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT process-stat.lo -MD -MP -MF .deps/process-stat.Tpo -c -o process-stat.lo process-stat.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT process-stat.lo -MD -MP -MF .deps/process-stat.Tpo -c process-stat.c  -fPIC -DPIC -o .libs/process-stat.o
--- primes.lo ---
mv -f .deps/primes.Tpo .deps/primes.Plo
--- process-title.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT process-title.lo -MD -MP -MF .deps/process-title.Tpo -c -o process-title.lo process-title.c
--- ostream-wrapper.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ostream-wrapper.lo -MD -MP -MF .deps/ostream-wrapper.Tpo -c ostream-wrapper.c -o ostream-wrapper.o >/dev/null 2>&1
--- process-title.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT process-title.lo -MD -MP -MF .deps/process-title.Tpo -c process-title.c  -fPIC -DPIC -o .libs/process-title.o
--- printf-format-fix.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT printf-format-fix.lo -MD -MP -MF .deps/printf-format-fix.Tpo -c printf-format-fix.c -o printf-format-fix.o >/dev/null 2>&1
--- process-title.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT process-title.lo -MD -MP -MF .deps/process-title.Tpo -c process-title.c -o process-title.o >/dev/null 2>&1
--- printf-format-fix.lo ---
mv -f .deps/printf-format-fix.Tpo .deps/printf-format-fix.Plo
--- priorityq.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT priorityq.lo -MD -MP -MF .deps/priorityq.Tpo -c -o priorityq.lo priorityq.c
--- process-stat.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT process-stat.lo -MD -MP -MF .deps/process-stat.Tpo -c process-stat.c -o process-stat.o >/dev/null 2>&1
--- process-title.lo ---
mv -f .deps/process-title.Tpo .deps/process-title.Plo
--- randgen.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT randgen.lo -MD -MP -MF .deps/randgen.Tpo -c -o randgen.lo randgen.c
--- priorityq.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT priorityq.lo -MD -MP -MF .deps/priorityq.Tpo -c priorityq.c  -fPIC -DPIC -o .libs/priorityq.o
--- randgen.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT randgen.lo -MD -MP -MF .deps/randgen.Tpo -c randgen.c  -fPIC -DPIC -o .libs/randgen.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT randgen.lo -MD -MP -MF .deps/randgen.Tpo -c randgen.c -o randgen.o >/dev/null 2>&1
--- priorityq.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT priorityq.lo -MD -MP -MF .deps/priorityq.Tpo -c priorityq.c -o priorityq.o >/dev/null 2>&1
--- process-stat.lo ---
mv -f .deps/process-stat.Tpo .deps/process-stat.Plo
--- rand.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT rand.lo -MD -MP -MF .deps/rand.Tpo -c -o rand.lo rand.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT rand.lo -MD -MP -MF .deps/rand.Tpo -c rand.c  -fPIC -DPIC -o .libs/rand.o
--- randgen.lo ---
mv -f .deps/randgen.Tpo .deps/randgen.Plo
--- read-full.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT read-full.lo -MD -MP -MF .deps/read-full.Tpo -c -o read-full.lo read-full.c
--- rand.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT rand.lo -MD -MP -MF .deps/rand.Tpo -c rand.c -o rand.o >/dev/null 2>&1
--- read-full.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT read-full.lo -MD -MP -MF .deps/read-full.Tpo -c read-full.c  -fPIC -DPIC -o .libs/read-full.o
--- priorityq.lo ---
mv -f .deps/priorityq.Tpo .deps/priorityq.Plo
--- restrict-access.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT restrict-access.lo -MD -MP -MF .deps/restrict-access.Tpo -c -o restrict-access.lo restrict-access.c
--- rand.lo ---
mv -f .deps/rand.Tpo .deps/rand.Plo
--- restrict-process-size.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT restrict-process-size.lo -MD -MP -MF .deps/restrict-process-size.Tpo -c -o restrict-process-size.lo restrict-process-size.c
--- restrict-access.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT restrict-access.lo -MD -MP -MF .deps/restrict-access.Tpo -c restrict-access.c  -fPIC -DPIC -o .libs/restrict-access.o
--- read-full.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT read-full.lo -MD -MP -MF .deps/read-full.Tpo -c read-full.c -o read-full.o >/dev/null 2>&1
--- restrict-process-size.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT restrict-process-size.lo -MD -MP -MF .deps/restrict-process-size.Tpo -c restrict-process-size.c  -fPIC -DPIC -o .libs/restrict-process-size.o
--- ostream-wrapper.lo ---
mv -f .deps/ostream-wrapper.Tpo .deps/ostream-wrapper.Plo
--- safe-memset.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT safe-memset.lo -MD -MP -MF .deps/safe-memset.Tpo -c -o safe-memset.lo safe-memset.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT safe-memset.lo -MD -MP -MF .deps/safe-memset.Tpo -c safe-memset.c  -fPIC -DPIC -o .libs/safe-memset.o
--- read-full.lo ---
mv -f .deps/read-full.Tpo .deps/read-full.Plo
--- safe-mkdir.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT safe-mkdir.lo -MD -MP -MF .deps/safe-mkdir.Tpo -c -o safe-mkdir.lo safe-mkdir.c
--- restrict-process-size.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT restrict-process-size.lo -MD -MP -MF .deps/restrict-process-size.Tpo -c restrict-process-size.c -o restrict-process-size.o >/dev/null 2>&1
--- safe-mkdir.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT safe-mkdir.lo -MD -MP -MF .deps/safe-mkdir.Tpo -c safe-mkdir.c  -fPIC -DPIC -o .libs/safe-mkdir.o
--- safe-memset.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT safe-memset.lo -MD -MP -MF .deps/safe-memset.Tpo -c safe-memset.c -o safe-memset.o >/dev/null 2>&1
--- restrict-process-size.lo ---
mv -f .deps/restrict-process-size.Tpo .deps/restrict-process-size.Plo
--- safe-mkstemp.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT safe-mkstemp.lo -MD -MP -MF .deps/safe-mkstemp.Tpo -c -o safe-mkstemp.lo safe-mkstemp.c
--- safe-mkdir.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT safe-mkdir.lo -MD -MP -MF .deps/safe-mkdir.Tpo -c safe-mkdir.c -o safe-mkdir.o >/dev/null 2>&1
--- safe-memset.lo ---
mv -f .deps/safe-memset.Tpo .deps/safe-memset.Plo
--- sendfile-util.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT sendfile-util.lo -MD -MP -MF .deps/sendfile-util.Tpo -c -o sendfile-util.lo sendfile-util.c
--- restrict-access.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT restrict-access.lo -MD -MP -MF .deps/restrict-access.Tpo -c restrict-access.c -o restrict-access.o >/dev/null 2>&1
--- safe-mkstemp.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT safe-mkstemp.lo -MD -MP -MF .deps/safe-mkstemp.Tpo -c safe-mkstemp.c  -fPIC -DPIC -o .libs/safe-mkstemp.o
--- sendfile-util.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT sendfile-util.lo -MD -MP -MF .deps/sendfile-util.Tpo -c sendfile-util.c  -fPIC -DPIC -o .libs/sendfile-util.o
--- safe-mkdir.lo ---
mv -f .deps/safe-mkdir.Tpo .deps/safe-mkdir.Plo
--- seq-range-array.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT seq-range-array.lo -MD -MP -MF .deps/seq-range-array.Tpo -c -o seq-range-array.lo seq-range-array.c
--- sendfile-util.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT sendfile-util.lo -MD -MP -MF .deps/sendfile-util.Tpo -c sendfile-util.c -o sendfile-util.o >/dev/null 2>&1
--- safe-mkstemp.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT safe-mkstemp.lo -MD -MP -MF .deps/safe-mkstemp.Tpo -c safe-mkstemp.c -o safe-mkstemp.o >/dev/null 2>&1
--- seq-range-array.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT seq-range-array.lo -MD -MP -MF .deps/seq-range-array.Tpo -c seq-range-array.c  -fPIC -DPIC -o .libs/seq-range-array.o
--- sendfile-util.lo ---
mv -f .deps/sendfile-util.Tpo .deps/sendfile-util.Plo
--- seq-set-builder.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT seq-set-builder.lo -MD -MP -MF .deps/seq-set-builder.Tpo -c -o seq-set-builder.lo seq-set-builder.c
--- safe-mkstemp.lo ---
mv -f .deps/safe-mkstemp.Tpo .deps/safe-mkstemp.Plo
--- sha1.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT sha1.lo -MD -MP -MF .deps/sha1.Tpo -c -o sha1.lo sha1.c
--- seq-set-builder.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT seq-set-builder.lo -MD -MP -MF .deps/seq-set-builder.Tpo -c seq-set-builder.c  -fPIC -DPIC -o .libs/seq-set-builder.o
--- sha1.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT sha1.lo -MD -MP -MF .deps/sha1.Tpo -c sha1.c  -fPIC -DPIC -o .libs/sha1.o
--- restrict-access.lo ---
mv -f .deps/restrict-access.Tpo .deps/restrict-access.Plo
--- sha2.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT sha2.lo -MD -MP -MF .deps/sha2.Tpo -c -o sha2.lo sha2.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT sha2.lo -MD -MP -MF .deps/sha2.Tpo -c sha2.c  -fPIC -DPIC -o .libs/sha2.o
--- seq-set-builder.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT seq-set-builder.lo -MD -MP -MF .deps/seq-set-builder.Tpo -c seq-set-builder.c -o seq-set-builder.o >/dev/null 2>&1
mv -f .deps/seq-set-builder.Tpo .deps/seq-set-builder.Plo
--- sha3.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT sha3.lo -MD -MP -MF .deps/sha3.Tpo -c -o sha3.lo sha3.c
--- sha1.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT sha1.lo -MD -MP -MF .deps/sha1.Tpo -c sha1.c -o sha1.o >/dev/null 2>&1
--- sha3.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT sha3.lo -MD -MP -MF .deps/sha3.Tpo -c sha3.c  -fPIC -DPIC -o .libs/sha3.o
--- seq-range-array.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT seq-range-array.lo -MD -MP -MF .deps/seq-range-array.Tpo -c seq-range-array.c -o seq-range-array.o >/dev/null 2>&1
--- sha2.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT sha2.lo -MD -MP -MF .deps/sha2.Tpo -c sha2.c -o sha2.o >/dev/null 2>&1
--- sha3.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT sha3.lo -MD -MP -MF .deps/sha3.Tpo -c sha3.c -o sha3.o >/dev/null 2>&1
--- sha1.lo ---
mv -f .deps/sha1.Tpo .deps/sha1.Plo
--- sleep.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT sleep.lo -MD -MP -MF .deps/sleep.Tpo -c -o sleep.lo sleep.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT sleep.lo -MD -MP -MF .deps/sleep.Tpo -c sleep.c  -fPIC -DPIC -o .libs/sleep.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT sleep.lo -MD -MP -MF .deps/sleep.Tpo -c sleep.c -o sleep.o >/dev/null 2>&1
--- seq-range-array.lo ---
mv -f .deps/seq-range-array.Tpo .deps/seq-range-array.Plo
--- sort.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT sort.lo -MD -MP -MF .deps/sort.Tpo -c -o sort.lo sort.c
--- sha3.lo ---
mv -f .deps/sha3.Tpo .deps/sha3.Plo
--- stats-dist.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT stats-dist.lo -MD -MP -MF .deps/stats-dist.Tpo -c -o stats-dist.lo stats-dist.c
--- sleep.lo ---
mv -f .deps/sleep.Tpo .deps/sleep.Plo
--- str.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT str.lo -MD -MP -MF .deps/str.Tpo -c -o str.lo str.c
--- sha2.lo ---
mv -f .deps/sha2.Tpo .deps/sha2.Plo
--- str-find.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT str-find.lo -MD -MP -MF .deps/str-find.Tpo -c -o str-find.lo str-find.c
--- sort.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT sort.lo -MD -MP -MF .deps/sort.Tpo -c sort.c  -fPIC -DPIC -o .libs/sort.o
--- stats-dist.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT stats-dist.lo -MD -MP -MF .deps/stats-dist.Tpo -c stats-dist.c  -fPIC -DPIC -o .libs/stats-dist.o
--- str.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT str.lo -MD -MP -MF .deps/str.Tpo -c str.c  -fPIC -DPIC -o .libs/str.o
--- str-find.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT str-find.lo -MD -MP -MF .deps/str-find.Tpo -c str-find.c  -fPIC -DPIC -o .libs/str-find.o
--- sort.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT sort.lo -MD -MP -MF .deps/sort.Tpo -c sort.c -o sort.o >/dev/null 2>&1
--- stats-dist.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT stats-dist.lo -MD -MP -MF .deps/stats-dist.Tpo -c stats-dist.c -o stats-dist.o >/dev/null 2>&1
--- sort.lo ---
mv -f .deps/sort.Tpo .deps/sort.Plo
--- str-sanitize.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT str-sanitize.lo -MD -MP -MF .deps/str-sanitize.Tpo -c -o str-sanitize.lo str-sanitize.c
--- str.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT str.lo -MD -MP -MF .deps/str.Tpo -c str.c -o str.o >/dev/null 2>&1
--- str-sanitize.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT str-sanitize.lo -MD -MP -MF .deps/str-sanitize.Tpo -c str-sanitize.c  -fPIC -DPIC -o .libs/str-sanitize.o
--- str-find.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT str-find.lo -MD -MP -MF .deps/str-find.Tpo -c str-find.c -o str-find.o >/dev/null 2>&1
--- stats-dist.lo ---
mv -f .deps/stats-dist.Tpo .deps/stats-dist.Plo
--- str-table.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT str-table.lo -MD -MP -MF .deps/str-table.Tpo -c -o str-table.lo str-table.c
--- str.lo ---
mv -f .deps/str.Tpo .deps/str.Plo
--- strescape.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT strescape.lo -MD -MP -MF .deps/strescape.Tpo -c -o strescape.lo strescape.c
--- str-table.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT str-table.lo -MD -MP -MF .deps/str-table.Tpo -c str-table.c  -fPIC -DPIC -o .libs/str-table.o
--- str-sanitize.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT str-sanitize.lo -MD -MP -MF .deps/str-sanitize.Tpo -c str-sanitize.c -o str-sanitize.o >/dev/null 2>&1
--- strescape.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT strescape.lo -MD -MP -MF .deps/strescape.Tpo -c strescape.c  -fPIC -DPIC -o .libs/strescape.o
--- str-table.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT str-table.lo -MD -MP -MF .deps/str-table.Tpo -c str-table.c -o str-table.o >/dev/null 2>&1
--- str-sanitize.lo ---
mv -f .deps/str-sanitize.Tpo .deps/str-sanitize.Plo
--- strfuncs.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT strfuncs.lo -MD -MP -MF .deps/strfuncs.Tpo -c -o strfuncs.lo strfuncs.c
--- str-find.lo ---
mv -f .deps/str-find.Tpo .deps/str-find.Plo
--- strnum.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT strnum.lo -MD -MP -MF .deps/strnum.Tpo -c -o strnum.lo strnum.c
--- strfuncs.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT strfuncs.lo -MD -MP -MF .deps/strfuncs.Tpo -c strfuncs.c  -fPIC -DPIC -o .libs/strfuncs.o
--- str-table.lo ---
mv -f .deps/str-table.Tpo .deps/str-table.Plo
--- time-util.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT time-util.lo -MD -MP -MF .deps/time-util.Tpo -c -o time-util.lo time-util.c
--- strnum.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT strnum.lo -MD -MP -MF .deps/strnum.Tpo -c strnum.c  -fPIC -DPIC -o .libs/strnum.o
--- strescape.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT strescape.lo -MD -MP -MF .deps/strescape.Tpo -c strescape.c -o strescape.o >/dev/null 2>&1
--- time-util.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT time-util.lo -MD -MP -MF .deps/time-util.Tpo -c time-util.c  -fPIC -DPIC -o .libs/time-util.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT time-util.lo -MD -MP -MF .deps/time-util.Tpo -c time-util.c -o time-util.o >/dev/null 2>&1
--- strescape.lo ---
mv -f .deps/strescape.Tpo .deps/strescape.Plo
--- unix-socket-create.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT unix-socket-create.lo -MD -MP -MF .deps/unix-socket-create.Tpo -c -o unix-socket-create.lo unix-socket-create.c
--- time-util.lo ---
mv -f .deps/time-util.Tpo .deps/time-util.Plo
--- unlink-directory.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT unlink-directory.lo -MD -MP -MF .deps/unlink-directory.Tpo -c -o unlink-directory.lo unlink-directory.c
--- unix-socket-create.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT unix-socket-create.lo -MD -MP -MF .deps/unix-socket-create.Tpo -c unix-socket-create.c  -fPIC -DPIC -o .libs/unix-socket-create.o
--- unlink-directory.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT unlink-directory.lo -MD -MP -MF .deps/unlink-directory.Tpo -c unlink-directory.c  -fPIC -DPIC -o .libs/unlink-directory.o
--- unix-socket-create.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT unix-socket-create.lo -MD -MP -MF .deps/unix-socket-create.Tpo -c unix-socket-create.c -o unix-socket-create.o >/dev/null 2>&1
--- unlink-directory.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT unlink-directory.lo -MD -MP -MF .deps/unlink-directory.Tpo -c unlink-directory.c -o unlink-directory.o >/dev/null 2>&1
--- unix-socket-create.lo ---
mv -f .deps/unix-socket-create.Tpo .deps/unix-socket-create.Plo
--- unlink-old-files.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT unlink-old-files.lo -MD -MP -MF .deps/unlink-old-files.Tpo -c -o unlink-old-files.lo unlink-old-files.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT unlink-old-files.lo -MD -MP -MF .deps/unlink-old-files.Tpo -c unlink-old-files.c  -fPIC -DPIC -o .libs/unlink-old-files.o
--- unlink-directory.lo ---
mv -f .deps/unlink-directory.Tpo .deps/unlink-directory.Plo
--- unichar.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT unichar.lo -MD -MP -MF .deps/unichar.Tpo -c -o unichar.lo unichar.c
--- strfuncs.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT strfuncs.lo -MD -MP -MF .deps/strfuncs.Tpo -c strfuncs.c -o strfuncs.o >/dev/null 2>&1
--- unlink-old-files.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT unlink-old-files.lo -MD -MP -MF .deps/unlink-old-files.Tpo -c unlink-old-files.c -o unlink-old-files.o >/dev/null 2>&1
--- unichar.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT unichar.lo -MD -MP -MF .deps/unichar.Tpo -c unichar.c  -fPIC -DPIC -o .libs/unichar.o
--- strnum.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT strnum.lo -MD -MP -MF .deps/strnum.Tpo -c strnum.c -o strnum.o >/dev/null 2>&1
--- unlink-old-files.lo ---
mv -f .deps/unlink-old-files.Tpo .deps/unlink-old-files.Plo
--- uri-util.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT uri-util.lo -MD -MP -MF .deps/uri-util.Tpo -c -o uri-util.lo uri-util.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT uri-util.lo -MD -MP -MF .deps/uri-util.Tpo -c uri-util.c  -fPIC -DPIC -o .libs/uri-util.o
--- unichar.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT unichar.lo -MD -MP -MF .deps/unichar.Tpo -c unichar.c -o unichar.o >/dev/null 2>&1
--- strfuncs.lo ---
mv -f .deps/strfuncs.Tpo .deps/strfuncs.Plo
--- utc-offset.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT utc-offset.lo -MD -MP -MF .deps/utc-offset.Tpo -c -o utc-offset.lo utc-offset.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT utc-offset.lo -MD -MP -MF .deps/utc-offset.Tpo -c utc-offset.c  -fPIC -DPIC -o .libs/utc-offset.o
--- strnum.lo ---
mv -f .deps/strnum.Tpo .deps/strnum.Plo
--- utc-mktime.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT utc-mktime.lo -MD -MP -MF .deps/utc-mktime.Tpo -c -o utc-mktime.lo utc-mktime.c
--- utc-offset.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT utc-offset.lo -MD -MP -MF .deps/utc-offset.Tpo -c utc-offset.c -o utc-offset.o >/dev/null 2>&1
--- utc-mktime.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT utc-mktime.lo -MD -MP -MF .deps/utc-mktime.Tpo -c utc-mktime.c  -fPIC -DPIC -o .libs/utc-mktime.o
--- unichar.lo ---
mv -f .deps/unichar.Tpo .deps/unichar.Plo
--- var-expand.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT var-expand.lo -MD -MP -MF .deps/var-expand.Tpo -c -o var-expand.lo var-expand.c
--- utc-offset.lo ---
mv -f .deps/utc-offset.Tpo .deps/utc-offset.Plo
--- var-expand-if.lo ---
--- var-expand.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT var-expand.lo -MD -MP -MF .deps/var-expand.Tpo -c var-expand.c  -fPIC -DPIC -o .libs/var-expand.o
--- var-expand-if.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT var-expand-if.lo -MD -MP -MF .deps/var-expand-if.Tpo -c -o var-expand-if.lo var-expand-if.c
--- utc-mktime.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT utc-mktime.lo -MD -MP -MF .deps/utc-mktime.Tpo -c utc-mktime.c -o utc-mktime.o >/dev/null 2>&1
--- var-expand-if.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT var-expand-if.lo -MD -MP -MF .deps/var-expand-if.Tpo -c var-expand-if.c  -fPIC -DPIC -o .libs/var-expand-if.o
--- uri-util.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT uri-util.lo -MD -MP -MF .deps/uri-util.Tpo -c uri-util.c -o uri-util.o >/dev/null 2>&1
--- utc-mktime.lo ---
mv -f .deps/utc-mktime.Tpo .deps/utc-mktime.Plo
--- wildcard-match.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT wildcard-match.lo -MD -MP -MF .deps/wildcard-match.Tpo -c -o wildcard-match.lo wildcard-match.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT wildcard-match.lo -MD -MP -MF .deps/wildcard-match.Tpo -c wildcard-match.c  -fPIC -DPIC -o .libs/wildcard-match.o
--- var-expand-if.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT var-expand-if.lo -MD -MP -MF .deps/var-expand-if.Tpo -c var-expand-if.c -o var-expand-if.o >/dev/null 2>&1
--- wildcard-match.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT wildcard-match.lo -MD -MP -MF .deps/wildcard-match.Tpo -c wildcard-match.c -o wildcard-match.o >/dev/null 2>&1
mv -f .deps/wildcard-match.Tpo .deps/wildcard-match.Plo
--- write-full.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT write-full.lo -MD -MP -MF .deps/write-full.Tpo -c -o write-full.lo write-full.c
--- var-expand-if.lo ---
mv -f .deps/var-expand-if.Tpo .deps/var-expand-if.Plo
--- event-filter-lexer.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT event-filter-lexer.lo -MD -MP -MF .deps/event-filter-lexer.Tpo -c -o event-filter-lexer.lo event-filter-lexer.c
--- write-full.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT write-full.lo -MD -MP -MF .deps/write-full.Tpo -c write-full.c  -fPIC -DPIC -o .libs/write-full.o
--- event-filter-lexer.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT event-filter-lexer.lo -MD -MP -MF .deps/event-filter-lexer.Tpo -c event-filter-lexer.c  -fPIC -DPIC -o .libs/event-filter-lexer.o
--- var-expand.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT var-expand.lo -MD -MP -MF .deps/var-expand.Tpo -c var-expand.c -o var-expand.o >/dev/null 2>&1
--- write-full.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT write-full.lo -MD -MP -MF .deps/write-full.Tpo -c write-full.c -o write-full.o >/dev/null 2>&1
mv -f .deps/write-full.Tpo .deps/write-full.Plo
--- event-filter-parser.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT event-filter-parser.lo -MD -MP -MF .deps/event-filter-parser.Tpo -c -o event-filter-parser.lo event-filter-parser.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT event-filter-parser.lo -MD -MP -MF .deps/event-filter-parser.Tpo -c event-filter-parser.c  -fPIC -DPIC -o .libs/event-filter-parser.o
--- uri-util.lo ---
mv -f .deps/uri-util.Tpo .deps/uri-util.Plo
--- event-filter-parser.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT event-filter-parser.lo -MD -MP -MF .deps/event-filter-parser.Tpo -c event-filter-parser.c -o event-filter-parser.o >/dev/null 2>&1
--- event-filter-lexer.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT event-filter-lexer.lo -MD -MP -MF .deps/event-filter-lexer.Tpo -c event-filter-lexer.c -o event-filter-lexer.o >/dev/null 2>&1
--- var-expand.lo ---
mv -f .deps/var-expand.Tpo .deps/var-expand.Plo
--- event-filter-parser.lo ---
mv -f .deps/event-filter-parser.Tpo .deps/event-filter-parser.Plo
--- event-filter-lexer.lo ---
mv -f .deps/event-filter-lexer.Tpo .deps/event-filter-lexer.Plo
--- liblib.la ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o liblib.la  array.lo aqueue.lo askpass.lo  backtrace-string.lo base32.lo base64.lo bits.lo  bsearch-insert-pos.lo buffer.lo buffer-istream.lo  child-wait.lo compat.lo connection.lo cpu-limit.lo crc32.lo  data-stack.lo eacces-error.lo env-util.lo event-filter.lo  event-filter-lexer.lo event-filter-parser.lo event-log.lo  execv-const.lo failures.lo fd-util.lo fdatasync-path.lo  fdpass.lo file-cache.lo file-create-locked.lo file-copy.lo  file-dotlock.lo file-lock.lo file-set-size.lo guid.lo hash.lo  hash-format.lo hash-method.lo hash2.lo hex-binary.lo  hex-dec.lo hmac.lo hmac-cram-md5.lo home-expand.lo  hook-build.lo hostpid.lo imem.lo ipwd.lo iostream.lo  iostream-pump.lo iostream-proxy.lo iostream-rawlog.lo  iostream-temp.lo iso8601-date.lo istream.lo  istream-base64-decoder.lo istream-base64-encoder.lo  istream-callback.lo istream-chain.lo istream-concat.lo  istream-crlf.lo istream-data.lo istream-failure-at.lo  istream-file.lo istream-hash.lo istream-jsonstr.lo  istream-limit.lo istream-multiplex.lo istream-rawlog.lo  istream-seekable.lo istream-sized.lo istream-tee.lo  istream-try.lo istream-timeout.lo istream-unix.lo ioloop.lo  ioloop-iolist.lo ioloop-notify-none.lo ioloop-notify-fd.lo  ioloop-notify-inotify.lo ioloop-notify-kqueue.lo  ioloop-poll.lo ioloop-select.lo ioloop-epoll.lo  ioloop-kqueue.lo json-parser.lo json-tree.lo lib.lo  lib-event.lo lib-signals.lo log-throttle.lo md4.lo md5.lo  memarea.lo mempool.lo mempool-allocfree.lo  mempool-alloconly.lo mempool-datastack.lo mempool-system.lo  mempool-unsafe-datastack.lo mkdir-parents.lo mmap-anon.lo  mmap-util.lo module-dir.lo mountpoint.lo net.lo  nfs-workarounds.lo numpack.lo ostream.lo ostream-buffer.lo  ostream-failure-at.lo ostream-file.lo ostream-hash.lo  ostream-multiplex.lo ostream-null.lo ostream-rawlog.lo  ostream-unix.lo ostream-wrapper.lo path-util.lo pkcs5.lo  primes.lo printf-format-fix.lo process-stat.lo  process-title.lo priorityq.lo randgen.lo rand.lo read-full.lo  restrict-access.lo restrict-process-size.lo safe-memset.lo  safe-mkdir.lo safe-mkstemp.lo sendfile-util.lo  seq-range-array.lo seq-set-builder.lo sha1.lo sha2.lo sha3.lo  sleep.lo sort.lo stats-dist.lo str.lo str-find.lo  str-sanitize.lo str-table.lo strescape.lo strfuncs.lo  strnum.lo time-util.lo unix-socket-create.lo  unlink-directory.lo unlink-old-files.lo unichar.lo uri-util.lo  utc-offset.lo utc-mktime.lo var-expand.lo var-expand-if.lo  wildcard-match.lo write-full.lo  
libtool: link: ar cru .libs/liblib.a .libs/array.o .libs/aqueue.o .libs/askpass.o .libs/backtrace-string.o .libs/base32.o .libs/base64.o .libs/bits.o .libs/bsearch-insert-pos.o .libs/buffer.o .libs/buffer-istream.o .libs/child-wait.o .libs/compat.o .libs/connection.o .libs/cpu-limit.o .libs/crc32.o .libs/data-stack.o .libs/eacces-error.o .libs/env-util.o .libs/event-filter.o .libs/event-filter-lexer.o .libs/event-filter-parser.o .libs/event-log.o .libs/execv-const.o .libs/failures.o .libs/fd-util.o .libs/fdatasync-path.o .libs/fdpass.o .libs/file-cache.o .libs/file-create-locked.o .libs/file-copy.o .libs/file-dotlock.o .libs/file-lock.o .libs/file-set-size.o .libs/guid.o .libs/hash.o .libs/hash-format.o .libs/hash-method.o .libs/hash2.o .libs/hex-binary.o .libs/hex-dec.o .libs/hmac.o .libs/hmac-cram-md5.o .libs/home-expand.o .libs/hook-build.o .libs/hostpid.o .libs/imem.o .libs/ipwd.o .libs/iostream.o .libs/iostream-pump.o .libs/iostream-proxy.o .libs/iostream-rawlog.o .libs/iostream-temp.o .libs/iso8601-date.o .libs/istream.o .libs/istream-base64-decoder.o .libs/istream-base64-encoder.o .libs/istream-callback.o .libs/istream-chain.o .libs/istream-concat.o .libs/istream-crlf.o .libs/istream-data.o .libs/istream-failure-at.o .libs/istream-file.o .libs/istream-hash.o .libs/istream-jsonstr.o .libs/istream-limit.o .libs/istream-multiplex.o .libs/istream-rawlog.o .libs/istream-seekable.o .libs/istream-sized.o .libs/istream-tee.o .libs/istream-try.o .libs/istream-timeout.o .libs/istream-unix.o .libs/ioloop.o .libs/ioloop-iolist.o .libs/ioloop-notify-none.o .libs/ioloop-notify-fd.o .libs/ioloop-notify-inotify.o .libs/ioloop-notify-kqueue.o .libs/ioloop-poll.o .libs/ioloop-select.o .libs/ioloop-epoll.o .libs/ioloop-kqueue.o .libs/json-parser.o .libs/json-tree.o .libs/lib.o .libs/lib-event.o .libs/lib-signals.o .libs/log-throttle.o .libs/md4.o .libs/md5.o .libs/memarea.o .libs/mempool.o .libs/mempool-allocfree.o .libs/mempool-alloconly.o .libs/mempool-datastack.o .libs/mempool-system.o .libs/mempool-unsafe-datastack.o .libs/mkdir-parents.o .libs/mmap-anon.o .libs/mmap-util.o .libs/module-dir.o .libs/mountpoint.o .libs/net.o .libs/nfs-workarounds.o .libs/numpack.o .libs/ostream.o .libs/ostream-buffer.o .libs/ostream-failure-at.o .libs/ostream-file.o .libs/ostream-hash.o .libs/ostream-multiplex.o .libs/ostream-null.o .libs/ostream-rawlog.o .libs/ostream-unix.o .libs/ostream-wrapper.o .libs/path-util.o .libs/pkcs5.o .libs/primes.o .libs/printf-format-fix.o .libs/process-stat.o .libs/process-title.o .libs/priorityq.o .libs/randgen.o .libs/rand.o .libs/read-full.o .libs/restrict-access.o .libs/restrict-process-size.o .libs/safe-memset.o .libs/safe-mkdir.o .libs/safe-mkstemp.o .libs/sendfile-util.o .libs/seq-range-array.o .libs/seq-set-builder.o .libs/sha1.o .libs/sha2.o .libs/sha3.o .libs/sleep.o .libs/sort.o .libs/stats-dist.o .libs/str.o .libs/str-find.o .libs/str-sanitize.o .libs/str-table.o .libs/strescape.o .libs/strfuncs.o .libs/strnum.o .libs/time-util.o .libs/unix-socket-create.o .libs/unlink-directory.o .libs/unlink-old-files.o .libs/unichar.o .libs/uri-util.o .libs/utc-offset.o .libs/utc-mktime.o .libs/var-expand.o .libs/var-expand-if.o .libs/wildcard-match.o .libs/write-full.o 
libtool: link: ranlib .libs/liblib.a
libtool: link: ( cd ".libs" && rm -f "liblib.la" && ln -s "../liblib.la" "liblib.la" )
--- test-lib ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o test-lib test_lib-test-lib.o  test_lib-test-array.o test_lib-test-aqueue.o  test_lib-test-backtrace.o  test_lib-test-base32.o test_lib-test-base64.o  test_lib-test-bits.o  test_lib-test-bsearch-insert-pos.o  test_lib-test-buffer.o  test_lib-test-buffer-istream.o  test_lib-test-byteorder.o  test_lib-test-connection.o  test_lib-test-crc32.o  test_lib-test-cpu-limit.o  test_lib-test-data-stack.o  test_lib-test-env-util.o  test_lib-test-event-category-register.o  test_lib-test-event-filter.o  test_lib-test-event-filter-expr.o  test_lib-test-event-filter-merge.o  test_lib-test-event-filter-parser.o  test_lib-test-event-flatten.o  test_lib-test-event-log.o  test_lib-test-failures.o  test_lib-test-fd-util.o  test_lib-test-file-cache.o  test_lib-test-file-create-locked.o  test_lib-test-guid.o test_lib-test-hash.o  test_lib-test-hash-format.o  test_lib-test-hash-method.o  test_lib-test-hmac.o  test_lib-test-hex-binary.o  test_lib-test-imem.o test_lib-test-ioloop.o  test_lib-test-iso8601-date.o  test_lib-test-iostream-pump.o  test_lib-test-iostream-proxy.o  test_lib-test-iostream-temp.o  test_lib-test-istream.o  test_lib-test-istream-base64-decoder.o  test_lib-test-istream-base64-encoder.o  test_lib-test-istream-chain.o  test_lib-test-istream-concat.o  test_lib-test-istream-crlf.o  test_lib-test-istream-failure-at.o  test_lib-test-istream-jsonstr.o  test_lib-test-istream-multiplex.o  test_lib-test-istream-seekable.o  test_lib-test-istream-sized.o  test_lib-test-istream-tee.o  test_lib-test-istream-try.o  test_lib-test-istream-unix.o  test_lib-test-json-parser.o  test_lib-test-json-tree.o  test_lib-test-lib-event.o  test_lib-test-lib-signals.o  test_lib-test-llist.o  test_lib-test-log-throttle.o  test_lib-test-macros.o  test_lib-test-malloc-overflow.o  test_lib-test-memarea.o  test_lib-test-mempool.o  test_lib-test-mempool-allocfree.o  test_lib-test-mempool-alloconly.o  test_lib-test-pkcs5.o test_lib-test-net.o  test_lib-test-numpack.o  test_lib-test-ostream-buffer.o  test_lib-test-ostream-failure-at.o  test_lib-test-ostream-file.o  test_lib-test-ostream-multiplex.o  test_lib-test-multiplex.o  test_lib-test-path-util.o  test_lib-test-primes.o  test_lib-test-printf-format-fix.o  test_lib-test-priorityq.o  test_lib-test-random.o  test_lib-test-seq-range-array.o  test_lib-test-seq-set-builder.o  test_lib-test-stats-dist.o test_lib-test-str.o  test_lib-test-strescape.o  test_lib-test-strfuncs.o  test_lib-test-strnum.o  test_lib-test-str-find.o  test_lib-test-str-sanitize.o  test_lib-test-str-table.o  test_lib-test-time-util.o  test_lib-test-unichar.o  test_lib-test-utc-mktime.o test_lib-test-uri.o  test_lib-test-var-expand.o  test_lib-test-wildcard-match.o ../lib-test/libtest.la  liblib.la -lm 
libtool: link: cc -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o test-lib test_lib-test-lib.o test_lib-test-array.o test_lib-test-aqueue.o test_lib-test-backtrace.o test_lib-test-base32.o test_lib-test-base64.o test_lib-test-bits.o test_lib-test-bsearch-insert-pos.o test_lib-test-buffer.o test_lib-test-buffer-istream.o test_lib-test-byteorder.o test_lib-test-connection.o test_lib-test-crc32.o test_lib-test-cpu-limit.o test_lib-test-data-stack.o test_lib-test-env-util.o test_lib-test-event-category-register.o test_lib-test-event-filter.o test_lib-test-event-filter-expr.o test_lib-test-event-filter-merge.o test_lib-test-event-filter-parser.o test_lib-test-event-flatten.o test_lib-test-event-log.o test_lib-test-failures.o test_lib-test-fd-util.o test_lib-test-file-cache.o test_lib-test-file-create-locked.o test_lib-test-guid.o test_lib-test-hash.o test_lib-test-hash-format.o test_lib-test-hash-method.o test_lib-test-hmac.o test_lib-test-hex-binary.o test_lib-test-imem.o test_lib-test-ioloop.o test_lib-test-iso8601-date.o test_lib-test-iostream-pump.o test_lib-test-iostream-proxy.o test_lib-test-iostream-temp.o test_lib-test-istream.o test_lib-test-istream-base64-decoder.o test_lib-test-istream-base64-encoder.o test_lib-test-istream-chain.o test_lib-test-istream-concat.o test_lib-test-istream-crlf.o test_lib-test-istream-failure-at.o test_lib-test-istream-jsonstr.o test_lib-test-istream-multiplex.o test_lib-test-istream-seekable.o test_lib-test-istream-sized.o test_lib-test-istream-tee.o test_lib-test-istream-try.o test_lib-test-istream-unix.o test_lib-test-json-parser.o test_lib-test-json-tree.o test_lib-test-lib-event.o test_lib-test-lib-signals.o test_lib-test-llist.o test_lib-test-log-throttle.o test_lib-test-macros.o test_lib-test-malloc-overflow.o test_lib-test-memarea.o test_lib-test-mempool.o test_lib-test-mempool-allocfree.o test_lib-test-mempool-alloconly.o test_lib-test-pkcs5.o test_lib-test-net.o test_lib-test-numpack.o test_lib-test-ostream-buffer.o test_lib-test-ostream-failure-at.o test_lib-test-ostream-file.o test_lib-test-ostream-multiplex.o test_lib-test-multiplex.o test_lib-test-path-util.o test_lib-test-primes.o test_lib-test-printf-format-fix.o test_lib-test-priorityq.o test_lib-test-random.o test_lib-test-seq-range-array.o test_lib-test-seq-set-builder.o test_lib-test-stats-dist.o test_lib-test-str.o test_lib-test-strescape.o test_lib-test-strfuncs.o test_lib-test-strnum.o test_lib-test-str-find.o test_lib-test-str-sanitize.o test_lib-test-str-table.o test_lib-test-time-util.o test_lib-test-unichar.o test_lib-test-utc-mktime.o test_lib-test-uri.o test_lib-test-var-expand.o test_lib-test-wildcard-match.o  -L/usr/local/lib ../lib-test/.libs/libtest.a ./.libs/liblib.a -lm
Making all in lib-settings
--- test-settings-parser.o ---
--- test-settings.o ---
--- settings.lo ---
--- settings-parser.lo ---
--- test-settings-parser.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-settings-parser.o -MD -MP -MF .deps/test-settings-parser.Tpo -c -o test-settings-parser.o test-settings-parser.c
--- test-settings.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-settings.o -MD -MP -MF .deps/test-settings.Tpo -c -o test-settings.o test-settings.c
--- settings.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT settings.lo -MD -MP -MF .deps/settings.Tpo -c -o settings.lo settings.c
--- settings-parser.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT settings-parser.lo -MD -MP -MF .deps/settings-parser.Tpo -c -o settings-parser.lo settings-parser.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT settings-parser.lo -MD -MP -MF .deps/settings-parser.Tpo -c settings-parser.c  -fPIC -DPIC -o .libs/settings-parser.o
--- settings.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT settings.lo -MD -MP -MF .deps/settings.Tpo -c settings.c  -fPIC -DPIC -o .libs/settings.o
--- test-settings.o ---
mv -f .deps/test-settings.Tpo .deps/test-settings.Po
--- test-settings-parser.o ---
mv -f .deps/test-settings-parser.Tpo .deps/test-settings-parser.Po
--- settings.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT settings.lo -MD -MP -MF .deps/settings.Tpo -c settings.c -o settings.o >/dev/null 2>&1
mv -f .deps/settings.Tpo .deps/settings.Plo
--- settings-parser.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT settings-parser.lo -MD -MP -MF .deps/settings-parser.Tpo -c settings-parser.c -o settings-parser.o >/dev/null 2>&1
mv -f .deps/settings-parser.Tpo .deps/settings-parser.Plo
--- libsettings.la ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o libsettings.la  settings.lo settings-parser.lo  
libtool: link: ar cru .libs/libsettings.a .libs/settings.o .libs/settings-parser.o 
libtool: link: ranlib .libs/libsettings.a
libtool: link: ( cd ".libs" && rm -f "libsettings.la" && ln -s "../libsettings.la" "libsettings.la" )
--- test-settings ---
--- test-settings-parser ---
--- test-settings ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o test-settings test-settings.o libsettings.la  ../lib-test/libtest.la  ../lib/liblib.la 
--- test-settings-parser ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o test-settings-parser test-settings-parser.o libsettings.la  ../lib-test/libtest.la  ../lib/liblib.la 
--- test-settings ---
libtool: link: cc -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o test-settings test-settings.o  -L/usr/local/lib ./.libs/libsettings.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a
--- test-settings-parser ---
libtool: link: cc -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o test-settings-parser test-settings-parser.o  -L/usr/local/lib ./.libs/libsettings.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a
Making all in lib-auth
--- test-auth-master.o ---
--- auth-client.lo ---
--- auth-client-request.lo ---
--- auth-client-connection.lo ---
--- test-auth-master.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-master  -I../../src/lib-test  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-auth-master.o -MD -MP -MF .deps/test-auth-master.Tpo -c -o test-auth-master.o test-auth-master.c
--- auth-client.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-master  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT auth-client.lo -MD -MP -MF .deps/auth-client.Tpo -c -o auth-client.lo auth-client.c
--- auth-client-connection.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-master  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT auth-client-connection.lo -MD -MP -MF .deps/auth-client-connection.Tpo -c -o auth-client-connection.lo auth-client-connection.c
--- auth-client-request.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-master  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT auth-client-request.lo -MD -MP -MF .deps/auth-client-request.Tpo -c -o auth-client-request.lo auth-client-request.c
--- auth-client.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-master -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT auth-client.lo -MD -MP -MF .deps/auth-client.Tpo -c auth-client.c  -fPIC -DPIC -o .libs/auth-client.o
--- auth-client-connection.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-master -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT auth-client-connection.lo -MD -MP -MF .deps/auth-client-connection.Tpo -c auth-client-connection.c  -fPIC -DPIC -o .libs/auth-client-connection.o
--- auth-client-request.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-master -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT auth-client-request.lo -MD -MP -MF .deps/auth-client-request.Tpo -c auth-client-request.c  -fPIC -DPIC -o .libs/auth-client-request.o
--- test-auth-master.o ---
mv -f .deps/test-auth-master.Tpo .deps/test-auth-master.Po
--- auth-master.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-master  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT auth-master.lo -MD -MP -MF .deps/auth-master.Tpo -c -o auth-master.lo auth-master.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-master -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT auth-master.lo -MD -MP -MF .deps/auth-master.Tpo -c auth-master.c  -fPIC -DPIC -o .libs/auth-master.o
--- auth-client.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-master -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT auth-client.lo -MD -MP -MF .deps/auth-client.Tpo -c auth-client.c -o auth-client.o >/dev/null 2>&1
--- auth-client-request.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-master -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT auth-client-request.lo -MD -MP -MF .deps/auth-client-request.Tpo -c auth-client-request.c -o auth-client-request.o >/dev/null 2>&1
--- auth-client.lo ---
mv -f .deps/auth-client.Tpo .deps/auth-client.Plo
--- auth-client-connection.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-master -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT auth-client-connection.lo -MD -MP -MF .deps/auth-client-connection.Tpo -c auth-client-connection.c -o auth-client-connection.o >/dev/null 2>&1
--- auth-client-request.lo ---
mv -f .deps/auth-client-request.Tpo .deps/auth-client-request.Plo
--- auth-client-connection.lo ---
mv -f .deps/auth-client-connection.Tpo .deps/auth-client-connection.Plo
--- auth-master.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-master -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT auth-master.lo -MD -MP -MF .deps/auth-master.Tpo -c auth-master.c -o auth-master.o >/dev/null 2>&1
mv -f .deps/auth-master.Tpo .deps/auth-master.Plo
--- libauth.la ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o libauth.la  auth-client.lo auth-client-request.lo  auth-client-connection.lo auth-master.lo  
libtool: link: ar cru .libs/libauth.a .libs/auth-client.o .libs/auth-client-request.o .libs/auth-client-connection.o .libs/auth-master.o 
libtool: link: ranlib .libs/libauth.a
libtool: link: ( cd ".libs" && rm -f "libauth.la" && ln -s "../libauth.la" "libauth.la" )
--- test-auth-master ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o test-auth-master test-auth-master.o libauth.la  ../lib-test/libtest.la  ../lib/liblib.la  -export-dynamic 
libtool: link: cc -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o test-auth-master test-auth-master.o -Wl,--export-dynamic  -L/usr/local/lib ./.libs/libauth.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a
Making all in lib-dns
--- test_dns_util-test-dns-util.o ---
--- dns-lookup.lo ---
--- dns-util.lo ---
--- test_dns_util-test-dns-util.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -I../../src/lib  -I../../src/lib-test -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_dns_util-test-dns-util.o -MD -MP -MF .deps/test_dns_util-test-dns-util.Tpo -c -o test_dns_util-test-dns-util.o `test -f 'test-dns-util.c' || echo './'`test-dns-util.c
--- dns-lookup.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dns-lookup.lo -MD -MP -MF .deps/dns-lookup.Tpo -c -o dns-lookup.lo dns-lookup.c
--- dns-util.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dns-util.lo -MD -MP -MF .deps/dns-util.Tpo -c -o dns-util.lo dns-util.c
--- dns-lookup.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dns-lookup.lo -MD -MP -MF .deps/dns-lookup.Tpo -c dns-lookup.c  -fPIC -DPIC -o .libs/dns-lookup.o
--- dns-util.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dns-util.lo -MD -MP -MF .deps/dns-util.Tpo -c dns-util.c  -fPIC -DPIC -o .libs/dns-util.o
--- test_dns_util-test-dns-util.o ---
mv -f .deps/test_dns_util-test-dns-util.Tpo .deps/test_dns_util-test-dns-util.Po
--- dns-util.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dns-util.lo -MD -MP -MF .deps/dns-util.Tpo -c dns-util.c -o dns-util.o >/dev/null 2>&1
--- dns-lookup.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dns-lookup.lo -MD -MP -MF .deps/dns-lookup.Tpo -c dns-lookup.c -o dns-lookup.o >/dev/null 2>&1
--- dns-util.lo ---
mv -f .deps/dns-util.Tpo .deps/dns-util.Plo
--- dns-lookup.lo ---
mv -f .deps/dns-lookup.Tpo .deps/dns-lookup.Plo
--- libdns.la ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o libdns.la  dns-lookup.lo dns-util.lo  
libtool: link: ar cru .libs/libdns.a .libs/dns-lookup.o .libs/dns-util.o 
libtool: link: ranlib .libs/libdns.a
libtool: link: ( cd ".libs" && rm -f "libdns.la" && ln -s "../libdns.la" "libdns.la" )
--- test-dns-util ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc -I../../src/lib  -I../../src/lib-test  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include  -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o test-dns-util test_dns_util-test-dns-util.o libdns.la   ../lib-test/libtest.la  ../lib/liblib.la 
libtool: link: cc -I../../src/lib -I../../src/lib-test -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o test-dns-util test_dns_util-test-dns-util.o  -L/usr/local/lib ./.libs/libdns.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a
Making all in lib-master
--- test-master-service-settings-cache.o ---
--- test-event-stats.o ---
--- anvil-client.lo ---
--- ipc-client.lo ---
--- test-master-service-settings-cache.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-dns  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-ssl-iostream  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-master-service-settings-cache.o -MD -MP -MF .deps/test-master-service-settings-cache.Tpo -c -o test-master-service-settings-cache.o test-master-service-settings-cache.c
--- test-event-stats.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-dns  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-ssl-iostream  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-event-stats.o -MD -MP -MF .deps/test-event-stats.Tpo -c -o test-event-stats.o test-event-stats.c
--- anvil-client.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-dns  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-ssl-iostream  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/dovecot"\"  -DBINDIR=\""/usr/local/bin"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT anvil-client.lo -MD -MP -MF .deps/anvil-client.Tpo -c -o anvil-client.lo anvil-client.c
--- ipc-client.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-dns  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-ssl-iostream  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/dovecot"\"  -DBINDIR=\""/usr/local/bin"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ipc-client.lo -MD -MP -MF .deps/ipc-client.Tpo -c -o ipc-client.lo ipc-client.c
--- anvil-client.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-dns -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-ssl-iostream -DPKG_RUNDIR=\"/var/run/dovecot\" -DPKG_STATEDIR=\"/var/db/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -DBINDIR=\"/usr/local/bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT anvil-client.lo -MD -MP -MF .deps/anvil-client.Tpo -c anvil-client.c  -fPIC -DPIC -o .libs/anvil-client.o
--- ipc-client.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-dns -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-ssl-iostream -DPKG_RUNDIR=\"/var/run/dovecot\" -DPKG_STATEDIR=\"/var/db/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -DBINDIR=\"/usr/local/bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ipc-client.lo -MD -MP -MF .deps/ipc-client.Tpo -c ipc-client.c  -fPIC -DPIC -o .libs/ipc-client.o
--- test-master-service-settings-cache.o ---
mv -f .deps/test-master-service-settings-cache.Tpo .deps/test-master-service-settings-cache.Po
--- ipc-server.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-dns  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-ssl-iostream  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/dovecot"\"  -DBINDIR=\""/usr/local/bin"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ipc-server.lo -MD -MP -MF .deps/ipc-server.Tpo -c -o ipc-server.lo ipc-server.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-dns -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-ssl-iostream -DPKG_RUNDIR=\"/var/run/dovecot\" -DPKG_STATEDIR=\"/var/db/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -DBINDIR=\"/usr/local/bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ipc-server.lo -MD -MP -MF .deps/ipc-server.Tpo -c ipc-server.c  -fPIC -DPIC -o .libs/ipc-server.o
--- ipc-client.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-dns -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-ssl-iostream -DPKG_RUNDIR=\"/var/run/dovecot\" -DPKG_STATEDIR=\"/var/db/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -DBINDIR=\"/usr/local/bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ipc-client.lo -MD -MP -MF .deps/ipc-client.Tpo -c ipc-client.c -o ipc-client.o >/dev/null 2>&1
--- test-event-stats.o ---
mv -f .deps/test-event-stats.Tpo .deps/test-event-stats.Po
--- anvil-client.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-dns -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-ssl-iostream -DPKG_RUNDIR=\"/var/run/dovecot\" -DPKG_STATEDIR=\"/var/db/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -DBINDIR=\"/usr/local/bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT anvil-client.lo -MD -MP -MF .deps/anvil-client.Tpo -c anvil-client.c -o anvil-client.o >/dev/null 2>&1
--- master-auth.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-dns  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-ssl-iostream  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/dovecot"\"  -DBINDIR=\""/usr/local/bin"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT master-auth.lo -MD -MP -MF .deps/master-auth.Tpo -c -o master-auth.lo master-auth.c
--- ipc-server.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-dns -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-ssl-iostream -DPKG_RUNDIR=\"/var/run/dovecot\" -DPKG_STATEDIR=\"/var/db/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -DBINDIR=\"/usr/local/bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ipc-server.lo -MD -MP -MF .deps/ipc-server.Tpo -c ipc-server.c -o ipc-server.o >/dev/null 2>&1
--- master-auth.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-dns -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-ssl-iostream -DPKG_RUNDIR=\"/var/run/dovecot\" -DPKG_STATEDIR=\"/var/db/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -DBINDIR=\"/usr/local/bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT master-auth.lo -MD -MP -MF .deps/master-auth.Tpo -c master-auth.c  -fPIC -DPIC -o .libs/master-auth.o
--- ipc-client.lo ---
mv -f .deps/ipc-client.Tpo .deps/ipc-client.Plo
--- master-instance.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-dns  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-ssl-iostream  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/dovecot"\"  -DBINDIR=\""/usr/local/bin"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT master-instance.lo -MD -MP -MF .deps/master-instance.Tpo -c -o master-instance.lo master-instance.c
--- anvil-client.lo ---
mv -f .deps/anvil-client.Tpo .deps/anvil-client.Plo
--- master-login.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-dns  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-ssl-iostream  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/dovecot"\"  -DBINDIR=\""/usr/local/bin"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT master-login.lo -MD -MP -MF .deps/master-login.Tpo -c -o master-login.lo master-login.c
--- ipc-server.lo ---
mv -f .deps/ipc-server.Tpo .deps/ipc-server.Plo
--- master-login-auth.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-dns  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-ssl-iostream  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/dovecot"\"  -DBINDIR=\""/usr/local/bin"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT master-login-auth.lo -MD -MP -MF .deps/master-login-auth.Tpo -c -o master-login-auth.lo master-login-auth.c
--- master-instance.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-dns -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-ssl-iostream -DPKG_RUNDIR=\"/var/run/dovecot\" -DPKG_STATEDIR=\"/var/db/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -DBINDIR=\"/usr/local/bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT master-instance.lo -MD -MP -MF .deps/master-instance.Tpo -c master-instance.c  -fPIC -DPIC -o .libs/master-instance.o
--- master-auth.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-dns -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-ssl-iostream -DPKG_RUNDIR=\"/var/run/dovecot\" -DPKG_STATEDIR=\"/var/db/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -DBINDIR=\"/usr/local/bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT master-auth.lo -MD -MP -MF .deps/master-auth.Tpo -c master-auth.c -o master-auth.o >/dev/null 2>&1
--- master-login.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-dns -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-ssl-iostream -DPKG_RUNDIR=\"/var/run/dovecot\" -DPKG_STATEDIR=\"/var/db/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -DBINDIR=\"/usr/local/bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT master-login.lo -MD -MP -MF .deps/master-login.Tpo -c master-login.c  -fPIC -DPIC -o .libs/master-login.o
--- master-login-auth.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-dns -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-ssl-iostream -DPKG_RUNDIR=\"/var/run/dovecot\" -DPKG_STATEDIR=\"/var/db/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -DBINDIR=\"/usr/local/bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT master-login-auth.lo -MD -MP -MF .deps/master-login-auth.Tpo -c master-login-auth.c  -fPIC -DPIC -o .libs/master-login-auth.o
--- master-auth.lo ---
mv -f .deps/master-auth.Tpo .deps/master-auth.Plo
--- master-service.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-dns  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-ssl-iostream  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/dovecot"\"  -DBINDIR=\""/usr/local/bin"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT master-service.lo -MD -MP -MF .deps/master-service.Tpo -c -o master-service.lo master-service.c
--- master-instance.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-dns -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-ssl-iostream -DPKG_RUNDIR=\"/var/run/dovecot\" -DPKG_STATEDIR=\"/var/db/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -DBINDIR=\"/usr/local/bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT master-instance.lo -MD -MP -MF .deps/master-instance.Tpo -c master-instance.c -o master-instance.o >/dev/null 2>&1
--- master-service.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-dns -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-ssl-iostream -DPKG_RUNDIR=\"/var/run/dovecot\" -DPKG_STATEDIR=\"/var/db/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -DBINDIR=\"/usr/local/bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT master-service.lo -MD -MP -MF .deps/master-service.Tpo -c master-service.c  -fPIC -DPIC -o .libs/master-service.o
--- master-login.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-dns -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-ssl-iostream -DPKG_RUNDIR=\"/var/run/dovecot\" -DPKG_STATEDIR=\"/var/db/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -DBINDIR=\"/usr/local/bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT master-login.lo -MD -MP -MF .deps/master-login.Tpo -c master-login.c -o master-login.o >/dev/null 2>&1
--- master-login-auth.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-dns -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-ssl-iostream -DPKG_RUNDIR=\"/var/run/dovecot\" -DPKG_STATEDIR=\"/var/db/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -DBINDIR=\"/usr/local/bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT master-login-auth.lo -MD -MP -MF .deps/master-login-auth.Tpo -c master-login-auth.c -o master-login-auth.o >/dev/null 2>&1
--- master-instance.lo ---
mv -f .deps/master-instance.Tpo .deps/master-instance.Plo
--- master-service-haproxy.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-dns  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-ssl-iostream  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/dovecot"\"  -DBINDIR=\""/usr/local/bin"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT master-service-haproxy.lo -MD -MP -MF .deps/master-service-haproxy.Tpo -c -o master-service-haproxy.lo master-service-haproxy.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-dns -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-ssl-iostream -DPKG_RUNDIR=\"/var/run/dovecot\" -DPKG_STATEDIR=\"/var/db/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -DBINDIR=\"/usr/local/bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT master-service-haproxy.lo -MD -MP -MF .deps/master-service-haproxy.Tpo -c master-service-haproxy.c  -fPIC -DPIC -o .libs/master-service-haproxy.o
--- master-login.lo ---
mv -f .deps/master-login.Tpo .deps/master-login.Plo
--- master-service-settings.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-dns  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-ssl-iostream  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/dovecot"\"  -DBINDIR=\""/usr/local/bin"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT master-service-settings.lo -MD -MP -MF .deps/master-service-settings.Tpo -c -o master-service-settings.lo master-service-settings.c
--- master-login-auth.lo ---
mv -f .deps/master-login-auth.Tpo .deps/master-login-auth.Plo
--- master-service-settings-cache.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-dns  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-ssl-iostream  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/dovecot"\"  -DBINDIR=\""/usr/local/bin"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT master-service-settings-cache.lo -MD -MP -MF .deps/master-service-settings-cache.Tpo -c -o master-service-settings-cache.lo master-service-settings-cache.c
--- master-service-settings.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-dns -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-ssl-iostream -DPKG_RUNDIR=\"/var/run/dovecot\" -DPKG_STATEDIR=\"/var/db/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -DBINDIR=\"/usr/local/bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT master-service-settings.lo -MD -MP -MF .deps/master-service-settings.Tpo -c master-service-settings.c  -fPIC -DPIC -o .libs/master-service-settings.o
--- master-service-settings-cache.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-dns -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-ssl-iostream -DPKG_RUNDIR=\"/var/run/dovecot\" -DPKG_STATEDIR=\"/var/db/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -DBINDIR=\"/usr/local/bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT master-service-settings-cache.lo -MD -MP -MF .deps/master-service-settings-cache.Tpo -c master-service-settings-cache.c  -fPIC -DPIC -o .libs/master-service-settings-cache.o
--- master-service-haproxy.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-dns -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-ssl-iostream -DPKG_RUNDIR=\"/var/run/dovecot\" -DPKG_STATEDIR=\"/var/db/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -DBINDIR=\"/usr/local/bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT master-service-haproxy.lo -MD -MP -MF .deps/master-service-haproxy.Tpo -c master-service-haproxy.c -o master-service-haproxy.o >/dev/null 2>&1
--- master-service.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-dns -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-ssl-iostream -DPKG_RUNDIR=\"/var/run/dovecot\" -DPKG_STATEDIR=\"/var/db/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -DBINDIR=\"/usr/local/bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT master-service.lo -MD -MP -MF .deps/master-service.Tpo -c master-service.c -o master-service.o >/dev/null 2>&1
--- master-service-settings-cache.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-dns -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-ssl-iostream -DPKG_RUNDIR=\"/var/run/dovecot\" -DPKG_STATEDIR=\"/var/db/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -DBINDIR=\"/usr/local/bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT master-service-settings-cache.lo -MD -MP -MF .deps/master-service-settings-cache.Tpo -c master-service-settings-cache.c -o master-service-settings-cache.o >/dev/null 2>&1
--- master-service-settings.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-dns -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-ssl-iostream -DPKG_RUNDIR=\"/var/run/dovecot\" -DPKG_STATEDIR=\"/var/db/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -DBINDIR=\"/usr/local/bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT master-service-settings.lo -MD -MP -MF .deps/master-service-settings.Tpo -c master-service-settings.c -o master-service-settings.o >/dev/null 2>&1
--- master-service-haproxy.lo ---
mv -f .deps/master-service-haproxy.Tpo .deps/master-service-haproxy.Plo
--- master-service-ssl.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-dns  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-ssl-iostream  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/dovecot"\"  -DBINDIR=\""/usr/local/bin"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT master-service-ssl.lo -MD -MP -MF .deps/master-service-ssl.Tpo -c -o master-service-ssl.lo master-service-ssl.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-dns -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-ssl-iostream -DPKG_RUNDIR=\"/var/run/dovecot\" -DPKG_STATEDIR=\"/var/db/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -DBINDIR=\"/usr/local/bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT master-service-ssl.lo -MD -MP -MF .deps/master-service-ssl.Tpo -c master-service-ssl.c  -fPIC -DPIC -o .libs/master-service-ssl.o
--- master-service-settings-cache.lo ---
mv -f .deps/master-service-settings-cache.Tpo .deps/master-service-settings-cache.Plo
--- master-service-ssl-settings.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-dns  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-ssl-iostream  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/dovecot"\"  -DBINDIR=\""/usr/local/bin"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT master-service-ssl-settings.lo -MD -MP -MF .deps/master-service-ssl-settings.Tpo -c -o master-service-ssl-settings.lo master-service-ssl-settings.c
--- master-service-ssl.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-dns -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-ssl-iostream -DPKG_RUNDIR=\"/var/run/dovecot\" -DPKG_STATEDIR=\"/var/db/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -DBINDIR=\"/usr/local/bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT master-service-ssl.lo -MD -MP -MF .deps/master-service-ssl.Tpo -c master-service-ssl.c -o master-service-ssl.o >/dev/null 2>&1
--- master-service-ssl-settings.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-dns -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-ssl-iostream -DPKG_RUNDIR=\"/var/run/dovecot\" -DPKG_STATEDIR=\"/var/db/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -DBINDIR=\"/usr/local/bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT master-service-ssl-settings.lo -MD -MP -MF .deps/master-service-ssl-settings.Tpo -c master-service-ssl-settings.c  -fPIC -DPIC -o .libs/master-service-ssl-settings.o
--- master-service-settings.lo ---
mv -f .deps/master-service-settings.Tpo .deps/master-service-settings.Plo
--- stats-client.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-dns  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-ssl-iostream  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/dovecot"\"  -DBINDIR=\""/usr/local/bin"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT stats-client.lo -MD -MP -MF .deps/stats-client.Tpo -c -o stats-client.lo stats-client.c
--- master-service-ssl.lo ---
mv -f .deps/master-service-ssl.Tpo .deps/master-service-ssl.Plo
--- syslog-util.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-dns  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-ssl-iostream  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/dovecot"\"  -DBINDIR=\""/usr/local/bin"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT syslog-util.lo -MD -MP -MF .deps/syslog-util.Tpo -c -o syslog-util.lo syslog-util.c
--- master-service-ssl-settings.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-dns -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-ssl-iostream -DPKG_RUNDIR=\"/var/run/dovecot\" -DPKG_STATEDIR=\"/var/db/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -DBINDIR=\"/usr/local/bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT master-service-ssl-settings.lo -MD -MP -MF .deps/master-service-ssl-settings.Tpo -c master-service-ssl-settings.c -o master-service-ssl-settings.o >/dev/null 2>&1
--- master-service.lo ---
mv -f .deps/master-service.Tpo .deps/master-service.Plo
--- stats-client.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-dns -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-ssl-iostream -DPKG_RUNDIR=\"/var/run/dovecot\" -DPKG_STATEDIR=\"/var/db/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -DBINDIR=\"/usr/local/bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT stats-client.lo -MD -MP -MF .deps/stats-client.Tpo -c stats-client.c  -fPIC -DPIC -o .libs/stats-client.o
--- syslog-util.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-dns -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-ssl-iostream -DPKG_RUNDIR=\"/var/run/dovecot\" -DPKG_STATEDIR=\"/var/db/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -DBINDIR=\"/usr/local/bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT syslog-util.lo -MD -MP -MF .deps/syslog-util.Tpo -c syslog-util.c  -fPIC -DPIC -o .libs/syslog-util.o
--- master-service-ssl-settings.lo ---
mv -f .deps/master-service-ssl-settings.Tpo .deps/master-service-ssl-settings.Plo
--- syslog-util.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-dns -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-ssl-iostream -DPKG_RUNDIR=\"/var/run/dovecot\" -DPKG_STATEDIR=\"/var/db/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -DBINDIR=\"/usr/local/bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT syslog-util.lo -MD -MP -MF .deps/syslog-util.Tpo -c syslog-util.c -o syslog-util.o >/dev/null 2>&1
mv -f .deps/syslog-util.Tpo .deps/syslog-util.Plo
--- stats-client.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-dns -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-ssl-iostream -DPKG_RUNDIR=\"/var/run/dovecot\" -DPKG_STATEDIR=\"/var/db/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -DBINDIR=\"/usr/local/bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT stats-client.lo -MD -MP -MF .deps/stats-client.Tpo -c stats-client.c -o stats-client.o >/dev/null 2>&1
mv -f .deps/stats-client.Tpo .deps/stats-client.Plo
--- libmaster.la ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o libmaster.la  anvil-client.lo ipc-client.lo ipc-server.lo  master-auth.lo master-instance.lo master-login.lo  master-login-auth.lo master-service.lo  master-service-haproxy.lo master-service-settings.lo  master-service-settings-cache.lo master-service-ssl.lo  master-service-ssl-settings.lo stats-client.lo syslog-util.lo  
libtool: link: ar cru .libs/libmaster.a .libs/anvil-client.o .libs/ipc-client.o .libs/ipc-server.o .libs/master-auth.o .libs/master-instance.o .libs/master-login.o .libs/master-login-auth.o .libs/master-service.o .libs/master-service-haproxy.o .libs/master-service-settings.o .libs/master-service-settings-cache.o .libs/master-service-ssl.o .libs/master-service-ssl-settings.o .libs/stats-client.o .libs/syslog-util.o 
libtool: link: ranlib .libs/libmaster.a
libtool: link: ( cd ".libs" && rm -f "libmaster.la" && ln -s "../libmaster.la" "libmaster.la" )
--- test-event-stats ---
--- test-master-service-settings-cache ---
--- test-event-stats ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o test-event-stats test-event-stats.o libmaster.la ../lib-test/libtest.la  ../lib-dns/libdns.la  ../lib/liblib.la 
--- test-master-service-settings-cache ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o test-master-service-settings-cache test-master-service-settings-cache.o master-service-settings-cache.lo ../lib-settings/libsettings.la ../lib-test/libtest.la  ../lib-dns/libdns.la  ../lib/liblib.la 
--- test-event-stats ---
libtool: link: cc -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o test-event-stats test-event-stats.o  -L/usr/local/lib ./.libs/libmaster.a ../lib-test/.libs/libtest.a ../lib-dns/.libs/libdns.a ../lib/.libs/liblib.a
--- test-master-service-settings-cache ---
libtool: link: cc -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o test-master-service-settings-cache test-master-service-settings-cache.o .libs/master-service-settings-cache.o  -L/usr/local/lib ../lib-settings/.libs/libsettings.a ../lib-test/.libs/libtest.a ../lib-dns/.libs/libdns.a ../lib/.libs/liblib.a 
Making all in lib-charset
--- test-charset.o ---
--- charset-iconv.lo ---
--- charset-utf8.lo ---
--- charset-utf8-only.lo ---
--- test-charset.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-charset.o -MD -MP -MF .deps/test-charset.Tpo -c -o test-charset.o test-charset.c
--- charset-iconv.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT charset-iconv.lo -MD -MP -MF .deps/charset-iconv.Tpo -c -o charset-iconv.lo charset-iconv.c
--- charset-utf8.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT charset-utf8.lo -MD -MP -MF .deps/charset-utf8.Tpo -c -o charset-utf8.lo charset-utf8.c
--- charset-utf8-only.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT charset-utf8-only.lo -MD -MP -MF .deps/charset-utf8-only.Tpo -c -o charset-utf8-only.lo charset-utf8-only.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT charset-utf8-only.lo -MD -MP -MF .deps/charset-utf8-only.Tpo -c charset-utf8-only.c  -fPIC -DPIC -o .libs/charset-utf8-only.o
--- charset-iconv.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT charset-iconv.lo -MD -MP -MF .deps/charset-iconv.Tpo -c charset-iconv.c  -fPIC -DPIC -o .libs/charset-iconv.o
--- charset-utf8.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT charset-utf8.lo -MD -MP -MF .deps/charset-utf8.Tpo -c charset-utf8.c  -fPIC -DPIC -o .libs/charset-utf8.o
--- charset-utf8-only.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT charset-utf8-only.lo -MD -MP -MF .deps/charset-utf8-only.Tpo -c charset-utf8-only.c -o charset-utf8-only.o >/dev/null 2>&1
--- charset-utf8.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT charset-utf8.lo -MD -MP -MF .deps/charset-utf8.Tpo -c charset-utf8.c -o charset-utf8.o >/dev/null 2>&1
--- charset-iconv.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT charset-iconv.lo -MD -MP -MF .deps/charset-iconv.Tpo -c charset-iconv.c -o charset-iconv.o >/dev/null 2>&1
--- test-charset.o ---
mv -f .deps/test-charset.Tpo .deps/test-charset.Po
--- charset-utf8-only.lo ---
mv -f .deps/charset-utf8-only.Tpo .deps/charset-utf8-only.Plo
--- charset-utf8.lo ---
mv -f .deps/charset-utf8.Tpo .deps/charset-utf8.Plo
--- charset-iconv.lo ---
mv -f .deps/charset-iconv.Tpo .deps/charset-iconv.Plo
--- libcharset.la ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o libcharset.la  charset-iconv.lo charset-utf8.lo  charset-utf8-only.lo  
libtool: link: ar cru .libs/libcharset.a .libs/charset-iconv.o .libs/charset-utf8.o .libs/charset-utf8-only.o 
libtool: link: ranlib .libs/libcharset.a
libtool: link: ( cd ".libs" && rm -f "libcharset.la" && ln -s "../libcharset.la" "libcharset.la" )
--- test-char-
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o test-charset test-charset.o libcharset.la ../lib-test/libtest.la  ../lib/liblib.la 
libtool: link: cc -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o test-charset test-charset.o  -L/usr/local/lib ./.libs/libcharset.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a
Making all in lib-ssl-iostream
--- test-iostream-ssl.o ---
--- dovecot-openssl-common.lo ---
--- iostream-openssl.lo ---
--- iostream-openssl-common.lo ---
--- test-iostream-ssl.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -DMODULE_DIR=\""/usr/local/lib/dovecot"\"  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-iostream-ssl.o -MD -MP -MF .deps/test-iostream-ssl.Tpo -c -o test-iostream-ssl.o test-iostream-ssl.c
--- dovecot-openssl-common.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -DMODULE_DIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dovecot-openssl-common.lo -MD -MP -MF .deps/dovecot-openssl-common.Tpo -c -o dovecot-openssl-common.lo dovecot-openssl-common.c
--- iostream-openssl.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -DMODULE_DIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT iostream-openssl.lo -MD -MP -MF .deps/iostream-openssl.Tpo -c -o iostream-openssl.lo iostream-openssl.c
--- iostream-openssl-common.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -DMODULE_DIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT iostream-openssl-common.lo -MD -MP -MF .deps/iostream-openssl-common.Tpo -c -o iostream-openssl-common.lo iostream-openssl-common.c
--- iostream-openssl.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -DMODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT iostream-openssl.lo -MD -MP -MF .deps/iostream-openssl.Tpo -c iostream-openssl.c  -fPIC -DPIC -o .libs/iostream-openssl.o
--- iostream-openssl-common.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -DMODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT iostream-openssl-common.lo -MD -MP -MF .deps/iostream-openssl-common.Tpo -c iostream-openssl-common.c  -fPIC -DPIC -o .libs/iostream-openssl-common.o
--- dovecot-openssl-common.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -DMODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dovecot-openssl-common.lo -MD -MP -MF .deps/dovecot-openssl-common.Tpo -c dovecot-openssl-common.c  -fPIC -DPIC -o .libs/dovecot-openssl-common.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -DMODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dovecot-openssl-common.lo -MD -MP -MF .deps/dovecot-openssl-common.Tpo -c dovecot-openssl-common.c -o dovecot-openssl-common.o >/dev/null 2>&1
--- test-iostream-ssl.o ---
mv -f .deps/test-iostream-ssl.Tpo .deps/test-iostream-ssl.Po
--- iostream-openssl-context.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -DMODULE_DIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT iostream-openssl-context.lo -MD -MP -MF .deps/iostream-openssl-context.Tpo -c -o iostream-openssl-context.lo iostream-openssl-context.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -DMODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT iostream-openssl-context.lo -MD -MP -MF .deps/iostream-openssl-context.Tpo -c iostream-openssl-context.c  -fPIC -DPIC -o .libs/iostream-openssl-context.o
--- iostream-openssl-common.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -DMODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT iostream-openssl-common.lo -MD -MP -MF .deps/iostream-openssl-common.Tpo -c iostream-openssl-common.c -o iostream-openssl-common.o >/dev/null 2>&1
--- iostream-openssl.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -DMODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT iostream-openssl.lo -MD -MP -MF .deps/iostream-openssl.Tpo -c iostream-openssl.c -o iostream-openssl.o >/dev/null 2>&1
--- dovecot-openssl-common.lo ---
mv -f .deps/dovecot-openssl-common.Tpo .deps/dovecot-openssl-common.Plo
--- istream-openssl.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -DMODULE_DIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-openssl.lo -MD -MP -MF .deps/istream-openssl.Tpo -c -o istream-openssl.lo istream-openssl.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -DMODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-openssl.lo -MD -MP -MF .deps/istream-openssl.Tpo -c istream-openssl.c  -fPIC -DPIC -o .libs/istream-openssl.o
--- iostream-openssl-common.lo ---
mv -f .deps/iostream-openssl-common.Tpo .deps/iostream-openssl-common.Plo
--- ostream-openssl.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -DMODULE_DIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ostream-openssl.lo -MD -MP -MF .deps/ostream-openssl.Tpo -c -o ostream-openssl.lo ostream-openssl.c
--- iostream-openssl-context.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -DMODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT iostream-openssl-context.lo -MD -MP -MF .deps/iostream-openssl-context.Tpo -c iostream-openssl-context.c -o iostream-openssl-context.o >/dev/null 2>&1
--- ostream-openssl.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -DMODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ostream-openssl.lo -MD -MP -MF .deps/ostream-openssl.Tpo -c ostream-openssl.c  -fPIC -DPIC -o .libs/ostream-openssl.o
--- istream-openssl.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -DMODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-openssl.lo -MD -MP -MF .deps/istream-openssl.Tpo -c istream-openssl.c -o istream-openssl.o >/dev/null 2>&1
--- iostream-openssl.lo ---
mv -f .deps/iostream-openssl.Tpo .deps/iostream-openssl.Plo
--- iostream-ssl.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -DMODULE_DIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT iostream-ssl.lo -MD -MP -MF .deps/iostream-ssl.Tpo -c -o iostream-ssl.lo iostream-ssl.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -DMODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT iostream-ssl.lo -MD -MP -MF .deps/iostream-ssl.Tpo -c iostream-ssl.c  -fPIC -DPIC -o .libs/iostream-ssl.o
--- ostream-openssl.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -DMODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ostream-openssl.lo -MD -MP -MF .deps/ostream-openssl.Tpo -c ostream-openssl.c -o ostream-openssl.o >/dev/null 2>&1
--- iostream-openssl-context.lo ---
mv -f .deps/iostream-openssl-context.Tpo .deps/iostream-openssl-context.Plo
--- iostream-ssl-context-cache.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -DMODULE_DIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT iostream-ssl-context-cache.lo -MD -MP -MF .deps/iostream-ssl-context-cache.Tpo -c -o iostream-ssl-context-cache.lo iostream-ssl-context-cache.c
--- istream-openssl.lo ---
mv -f .deps/istream-openssl.Tpo .deps/istream-openssl.Plo
--- iostream-ssl-test.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -DMODULE_DIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT iostream-ssl-test.lo -MD -MP -MF .deps/iostream-ssl-test.Tpo -c -o iostream-ssl-test.lo iostream-ssl-test.c
--- iostream-ssl-context-cache.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -DMODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT iostream-ssl-context-cache.lo -MD -MP -MF .deps/iostream-ssl-context-cache.Tpo -c iostream-ssl-context-cache.c  -fPIC -DPIC -o .libs/iostream-ssl-context-cache.o
--- iostream-ssl-test.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -DMODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT iostream-ssl-test.lo -MD -MP -MF .deps/iostream-ssl-test.Tpo -c iostream-ssl-test.c  -fPIC -DPIC -o .libs/iostream-ssl-test.o
--- iostream-ssl.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -DMODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT iostream-ssl.lo -MD -MP -MF .deps/iostream-ssl.Tpo -c iostream-ssl.c -o iostream-ssl.o >/dev/null 2>&1
--- iostream-ssl-test.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -DMODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT iostream-ssl-test.lo -MD -MP -MF .deps/iostream-ssl-test.Tpo -c iostream-ssl-test.c -o iostream-ssl-test.o >/dev/null 2>&1
--- iostream-ssl-context-cache.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -DMODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT iostream-ssl-context-cache.lo -MD -MP -MF .deps/iostream-ssl-context-cache.Tpo -c iostream-ssl-context-cache.c -o iostream-ssl-context-cache.o >/dev/null 2>&1
--- iostream-ssl-test.lo ---
mv -f .deps/iostream-ssl-test.Tpo .deps/iostream-ssl-test.Plo
--- iostream-ssl.lo ---
mv -f .deps/iostream-ssl.Tpo .deps/iostream-ssl.Plo
--- iostream-ssl-context-cache.lo ---
mv -f .deps/iostream-ssl-context-cache.Tpo .deps/iostream-ssl-context-cache.Plo
--- libssl_iostream.la ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include     -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o libssl_iostream.la  iostream-ssl.lo  iostream-ssl-context-cache.lo iostream-ssl-test.lo  
--- ostream-openssl.lo ---
mv -f .deps/ostream-openssl.Tpo .deps/ostream-openssl.Plo
--- libssl_iostream_openssl.la ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -module -avoid-version    -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o libssl_iostream_openssl.la -rpath  /usr/local/lib/dovecot dovecot-openssl-common.lo  iostream-openssl.lo  iostream-openssl-common.lo  iostream-openssl-context.lo  istream-openssl.lo ostream-openssl.lo -L/usr/local/lib -lssl -lcrypto 
--- libssl_iostream.la ---
libtool: link: ar cru .libs/libssl_iostream.a .libs/iostream-ssl.o .libs/iostream-ssl-context-cache.o .libs/iostream-ssl-test.o 
libtool: link: ranlib .libs/libssl_iostream.a
libtool: link: ( cd ".libs" && rm -f "libssl_iostream.la" && ln -s "../libssl_iostream.la" "libssl_iostream.la" )
--- libssl_iostream_openssl.la ---
libtool: link: cc -shared  -fPIC -DPIC  .libs/dovecot-openssl-common.o .libs/iostream-openssl.o .libs/iostream-openssl-common.o .libs/iostream-openssl-context.o .libs/istream-openssl.o .libs/ostream-openssl.o   -L/usr/local/lib -lssl -lcrypto  -O2 -fstack-protector-strong -fstack-protector-strong -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,libssl_iostream_openssl.so -o .libs/libssl_iostream_openssl.so
libtool: link: ar cru .libs/libssl_iostream_openssl.a  dovecot-openssl-common.o iostream-openssl.o iostream-openssl-common.o iostream-openssl-context.o istream-openssl.o ostream-openssl.o
libtool: link: ranlib .libs/libssl_iostream_openssl.a
libtool: link: ( cd ".libs" && rm -f "libssl_iostream_openssl.la" && ln -s "../libssl_iostream_openssl.la" "libssl_iostream_openssl.la" )
--- test-iostream-ssl ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include     -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o test-iostream-ssl test-iostream-ssl.o libssl_iostream_openssl.la  libssl_iostream.la  ../lib-test/libtest.la  ../lib/liblib.la -L/usr/local/lib -lssl -lcrypto  
*** Warning: Linking the executable test-iostream-ssl against the loadable module
*** libssl_iostream_openssl.so is not portable!
libtool: link: cc -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o .libs/test-iostream-ssl test-iostream-ssl.o  -L/usr/local/lib ./.libs/libssl_iostream_openssl.so ./.libs/libssl_iostream.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a -lssl -lcrypto -Wl,-rpath -Wl,/usr/local/lib/dovecot
Making all in lib-dcrypt
--- test_stream-dcrypt.o ---
--- test_stream-istream-decrypt.o ---
--- test_stream-ostream-encrypt.o ---
--- libdcrypt_la-dcrypt.lo ---
--- test_stream-dcrypt.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-ssl-iostream  -DDCRYPT_MODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -I../../src/lib  -I../../src/lib-test  -I../../src/lib-ssl-iostream  -DDCRYPT_MODULE_DIR=\"/usr/local/lib/dovecot\" -DDCRYPT_SRC_DIR=\"../../src/lib-dcrypt\" -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_stream-dcrypt.o -MD -MP -MF .deps/test_stream-dcrypt.Tpo -c -o test_stream-dcrypt.o `test -f 'dcrypt.c' || echo './'`dcrypt.c
--- test_stream-istream-decrypt.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-ssl-iostream  -DDCRYPT_MODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -I../../src/lib  -I../../src/lib-test  -I../../src/lib-ssl-iostream  -DDCRYPT_MODULE_DIR=\"/usr/local/lib/dovecot\" -DDCRYPT_SRC_DIR=\"../../src/lib-dcrypt\" -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_stream-istream-decrypt.o -MD -MP -MF .deps/test_stream-istream-decrypt.Tpo -c -o test_stream-istream-decrypt.o `test -f 'istream-decrypt.c' || echo './'`istream-decrypt.c
--- test_stream-ostream-encrypt.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-ssl-iostream  -DDCRYPT_MODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -I../../src/lib  -I../../src/lib-test  -I../../src/lib-ssl-iostream  -DDCRYPT_MODULE_DIR=\"/usr/local/lib/dovecot\" -DDCRYPT_SRC_DIR=\"../../src/lib-dcrypt\" -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_stream-ostream-encrypt.o -MD -MP -MF .deps/test_stream-ostream-encrypt.Tpo -c -o test_stream-ostream-encrypt.o `test -f 'ostream-encrypt.c' || echo './'`ostream-encrypt.c
--- libdcrypt_la-dcrypt.lo ---
/bin/sh ../../libtool  --tag=CC   --mode=compile cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-ssl-iostream  -DDCRYPT_MODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -I../../src/lib  -I../../src/lib-test  -I../../src/lib-ssl-iostream  -DDCRYPT_MODULE_DIR=\"/usr/local/lib/dovecot\"  -DDCRYPT_MODULE_DIR=\"/usr/local/lib/dovecot\" -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT libdcrypt_la-dcrypt.lo -MD -MP -MF .deps/libdcrypt_la-dcrypt.Tpo -c -o libdcrypt_la-dcrypt.lo `test -f 'dcrypt.c' || echo './'`dcrypt.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-ssl-iostream -DDCRYPT_MODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -I../../src/lib -I../../src/lib-test -I../../src/lib-ssl-iostream -DDCRYPT_MODULE_DIR=\"/usr/local/lib/dovecot\" -DDCRYPT_MODULE_DIR=\"/usr/local/lib/dovecot\" -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT libdcrypt_la-dcrypt.lo -MD -MP -MF .deps/libdcrypt_la-dcrypt.Tpo -c dcrypt.c  -fPIC -DPIC -o .libs/libdcrypt_la-dcrypt.o
--- test_stream-ostream-encrypt.o ---
mv -f .deps/test_stream-ostream-encrypt.Tpo .deps/test_stream-ostream-encrypt.Po
--- libdcrypt_la-istream-decrypt.lo ---
/bin/sh ../../libtool  --tag=CC   --mode=compile cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-ssl-iostream  -DDCRYPT_MODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -I../../src/lib  -I../../src/lib-test  -I../../src/lib-ssl-iostream  -DDCRYPT_MODULE_DIR=\"/usr/local/lib/dovecot\"  -DDCRYPT_MODULE_DIR=\"/usr/local/lib/dovecot\" -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT libdcrypt_la-istream-decrypt.lo -MD -MP -MF .deps/libdcrypt_la-istream-decrypt.Tpo -c -o libdcrypt_la-istream-decrypt.lo `test -f 'istream-decrypt.c' || echo './'`istream-decrypt.c
--- test_stream-dcrypt.o ---
mv -f .deps/test_stream-dcrypt.Tpo .deps/test_stream-dcrypt.Po
--- libdcrypt_la-ostream-encrypt.lo ---
/bin/sh ../../libtool  --tag=CC   --mode=compile cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-ssl-iostream  -DDCRYPT_MODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -I../../src/lib  -I../../src/lib-test  -I../../src/lib-ssl-iostream  -DDCRYPT_MODULE_DIR=\"/usr/local/lib/dovecot\"  -DDCRYPT_MODULE_DIR=\"/usr/local/lib/dovecot\" -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT libdcrypt_la-ostream-encrypt.lo -MD -MP -MF .deps/libdcrypt_la-ostream-encrypt.Tpo -c -o libdcrypt_la-ostream-encrypt.lo `test -f 'ostream-encrypt.c' || echo './'`ostream-encrypt.c
--- libdcrypt_la-istream-decrypt.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-ssl-iostream -DDCRYPT_MODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -I../../src/lib -I../../src/lib-test -I../../src/lib-ssl-iostream -DDCRYPT_MODULE_DIR=\"/usr/local/lib/dovecot\" -DDCRYPT_MODULE_DIR=\"/usr/local/lib/dovecot\" -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT libdcrypt_la-istream-decrypt.lo -MD -MP -MF .deps/libdcrypt_la-istream-decrypt.Tpo -c istream-decrypt.c  -fPIC -DPIC -o .libs/libdcrypt_la-istream-decrypt.o
--- test_stream-istream-decrypt.o ---
mv -f .deps/test_stream-istream-decrypt.Tpo .deps/test_stream-istream-decrypt.Po
--- test_crypto-dcrypt.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-ssl-iostream  -DDCRYPT_MODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -I../../src/lib  -I../../src/lib-test  -I../../src/lib-ssl-iostream  -DDCRYPT_MODULE_DIR=\"/usr/local/lib/dovecot\" -DDCRYPT_SRC_DIR=\"../../src/lib-dcrypt\" -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_crypto-dcrypt.o -MD -MP -MF .deps/test_crypto-dcrypt.Tpo -c -o test_crypto-dcrypt.o `test -f 'dcrypt.c' || echo './'`dcrypt.c
--- libdcrypt_la-dcrypt.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-ssl-iostream -DDCRYPT_MODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -I../../src/lib -I../../src/lib-test -I../../src/lib-ssl-iostream -DDCRYPT_MODULE_DIR=\"/usr/local/lib/dovecot\" -DDCRYPT_MODULE_DIR=\"/usr/local/lib/dovecot\" -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT libdcrypt_la-dcrypt.lo -MD -MP -MF .deps/libdcrypt_la-dcrypt.Tpo -c dcrypt.c -o libdcrypt_la-dcrypt.o >/dev/null 2>&1
--- libdcrypt_la-ostream-encrypt.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-ssl-iostream -DDCRYPT_MODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -I../../src/lib -I../../src/lib-test -I../../src/lib-ssl-iostream -DDCRYPT_MODULE_DIR=\"/usr/local/lib/dovecot\" -DDCRYPT_MODULE_DIR=\"/usr/local/lib/dovecot\" -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT libdcrypt_la-ostream-encrypt.lo -MD -MP -MF .deps/libdcrypt_la-ostream-encrypt.Tpo -c ostream-encrypt.c  -fPIC -DPIC -o .libs/libdcrypt_la-ostream-encrypt.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-ssl-iostream -DDCRYPT_MODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -I../../src/lib -I../../src/lib-test -I../../src/lib-ssl-iostream -DDCRYPT_MODULE_DIR=\"/usr/local/lib/dovecot\" -DDCRYPT_MODULE_DIR=\"/usr/local/lib/dovecot\" -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT libdcrypt_la-ostream-encrypt.lo -MD -MP -MF .deps/libdcrypt_la-ostream-encrypt.Tpo -c ostream-encrypt.c -o libdcrypt_la-ostream-encrypt.o >/dev/null 2>&1
--- test_crypto-dcrypt.o ---
mv -f .deps/test_crypto-dcrypt.Tpo .deps/test_crypto-dcrypt.Po
--- test_crypto-istream-decrypt.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-ssl-iostream  -DDCRYPT_MODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -I../../src/lib  -I../../src/lib-test  -I../../src/lib-ssl-iostream  -DDCRYPT_MODULE_DIR=\"/usr/local/lib/dovecot\" -DDCRYPT_SRC_DIR=\"../../src/lib-dcrypt\" -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_crypto-istream-decrypt.o -MD -MP -MF .deps/test_crypto-istream-decrypt.Tpo -c -o test_crypto-istream-decrypt.o `test -f 'istream-decrypt.c' || echo './'`istream-decrypt.c
--- libdcrypt_la-dcrypt.lo ---
mv -f .deps/libdcrypt_la-dcrypt.Tpo .deps/libdcrypt_la-dcrypt.Plo
--- test_crypto-ostream-encrypt.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-ssl-iostream  -DDCRYPT_MODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -I../../src/lib  -I../../src/lib-test  -I../../src/lib-ssl-iostream  -DDCRYPT_MODULE_DIR=\"/usr/local/lib/dovecot\" -DDCRYPT_SRC_DIR=\"../../src/lib-dcrypt\" -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_crypto-ostream-encrypt.o -MD -MP -MF .deps/test_crypto-ostream-encrypt.Tpo -c -o test_crypto-ostream-encrypt.o `test -f 'ostream-encrypt.c' || echo './'`ostream-encrypt.c
--- libdcrypt_la-istream-decrypt.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-ssl-iostream -DDCRYPT_MODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -I../../src/lib -I../../src/lib-test -I../../src/lib-ssl-iostream -DDCRYPT_MODULE_DIR=\"/usr/local/lib/dovecot\" -DDCRYPT_MODULE_DIR=\"/usr/local/lib/dovecot\" -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT libdcrypt_la-istream-decrypt.lo -MD -MP -MF .deps/libdcrypt_la-istream-decrypt.Tpo -c istream-decrypt.c -o libdcrypt_la-istream-decrypt.o >/dev/null 2>&1
--- libdcrypt_la-ostream-encrypt.lo ---
mv -f .deps/libdcrypt_la-ostream-encrypt.Tpo .deps/libdcrypt_la-ostream-encrypt.Plo
--- test_crypto-test-crypto.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-ssl-iostream  -DDCRYPT_MODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -I../../src/lib  -I../../src/lib-test  -I../../src/lib-ssl-iostream  -DDCRYPT_MODULE_DIR=\"/usr/local/lib/dovecot\" -DDCRYPT_SRC_DIR=\"../../src/lib-dcrypt\" -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_crypto-test-crypto.o -MD -MP -MF .deps/test_crypto-test-crypto.Tpo -c -o test_crypto-test-crypto.o `test -f 'test-crypto.c' || echo './'`test-crypto.c
--- test_crypto-ostream-encrypt.o ---
mv -f .deps/test_crypto-ostream-encrypt.Tpo .deps/test_crypto-ostream-encrypt.Po
--- test_stream-test-stream.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-ssl-iostream  -DDCRYPT_MODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -I../../src/lib  -I../../src/lib-test  -I../../src/lib-ssl-iostream  -DDCRYPT_MODULE_DIR=\"/usr/local/lib/dovecot\" -DDCRYPT_SRC_DIR=\"../../src/lib-dcrypt\" -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_stream-test-stream.o -MD -MP -MF .deps/test_stream-test-stream.Tpo -c -o test_stream-test-stream.o `test -f 'test-stream.c' || echo './'`test-stream.c
--- test_crypto-istream-decrypt.o ---
mv -f .deps/test_crypto-istream-decrypt.Tpo .deps/test_crypto-istream-decrypt.Po
--- libdcrypt_openssl_la-dcrypt-openssl.lo ---
/bin/sh ../../libtool  --tag=CC   --mode=compile cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-ssl-iostream  -DDCRYPT_MODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -I../../src/lib  -I../../src/lib-test  -I../../src/lib-ssl-iostream  -DDCRYPT_MODULE_DIR=\"/usr/local/lib/dovecot\"  -I/usr/local/include -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT libdcrypt_openssl_la-dcrypt-openssl.lo -MD -MP -MF .deps/libdcrypt_openssl_la-dcrypt-openssl.Tpo -c -o libdcrypt_openssl_la-dcrypt-openssl.lo `test -f 'dcrypt-openssl.c' || echo './'`dcrypt-openssl.c
--- libdcrypt_la-istream-decrypt.lo ---
mv -f .deps/libdcrypt_la-istream-decrypt.Tpo .deps/libdcrypt_la-istream-decrypt.Plo
--- libdcrypt.la ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc -I../../src/lib  -I../../src/lib-test  -I../../src/lib-ssl-iostream  -DDCRYPT_MODULE_DIR=\"/usr/local/lib/dovecot\"  -DDCRYPT_MODULE_DIR=\"/usr/local/lib/dovecot\"  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include    -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o libdcrypt.la  libdcrypt_la-dcrypt.lo  libdcrypt_la-istream-decrypt.lo  libdcrypt_la-ostream-encrypt.lo  
--- libdcrypt_openssl_la-dcrypt-openssl.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-ssl-iostream -DDCRYPT_MODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -I../../src/lib -I../../src/lib-test -I../../src/lib-ssl-iostream -DDCRYPT_MODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT libdcrypt_openssl_la-dcrypt-openssl.lo -MD -MP -MF .deps/libdcrypt_openssl_la-dcrypt-openssl.Tpo -c dcrypt-openssl.c  -fPIC -DPIC -o .libs/libdcrypt_openssl_la-dcrypt-openssl.o
--- test_stream-test-stream.o ---
mv -f .deps/test_stream-test-stream.Tpo .deps/test_stream-test-stream.Po
--- test-stream ---
--- libdcrypt.la ---
libtool: link: ar cru .libs/libdcrypt.a .libs/libdcrypt_la-dcrypt.o .libs/libdcrypt_la-istream-decrypt.o .libs/libdcrypt_la-ostream-encrypt.o 
--- test-stream ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc -I../../src/lib  -I../../src/lib-test  -I../../src/lib-ssl-iostream  -DDCRYPT_MODULE_DIR=\"/usr/local/lib/dovecot\" -DDCRYPT_SRC_DIR=\"../../src/lib-dcrypt\"  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--whole-archive,../lib-ssl-iostream/.libs/libssl_iostream.a,--no-whole-archive   -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o test-stream test_stream-dcrypt.o  test_stream-istream-decrypt.o  test_stream-ostream-encrypt.o  test_stream-test-stream.o ../lib-ssl-iostream/libssl_iostream.la  ../lib-test/libtest.la  ../lib/liblib.la  -export-dynamic 
--- libdcrypt.la ---
libtool: link: ranlib .libs/libdcrypt.a
libtool: link: ( cd ".libs" && rm -f "libdcrypt.la" && ln -s "../libdcrypt.la" "libdcrypt.la" )
--- test_crypto-test-crypto.o ---
mv -f .deps/test_crypto-test-crypto.Tpo .deps/test_crypto-test-crypto.Po
--- test-crypto ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc -I../../src/lib  -I../../src/lib-test  -I../../src/lib-ssl-iostream  -DDCRYPT_MODULE_DIR=\"/usr/local/lib/dovecot\" -DDCRYPT_SRC_DIR=\"../../src/lib-dcrypt\"  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--whole-archive,../lib-ssl-iostream/.libs/libssl_iostream.a,--no-whole-archive   -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o test-crypto test_crypto-dcrypt.o  test_crypto-istream-decrypt.o  test_crypto-ostream-encrypt.o  test_crypto-test-crypto.o ../lib-ssl-iostream/libssl_iostream.la  ../lib-test/libtest.la  ../lib/liblib.la  -export-dynamic 
--- test-stream ---
libtool: link: cc -I../../src/lib -I../../src/lib-test -I../../src/lib-ssl-iostream -DDCRYPT_MODULE_DIR=\"/usr/local/lib/dovecot\" -DDCRYPT_SRC_DIR=\"../../src/lib-dcrypt\" -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--whole-archive -Wl,../lib-ssl-iostream/.libs/libssl_iostream.a -Wl,--no-whole-archive -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o test-stream test_stream-dcrypt.o test_stream-istream-decrypt.o test_stream-ostream-encrypt.o test_stream-test-stream.o -Wl,--export-dynamic  -L/usr/local/lib ../lib-ssl-iostream/.libs/libssl_iostream.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a
--- test-crypto ---
libtool: link: cc -I../../src/lib -I../../src/lib-test -I../../src/lib-ssl-iostream -DDCRYPT_MODULE_DIR=\"/usr/local/lib/dovecot\" -DDCRYPT_SRC_DIR=\"../../src/lib-dcrypt\" -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--whole-archive -Wl,../lib-ssl-iostream/.libs/libssl_iostream.a -Wl,--no-whole-archive -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o test-crypto test_crypto-dcrypt.o test_crypto-istream-decrypt.o test_crypto-ostream-encrypt.o test_crypto-test-crypto.o -Wl,--export-dynamic  -L/usr/local/lib ../lib-ssl-iostream/.libs/libssl_iostream.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a
--- libdcrypt_openssl_la-dcrypt-openssl.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-ssl-iostream -DDCRYPT_MODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -I../../src/lib -I../../src/lib-test -I../../src/lib-ssl-iostream -DDCRYPT_MODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT libdcrypt_openssl_la-dcrypt-openssl.lo -MD -MP -MF .deps/libdcrypt_openssl_la-dcrypt-openssl.Tpo -c dcrypt-openssl.c -o libdcrypt_openssl_la-dcrypt-openssl.o >/dev/null 2>&1
mv -f .deps/libdcrypt_openssl_la-dcrypt-openssl.Tpo .deps/libdcrypt_openssl_la-dcrypt-openssl.Plo
--- libdcrypt_openssl.la ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-ssl-iostream  -DDCRYPT_MODULE_DIR=\"/usr/local/lib/dovecot\"  -I/usr/local/include -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include  -module -avoid-version ../lib-ssl-iostream/libssl_iostream_openssl.la   -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o libdcrypt_openssl.la -rpath  /usr/local/lib/dovecot libdcrypt_openssl_la-dcrypt-openssl.lo -L/usr/local/lib -lssl -lcrypto 
*** Warning: Linking the shared library libdcrypt_openssl.la against the loadable module
*** libssl_iostream_openssl.so is not portable!
libtool: link: cc -shared  -fPIC -DPIC  .libs/libdcrypt_openssl_la-dcrypt-openssl.o   -Wl,-rpath -Wl,/usr/ports/mail/dovecot/work/dovecot-2.3.20/src/lib-ssl-iostream/.libs -Wl,-rpath -Wl,/usr/local/lib/dovecot ../lib-ssl-iostream/.libs/libssl_iostream_openssl.so -L/usr/local/lib -lssl -lcrypto  -O2 -fstack-protector-strong -fstack-protector-strong -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,libdcrypt_openssl.so -o .libs/libdcrypt_openssl.so
libtool: link: ar cru .libs/libdcrypt_openssl.a  libdcrypt_openssl_la-dcrypt-openssl.o
libtool: link: ranlib .libs/libdcrypt_openssl.a
libtool: link: ( cd ".libs" && rm -f "libdcrypt_openssl.la" && ln -s "../libdcrypt_openssl.la" "libdcrypt_openssl.la" )
Making all in lib-dict
--- test-dict.o ---
--- test-dict-client.o ---
--- dict.lo ---
--- dict-client.lo ---
--- test-dict.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-dict.o -MD -MP -MF .deps/test-dict.Tpo -c -o test-dict.o test-dict.c
--- test-dict-client.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-dict-client.o -MD -MP -MF .deps/test-dict-client.Tpo -c -o test-dict-client.o test-dict-client.c
--- dict.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dict.lo -MD -MP -MF .deps/dict.Tpo -c -o dict.lo dict.c
--- dict-client.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dict-client.lo -MD -MP -MF .deps/dict-client.Tpo -c -o dict-client.lo dict-client.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-settings -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dict-client.lo -MD -MP -MF .deps/dict-client.Tpo -c dict-client.c  -fPIC -DPIC -o .libs/dict-client.o
--- dict.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-settings -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dict.lo -MD -MP -MF .deps/dict.Tpo -c dict.c  -fPIC -DPIC -o .libs/dict.o
--- test-dict.o ---
mv -f .deps/test-dict.Tpo .deps/test-dict.Po
--- dict-file.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dict-file.lo -MD -MP -MF .deps/dict-file.Tpo -c -o dict-file.lo dict-file.c
--- test-dict-client.o ---
mv -f .deps/test-dict-client.Tpo .deps/test-dict-client.Po
--- dict-memcached.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dict-memcached.lo -MD -MP -MF .deps/dict-memcached.Tpo -c -o dict-memcached.lo dict-memcached.c
--- dict-file.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-settings -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dict-file.lo -MD -MP -MF .deps/dict-file.Tpo -c dict-file.c  -fPIC -DPIC -o .libs/dict-file.o
--- dict-memcached.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-settings -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dict-memcached.lo -MD -MP -MF .deps/dict-memcached.Tpo -c dict-memcached.c  -fPIC -DPIC -o .libs/dict-memcached.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-settings -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dict-memcached.lo -MD -MP -MF .deps/dict-memcached.Tpo -c dict-memcached.c -o dict-memcached.o >/dev/null 2>&1
--- dict-file.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-settings -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dict-file.lo -MD -MP -MF .deps/dict-file.Tpo -c dict-file.c -o dict-file.o >/dev/null 2>&1
--- dict.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-settings -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dict.lo -MD -MP -MF .deps/dict.Tpo -c dict.c -o dict.o >/dev/null 2>&1
--- dict-memcached.lo ---
mv -f .deps/dict-memcached.Tpo .deps/dict-memcached.Plo
--- dict-memcached-ascii.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dict-memcached-ascii.lo -MD -MP -MF .deps/dict-memcached-ascii.Tpo -c -o dict-memcached-ascii.lo dict-memcached-ascii.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-settings -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dict-memcached-ascii.lo -MD -MP -MF .deps/dict-memcached-ascii.Tpo -c dict-memcached-ascii.c  -fPIC -DPIC -o .libs/dict-memcached-ascii.o
--- dict-client.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-settings -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dict-client.lo -MD -MP -MF .deps/dict-client.Tpo -c dict-client.c -o dict-client.o >/dev/null 2>&1
--- dict-file.lo ---
mv -f .deps/dict-file.Tpo .deps/dict-file.Plo
--- dict-redis.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dict-redis.lo -MD -MP -MF .deps/dict-redis.Tpo -c -o dict-redis.lo dict-redis.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-settings -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dict-redis.lo -MD -MP -MF .deps/dict-redis.Tpo -c dict-redis.c  -fPIC -DPIC -o .libs/dict-redis.o
--- dict.lo ---
mv -f .deps/dict.Tpo .deps/dict.Plo
--- dict-fail.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dict-fail.lo -MD -MP -MF .deps/dict-fail.Tpo -c -o dict-fail.lo dict-fail.c
--- dict-memcached-ascii.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-settings -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dict-memcached-ascii.lo -MD -MP -MF .deps/dict-memcached-ascii.Tpo -c dict-memcached-ascii.c -o dict-memcached-ascii.o >/dev/null 2>&1
--- dict-fail.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-settings -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dict-fail.lo -MD -MP -MF .deps/dict-fail.Tpo -c dict-fail.c  -fPIC -DPIC -o .libs/dict-fail.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-settings -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dict-fail.lo -MD -MP -MF .deps/dict-fail.Tpo -c dict-fail.c -o dict-fail.o >/dev/null 2>&1
mv -f .deps/dict-fail.Tpo .deps/dict-fail.Plo
--- dict-transaction-memory.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dict-transaction-memory.lo -MD -MP -MF .deps/dict-transaction-memory.Tpo -c -o dict-transaction-memory.lo dict-transaction-memory.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-settings -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dict-transaction-memory.lo -MD -MP -MF .deps/dict-transaction-memory.Tpo -c dict-transaction-memory.c  -fPIC -DPIC -o .libs/dict-transaction-memory.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-settings -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dict-transaction-memory.lo -MD -MP -MF .deps/dict-transaction-memory.Tpo -c dict-transaction-memory.c -o dict-transaction-memory.o >/dev/null 2>&1
--- dict-redis.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-settings -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dict-redis.lo -MD -MP -MF .deps/dict-redis.Tpo -c dict-redis.c -o dict-redis.o >/dev/null 2>&1
--- dict-memcached-ascii.lo ---
mv -f .deps/dict-memcached-ascii.Tpo .deps/dict-memcached-ascii.Plo
--- dict-transaction-memory.lo ---
mv -f .deps/dict-transaction-memory.Tpo .deps/dict-transaction-memory.Plo
--- dict-client.lo ---
mv -f .deps/dict-client.Tpo .deps/dict-client.Plo
--- dict-redis.lo ---
mv -f .deps/dict-redis.Tpo .deps/dict-redis.Plo
--- libdict.la ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o libdict.la  dict.lo dict-client.lo dict-file.lo dict-memcached.lo  dict-memcached-ascii.lo dict-redis.lo dict-fail.lo  dict-transaction-memory.lo  
libtool: link: ar cru .libs/libdict.a .libs/dict.o .libs/dict-client.o .libs/dict-file.o .libs/dict-memcached.o .libs/dict-memcached-ascii.o .libs/dict-redis.o .libs/dict-fail.o .libs/dict-transaction-memory.o 
libtool: link: ranlib .libs/libdict.a
libtool: link: ( cd ".libs" && rm -f "libdict.la" && ln -s "../libdict.la" "libdict.la" )
--- test-dict ---
--- test-dict-client ---
--- test-dict ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o test-dict test-dict.o libdict.la ../lib-test/libtest.la  ../lib/liblib.la 
--- test-dict-client ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o test-dict-client test-dict-client.o libdict.la  ../lib/liblib.la 
libtool: link: cc -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o test-dict-client test-dict-client.o  -L/usr/local/lib ./.libs/libdict.a ../lib/.libs/liblib.a
--- test-dict ---
libtool: link: cc -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o test-dict test-dict.o  -L/usr/local/lib ./.libs/libdict.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a
Making all in lib-sasl
--- test-sasl-client.o ---
--- mech-external.lo ---
--- mech-login.lo ---
--- mech-plain.lo ---
--- test-sasl-client.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-sasl-client.o -MD -MP -MF .deps/test-sasl-client.Tpo -c -o test-sasl-client.o test-sasl-client.c
--- mech-external.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mech-external.lo -MD -MP -MF .deps/mech-external.Tpo -c -o mech-external.lo mech-external.c
--- mech-login.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mech-login.lo -MD -MP -MF .deps/mech-login.Tpo -c -o mech-login.lo mech-login.c
--- mech-plain.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mech-plain.lo -MD -MP -MF .deps/mech-plain.Tpo -c -o mech-plain.lo mech-plain.c
--- mech-external.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mech-external.lo -MD -MP -MF .deps/mech-external.Tpo -c mech-external.c  -fPIC -DPIC -o .libs/mech-external.o
--- mech-plain.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mech-plain.lo -MD -MP -MF .deps/mech-plain.Tpo -c mech-plain.c  -fPIC -DPIC -o .libs/mech-plain.o
--- mech-login.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mech-login.lo -MD -MP -MF .deps/mech-login.Tpo -c mech-login.c  -fPIC -DPIC -o .libs/mech-login.o
--- mech-external.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mech-external.lo -MD -MP -MF .deps/mech-external.Tpo -c mech-external.c -o mech-external.o >/dev/null 2>&1
--- mech-login.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mech-login.lo -MD -MP -MF .deps/mech-login.Tpo -c mech-login.c -o mech-login.o >/dev/null 2>&1
--- mech-plain.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mech-plain.lo -MD -MP -MF .deps/mech-plain.Tpo -c mech-plain.c -o mech-plain.o >/dev/null 2>&1
--- mech-external.lo ---
mv -f .deps/mech-external.Tpo .deps/mech-external.Plo
--- mech-oauthbearer.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mech-oauthbearer.lo -MD -MP -MF .deps/mech-oauthbearer.Tpo -c -o mech-oauthbearer.lo mech-oauthbearer.c
--- mech-login.lo ---
mv -f .deps/mech-login.Tpo .deps/mech-login.Plo
--- dsasl-client.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dsasl-client.lo -MD -MP -MF .deps/dsasl-client.Tpo -c -o dsasl-client.lo dsasl-client.c
--- mech-plain.lo ---
mv -f .deps/mech-plain.Tpo .deps/mech-plain.Plo
--- mech-oauthbearer.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mech-oauthbearer.lo -MD -MP -MF .deps/mech-oauthbearer.Tpo -c mech-oauthbearer.c  -fPIC -DPIC -o .libs/mech-oauthbearer.o
--- dsasl-client.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dsasl-client.lo -MD -MP -MF .deps/dsasl-client.Tpo -c dsasl-client.c  -fPIC -DPIC -o .libs/dsasl-client.o
--- test-sasl-client.o ---
mv -f .deps/test-sasl-client.Tpo .deps/test-sasl-client.Po
--- mech-oauthbearer.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mech-oauthbearer.lo -MD -MP -MF .deps/mech-oauthbearer.Tpo -c mech-oauthbearer.c -o mech-oauthbearer.o >/dev/null 2>&1
--- dsasl-client.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dsasl-client.lo -MD -MP -MF .deps/dsasl-client.Tpo -c dsasl-client.c -o dsasl-client.o >/dev/null 2>&1
--- mech-oauthbearer.lo ---
mv -f .deps/mech-oauthbearer.Tpo .deps/mech-oauthbearer.Plo
--- dsasl-client.lo ---
mv -f .deps/dsasl-client.Tpo .deps/dsasl-client.Plo
--- libsasl.la ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o libsasl.la  mech-external.lo mech-login.lo mech-plain.lo  mech-oauthbearer.lo dsasl-client.lo  
libtool: link: ar cru .libs/libsasl.a .libs/mech-external.o .libs/mech-login.o .libs/mech-plain.o .libs/mech-oauthbearer.o .libs/dsasl-client.o 
libtool: link: ranlib .libs/libsasl.a
libtool: link: ( cd ".libs" && rm -f "libsasl.la" && ln -s "../libsasl.la" "libsasl.la" )
--- test-sasl-client ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o test-sasl-client test-sasl-client.o libsasl.la  ../lib-test/libtest.la  ../lib/liblib.la 
libtool: link: cc -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o test-sasl-client test-sasl-client.o  -L/usr/local/lib ./.libs/libsasl.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a
Making all in lib-old-stats
--- stats.lo ---
--- stats-connection.lo ---
--- stats-parser.lo ---
--- stats.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-master -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT stats.lo -MD -MP -MF .deps/stats.Tpo -c -o stats.lo stats.c
--- stats-connection.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-master -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT stats-connection.lo -MD -MP -MF .deps/stats-connection.Tpo -c -o stats-connection.lo stats-connection.c
--- stats-parser.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-master -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT stats-parser.lo -MD -MP -MF .deps/stats-parser.Tpo -c -o stats-parser.lo stats-parser.c
--- stats.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-master -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT stats.lo -MD -MP -MF .deps/stats.Tpo -c stats.c  -fPIC -DPIC -o .libs/stats.o
--- stats-connection.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-master -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT stats-connection.lo -MD -MP -MF .deps/stats-connection.Tpo -c stats-connection.c  -fPIC -DPIC -o .libs/stats-connection.o
--- stats-parser.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-master -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT stats-parser.lo -MD -MP -MF .deps/stats-parser.Tpo -c stats-parser.c  -fPIC -DPIC -o .libs/stats-parser.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-master -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT stats-parser.lo -MD -MP -MF .deps/stats-parser.Tpo -c stats-parser.c -o stats-parser.o >/dev/null 2>&1
--- stats-connection.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-master -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT stats-connection.lo -MD -MP -MF .deps/stats-connection.Tpo -c stats-connection.c -o stats-connection.o >/dev/null 2>&1
--- stats.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-master -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT stats.lo -MD -MP -MF .deps/stats.Tpo -c stats.c -o stats.o >/dev/null 2>&1
--- stats-parser.lo ---
mv -f .deps/stats-parser.Tpo .deps/stats-parser.Plo
--- stats-connection.lo ---
mv -f .deps/stats-connection.Tpo .deps/stats-connection.Plo
--- stats.lo ---
mv -f .deps/stats.Tpo .deps/stats.Plo
--- libold_stats.la ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o libold_stats.la  stats.lo stats-connection.lo  stats-parser.lo  
libtool: link: ar cru .libs/libold_stats.a .libs/stats.o .libs/stats-connection.o .libs/stats-parser.o 
libtool: link: ranlib .libs/libold_stats.a
libtool: link: ( cd ".libs" && rm -f "libold_stats.la" && ln -s "../libold_stats.la" "libold_stats.la" )
Making all in lib-http
--- test-http-date.o ---
--- test-http-url.o ---
--- test-http-header-parser.o ---
--- test-http-transfer.o ---
--- test-http-date.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dns  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-http-date.o -MD -MP -MF .deps/test-http-date.Tpo -c -o test-http-date.o test-http-date.c
--- test-http-url.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dns  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-http-url.o -MD -MP -MF .deps/test-http-url.Tpo -c -o test-http-url.o test-http-url.c
--- test-http-header-parser.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dns  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-http-header-parser.o -MD -MP -MF .deps/test-http-header-parser.Tpo -c -o test-http-header-parser.o test-http-header-parser.c
--- test-http-transfer.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dns  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-http-transfer.o -MD -MP -MF .deps/test-http-transfer.Tpo -c -o test-http-transfer.o test-http-transfer.c
--- test-http-date.o ---
mv -f .deps/test-http-date.Tpo .deps/test-http-date.Po
--- test-http-auth.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dns  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-http-auth.o -MD -MP -MF .deps/test-http-auth.Tpo -c -o test-http-auth.o test-http-auth.c
--- test-http-header-parser.o ---
mv -f .deps/test-http-header-parser.Tpo .deps/test-http-header-parser.Po
--- test-http-response-parser.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dns  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-http-response-parser.o -MD -MP -MF .deps/test-http-response-parser.Tpo -c -o test-http-response-parser.o test-http-response-parser.c
--- test-http-transfer.o ---
mv -f .deps/test-http-transfer.Tpo .deps/test-http-transfer.Po
--- test-http-request-parser.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dns  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-http-request-parser.o -MD -MP -MF .deps/test-http-request-parser.Tpo -c -o test-http-request-parser.o test-http-request-parser.c
--- test-http-url.o ---
mv -f .deps/test-http-url.Tpo .deps/test-http-url.Po
--- test-http-payload.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dns  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-http-payload.o -MD -MP -MF .deps/test-http-payload.Tpo -c -o test-http-payload.o test-http-payload.c
--- test-http-auth.o ---
mv -f .deps/test-http-auth.Tpo .deps/test-http-auth.Po
--- test-http-client-errors.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dns  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-http-client-errors.o -MD -MP -MF .deps/test-http-client-errors.Tpo -c -o test-http-client-errors.o test-http-client-errors.c
--- test-http-response-parser.o ---
mv -f .deps/test-http-response-parser.Tpo .deps/test-http-response-parser.Po
--- test-http-client-request.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dns  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-http-client-request.o -MD -MP -MF .deps/test-http-client-request.Tpo -c -o test-http-client-request.o test-http-client-request.c
--- test-http-request-parser.o ---
mv -f .deps/test-http-request-parser.Tpo .deps/test-http-request-parser.Po
--- test-http-server-errors.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dns  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-http-server-errors.o -MD -MP -MF .deps/test-http-server-errors.Tpo -c -o test-http-server-errors.o test-http-server-errors.c
--- test-http-client-request.o ---
mv -f .deps/test-http-client-request.Tpo .deps/test-http-client-request.Po
--- test-http-client.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dns  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-http-client.o -MD -MP -MF .deps/test-http-client.Tpo -c -o test-http-client.o test-http-client.c
--- test-http-server-errors.o ---
mv -f .deps/test-http-server-errors.Tpo .deps/test-http-server-errors.Po
--- test-http-server.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dns  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-http-server.o -MD -MP -MF .deps/test-http-server.Tpo -c -o test-http-server.o test-http-server.c
mv -f .deps/test-http-server.Tpo .deps/test-http-server.Po
--- http-date.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dns  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-date.lo -MD -MP -MF .deps/http-date.Tpo -c -o http-date.lo http-date.c
--- test-http-client.o ---
mv -f .deps/test-http-client.Tpo .deps/test-http-client.Po
--- http-url.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dns  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-url.lo -MD -MP -MF .deps/http-url.Tpo -c -o http-url.lo http-url.c
--- http-date.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-ssl-iostream -I../../src/lib-master -DPKG_RUNDIR=\"/var/run/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-date.lo -MD -MP -MF .deps/http-date.Tpo -c http-date.c  -fPIC -DPIC -o .libs/http-date.o
--- http-url.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-ssl-iostream -I../../src/lib-master -DPKG_RUNDIR=\"/var/run/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-url.lo -MD -MP -MF .deps/http-url.Tpo -c http-url.c  -fPIC -DPIC -o .libs/http-url.o
--- test-http-payload.o ---
mv -f .deps/test-http-payload.Tpo .deps/test-http-payload.Po
--- http-parser.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dns  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-parser.lo -MD -MP -MF .deps/http-parser.Tpo -c -o http-parser.lo http-parser.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-ssl-iostream -I../../src/lib-master -DPKG_RUNDIR=\"/var/run/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-parser.lo -MD -MP -MF .deps/http-parser.Tpo -c http-parser.c  -fPIC -DPIC -o .libs/http-parser.o
--- http-url.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-ssl-iostream -I../../src/lib-master -DPKG_RUNDIR=\"/var/run/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-url.lo -MD -MP -MF .deps/http-url.Tpo -c http-url.c -o http-url.o >/dev/null 2>&1
--- http-date.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-ssl-iostream -I../../src/lib-master -DPKG_RUNDIR=\"/var/run/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-date.lo -MD -MP -MF .deps/http-date.Tpo -c http-date.c -o http-date.o >/dev/null 2>&1
--- http-parser.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-ssl-iostream -I../../src/lib-master -DPKG_RUNDIR=\"/var/run/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-parser.lo -MD -MP -MF .deps/http-parser.Tpo -c http-parser.c -o http-parser.o >/dev/null 2>&1
--- test-http-client-errors.o ---
mv -f .deps/test-http-client-errors.Tpo .deps/test-http-client-errors.Po
--- http-header.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dns  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-header.lo -MD -MP -MF .deps/http-header.Tpo -c -o http-header.lo http-header.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-ssl-iostream -I../../src/lib-master -DPKG_RUNDIR=\"/var/run/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-header.lo -MD -MP -MF .deps/http-header.Tpo -c http-header.c  -fPIC -DPIC -o .libs/http-header.o
--- http-url.lo ---
mv -f .deps/http-url.Tpo .deps/http-url.Plo
--- http-header-parser.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dns  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-header-parser.lo -MD -MP -MF .deps/http-header-parser.Tpo -c -o http-header-parser.lo http-header-parser.c
--- http-parser.lo ---
mv -f .deps/http-parser.Tpo .deps/http-parser.Plo
--- http-transfer-chunked.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dns  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-transfer-chunked.lo -MD -MP -MF .deps/http-transfer-chunked.Tpo -c -o http-transfer-chunked.lo http-transfer-chunked.c
--- http-date.lo ---
mv -f .deps/http-date.Tpo .deps/http-date.Plo
--- http-auth.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dns  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-auth.lo -MD -MP -MF .deps/http-auth.Tpo -c -o http-auth.lo http-auth.c
--- http-header.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-ssl-iostream -I../../src/lib-master -DPKG_RUNDIR=\"/var/run/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-header.lo -MD -MP -MF .deps/http-header.Tpo -c http-header.c -o http-header.o >/dev/null 2>&1
--- http-header-parser.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-ssl-iostream -I../../src/lib-master -DPKG_RUNDIR=\"/var/run/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-header-parser.lo -MD -MP -MF .deps/http-header-parser.Tpo -c http-header-parser.c  -fPIC -DPIC -o .libs/http-header-parser.o
--- http-transfer-chunked.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-ssl-iostream -I../../src/lib-master -DPKG_RUNDIR=\"/var/run/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-transfer-chunked.lo -MD -MP -MF .deps/http-transfer-chunked.Tpo -c http-transfer-chunked.c  -fPIC -DPIC -o .libs/http-transfer-chunked.o
--- http-auth.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-ssl-iostream -I../../src/lib-master -DPKG_RUNDIR=\"/var/run/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-auth.lo -MD -MP -MF .deps/http-auth.Tpo -c http-auth.c  -fPIC -DPIC -o .libs/http-auth.o
--- http-header.lo ---
mv -f .deps/http-header.Tpo .deps/http-header.Plo
--- http-message-parser.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dns  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-message-parser.lo -MD -MP -MF .deps/http-message-parser.Tpo -c -o http-message-parser.lo http-message-parser.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-ssl-iostream -I../../src/lib-master -DPKG_RUNDIR=\"/var/run/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-message-parser.lo -MD -MP -MF .deps/http-message-parser.Tpo -c http-message-parser.c  -fPIC -DPIC -o .libs/http-message-parser.o
--- http-header-parser.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-ssl-iostream -I../../src/lib-master -DPKG_RUNDIR=\"/var/run/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-header-parser.lo -MD -MP -MF .deps/http-header-parser.Tpo -c http-header-parser.c -o http-header-parser.o >/dev/null 2>&1
--- http-auth.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-ssl-iostream -I../../src/lib-master -DPKG_RUNDIR=\"/var/run/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-auth.lo -MD -MP -MF .deps/http-auth.Tpo -c http-auth.c -o http-auth.o >/dev/null 2>&1
--- http-transfer-chunked.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-ssl-iostream -I../../src/lib-master -DPKG_RUNDIR=\"/var/run/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-transfer-chunked.lo -MD -MP -MF .deps/http-transfer-chunked.Tpo -c http-transfer-chunked.c -o http-transfer-chunked.o >/dev/null 2>&1
--- http-header-parser.lo ---
mv -f .deps/http-header-parser.Tpo .deps/http-header-parser.Plo
--- http-request.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dns  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-request.lo -MD -MP -MF .deps/http-request.Tpo -c -o http-request.lo http-request.c
--- http-message-parser.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-ssl-iostream -I../../src/lib-master -DPKG_RUNDIR=\"/var/run/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-message-parser.lo -MD -MP -MF .deps/http-message-parser.Tpo -c http-message-parser.c -o http-message-parser.o >/dev/null 2>&1
--- http-request.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-ssl-iostream -I../../src/lib-master -DPKG_RUNDIR=\"/var/run/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-request.lo -MD -MP -MF .deps/http-request.Tpo -c http-request.c  -fPIC -DPIC -o .libs/http-request.o
--- http-auth.lo ---
mv -f .deps/http-auth.Tpo .deps/http-auth.Plo
--- http-request-parser.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dns  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-request-parser.lo -MD -MP -MF .deps/http-request-parser.Tpo -c -o http-request-parser.lo http-request-parser.c
--- http-request.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-ssl-iostream -I../../src/lib-master -DPKG_RUNDIR=\"/var/run/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-request.lo -MD -MP -MF .deps/http-request.Tpo -c http-request.c -o http-request.o >/dev/null 2>&1
--- http-request-parser.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-ssl-iostream -I../../src/lib-master -DPKG_RUNDIR=\"/var/run/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-request-parser.lo -MD -MP -MF .deps/http-request-parser.Tpo -c http-request-parser.c  -fPIC -DPIC -o .libs/http-request-parser.o
--- http-request.lo ---
mv -f .deps/http-request.Tpo .deps/http-request.Plo
--- http-response.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dns  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-response.lo -MD -MP -MF .deps/http-response.Tpo -c -o http-response.lo http-response.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-ssl-iostream -I../../src/lib-master -DPKG_RUNDIR=\"/var/run/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-response.lo -MD -MP -MF .deps/http-response.Tpo -c http-response.c  -fPIC -DPIC -o .libs/http-response.o
--- http-message-parser.lo ---
mv -f .deps/http-message-parser.Tpo .deps/http-message-parser.Plo
--- http-response-parser.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dns  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-response-parser.lo -MD -MP -MF .deps/http-response-parser.Tpo -c -o http-response-parser.lo http-response-parser.c
--- http-transfer-chunked.lo ---
mv -f .deps/http-transfer-chunked.Tpo .deps/http-transfer-chunked.Plo
--- http-client-request.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dns  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-client-request.lo -MD -MP -MF .deps/http-client-request.Tpo -c -o http-client-request.lo http-client-request.c
--- http-response-parser.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-ssl-iostream -I../../src/lib-master -DPKG_RUNDIR=\"/var/run/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-response-parser.lo -MD -MP -MF .deps/http-response-parser.Tpo -c http-response-parser.c  -fPIC -DPIC -o .libs/http-response-parser.o
--- http-response.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-ssl-iostream -I../../src/lib-master -DPKG_RUNDIR=\"/var/run/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-response.lo -MD -MP -MF .deps/http-response.Tpo -c http-response.c -o http-response.o >/dev/null 2>&1
--- http-client-request.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-ssl-iostream -I../../src/lib-master -DPKG_RUNDIR=\"/var/run/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-client-request.lo -MD -MP -MF .deps/http-client-request.Tpo -c http-client-request.c  -fPIC -DPIC -o .libs/http-client-request.o
--- http-response.lo ---
mv -f .deps/http-response.Tpo .deps/http-response.Plo
--- http-client-connection.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dns  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-client-connection.lo -MD -MP -MF .deps/http-client-connection.Tpo -c -o http-client-connection.lo http-client-connection.c
--- http-request-parser.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-ssl-iostream -I../../src/lib-master -DPKG_RUNDIR=\"/var/run/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-request-parser.lo -MD -MP -MF .deps/http-request-parser.Tpo -c http-request-parser.c -o http-request-parser.o >/dev/null 2>&1
--- http-client-connection.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-ssl-iostream -I../../src/lib-master -DPKG_RUNDIR=\"/var/run/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-client-connection.lo -MD -MP -MF .deps/http-client-connection.Tpo -c http-client-connection.c  -fPIC -DPIC -o .libs/http-client-connection.o
--- http-response-parser.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-ssl-iostream -I../../src/lib-master -DPKG_RUNDIR=\"/var/run/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-response-parser.lo -MD -MP -MF .deps/http-response-parser.Tpo -c http-response-parser.c -o http-response-parser.o >/dev/null 2>&1
--- http-request-parser.lo ---
mv -f .deps/http-request-parser.Tpo .deps/http-request-parser.Plo
--- http-client-peer.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dns  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-client-peer.lo -MD -MP -MF .deps/http-client-peer.Tpo -c -o http-client-peer.lo http-client-peer.c
--- http-response-parser.lo ---
mv -f .deps/http-response-parser.Tpo .deps/http-response-parser.Plo
--- http-client-queue.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dns  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-client-queue.lo -MD -MP -MF .deps/http-client-queue.Tpo -c -o http-client-queue.lo http-client-queue.c
--- http-client-peer.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-ssl-iostream -I../../src/lib-master -DPKG_RUNDIR=\"/var/run/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-client-peer.lo -MD -MP -MF .deps/http-client-peer.Tpo -c http-client-peer.c  -fPIC -DPIC -o .libs/http-client-peer.o
--- http-client-queue.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-ssl-iostream -I../../src/lib-master -DPKG_RUNDIR=\"/var/run/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-client-queue.lo -MD -MP -MF .deps/http-client-queue.Tpo -c http-client-queue.c  -fPIC -DPIC -o .libs/http-client-queue.o
--- http-client-request.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-ssl-iostream -I../../src/lib-master -DPKG_RUNDIR=\"/var/run/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-client-request.lo -MD -MP -MF .deps/http-client-request.Tpo -c http-client-request.c -o http-client-request.o >/dev/null 2>&1
--- http-client-connection.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-ssl-iostream -I../../src/lib-master -DPKG_RUNDIR=\"/var/run/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-client-connection.lo -MD -MP -MF .deps/http-client-connection.Tpo -c http-client-connection.c -o http-client-connection.o >/dev/null 2>&1
--- http-client-queue.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-ssl-iostream -I../../src/lib-master -DPKG_RUNDIR=\"/var/run/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-client-queue.lo -MD -MP -MF .deps/http-client-queue.Tpo -c http-client-queue.c -o http-client-queue.o >/dev/null 2>&1
--- http-client-peer.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-ssl-iostream -I../../src/lib-master -DPKG_RUNDIR=\"/var/run/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-client-peer.lo -MD -MP -MF .deps/http-client-peer.Tpo -c http-client-peer.c -o http-client-peer.o >/dev/null 2>&1
--- http-client-request.lo ---
mv -f .deps/http-client-request.Tpo .deps/http-client-request.Plo
--- http-client-host.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dns  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-client-host.lo -MD -MP -MF .deps/http-client-host.Tpo -c -o http-client-host.lo http-client-host.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-ssl-iostream -I../../src/lib-master -DPKG_RUNDIR=\"/var/run/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-client-host.lo -MD -MP -MF .deps/http-client-host.Tpo -c http-client-host.c  -fPIC -DPIC -o .libs/http-client-host.o
--- http-client-queue.lo ---
mv -f .deps/http-client-queue.Tpo .deps/http-client-queue.Plo
--- http-client.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dns  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-client.lo -MD -MP -MF .deps/http-client.Tpo -c -o http-client.lo http-client.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-ssl-iostream -I../../src/lib-master -DPKG_RUNDIR=\"/var/run/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-client.lo -MD -MP -MF .deps/http-client.Tpo -c http-client.c  -fPIC -DPIC -o .libs/http-client.o
--- http-client-host.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-ssl-iostream -I../../src/lib-master -DPKG_RUNDIR=\"/var/run/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-client-host.lo -MD -MP -MF .deps/http-client-host.Tpo -c http-client-host.c -o http-client-host.o >/dev/null 2>&1
--- http-client-connection.lo ---
mv -f .deps/http-client-connection.Tpo .deps/http-client-connection.Plo
--- http-server-ostream.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dns  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-server-ostream.lo -MD -MP -MF .deps/http-server-ostream.Tpo -c -o http-server-ostream.lo http-server-ostream.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-ssl-iostream -I../../src/lib-master -DPKG_RUNDIR=\"/var/run/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-server-ostream.lo -MD -MP -MF .deps/http-server-ostream.Tpo -c http-server-ostream.c  -fPIC -DPIC -o .libs/http-server-ostream.o
--- http-client.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-ssl-iostream -I../../src/lib-master -DPKG_RUNDIR=\"/var/run/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-client.lo -MD -MP -MF .deps/http-client.Tpo -c http-client.c -o http-client.o >/dev/null 2>&1
--- http-client-peer.lo ---
mv -f .deps/http-client-peer.Tpo .deps/http-client-peer.Plo
--- http-server-response.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dns  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-server-response.lo -MD -MP -MF .deps/http-server-response.Tpo -c -o http-server-response.lo http-server-response.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-ssl-iostream -I../../src/lib-master -DPKG_RUNDIR=\"/var/run/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-server-response.lo -MD -MP -MF .deps/http-server-response.Tpo -c http-server-response.c  -fPIC -DPIC -o .libs/http-server-response.o
--- http-server-ostream.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-ssl-iostream -I../../src/lib-master -DPKG_RUNDIR=\"/var/run/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-server-ostream.lo -MD -MP -MF .deps/http-server-ostream.Tpo -c http-server-ostream.c -o http-server-ostream.o >/dev/null 2>&1
--- http-client-host.lo ---
mv -f .deps/http-client-host.Tpo .deps/http-client-host.Plo
--- http-server-request.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dns  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-server-request.lo -MD -MP -MF .deps/http-server-request.Tpo -c -o http-server-request.lo http-server-request.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-ssl-iostream -I../../src/lib-master -DPKG_RUNDIR=\"/var/run/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-server-request.lo -MD -MP -MF .deps/http-server-request.Tpo -c http-server-request.c  -fPIC -DPIC -o .libs/http-server-request.o
--- http-server-ostream.lo ---
mv -f .deps/http-server-ostream.Tpo .deps/http-server-ostream.Plo
--- http-server-connection.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dns  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-server-connection.lo -MD -MP -MF .deps/http-server-connection.Tpo -c -o http-server-connection.lo http-server-connection.c
--- http-client.lo ---
mv -f .deps/http-client.Tpo .deps/http-client.Plo
--- http-server-resource.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dns  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-server-resource.lo -MD -MP -MF .deps/http-server-resource.Tpo -c -o http-server-resource.lo http-server-resource.c
--- http-server-connection.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-ssl-iostream -I../../src/lib-master -DPKG_RUNDIR=\"/var/run/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-server-connection.lo -MD -MP -MF .deps/http-server-connection.Tpo -c http-server-connection.c  -fPIC -DPIC -o .libs/http-server-connection.o
--- http-server-resource.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-ssl-iostream -I../../src/lib-master -DPKG_RUNDIR=\"/var/run/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-server-resource.lo -MD -MP -MF .deps/http-server-resource.Tpo -c http-server-resource.c  -fPIC -DPIC -o .libs/http-server-resource.o
--- http-server-response.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-ssl-iostream -I../../src/lib-master -DPKG_RUNDIR=\"/var/run/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-server-response.lo -MD -MP -MF .deps/http-server-response.Tpo -c http-server-response.c -o http-server-response.o >/dev/null 2>&1
--- http-server-resource.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-ssl-iostream -I../../src/lib-master -DPKG_RUNDIR=\"/var/run/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-server-resource.lo -MD -MP -MF .deps/http-server-resource.Tpo -c http-server-resource.c -o http-server-resource.o >/dev/null 2>&1
--- http-server-request.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-ssl-iostream -I../../src/lib-master -DPKG_RUNDIR=\"/var/run/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-server-request.lo -MD -MP -MF .deps/http-server-request.Tpo -c http-server-request.c -o http-server-request.o >/dev/null 2>&1
--- http-server-resource.lo ---
mv -f .deps/http-server-resource.Tpo .deps/http-server-resource.Plo
--- http-server.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dns  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-server.lo -MD -MP -MF .deps/http-server.Tpo -c -o http-server.lo http-server.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-ssl-iostream -I../../src/lib-master -DPKG_RUNDIR=\"/var/run/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-server.lo -MD -MP -MF .deps/http-server.Tpo -c http-server.c  -fPIC -DPIC -o .libs/http-server.o
--- http-server-connection.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-ssl-iostream -I../../src/lib-master -DPKG_RUNDIR=\"/var/run/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-server-connection.lo -MD -MP -MF .deps/http-server-connection.Tpo -c http-server-connection.c -o http-server-connection.o >/dev/null 2>&1
--- http-server-response.lo ---
mv -f .deps/http-server-response.Tpo .deps/http-server-response.Plo
--- http-server.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-ssl-iostream -I../../src/lib-master -DPKG_RUNDIR=\"/var/run/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT http-server.lo -MD -MP -MF .deps/http-server.Tpo -c http-server.c -o http-server.o >/dev/null 2>&1
--- http-server-request.lo ---
mv -f .deps/http-server-request.Tpo .deps/http-server-request.Plo
--- http-server.lo ---
mv -f .deps/http-server.Tpo .deps/http-server.Plo
--- http-server-connection.lo ---
mv -f .deps/http-server-connection.Tpo .deps/http-server-connection.Plo
--- libhttp.la ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o libhttp.la  http-date.lo http-url.lo http-parser.lo  http-header.lo http-header-parser.lo http-transfer-chunked.lo  http-auth.lo http-message-parser.lo http-request.lo  http-request-parser.lo http-response.lo  http-response-parser.lo http-client-request.lo  http-client-connection.lo http-client-peer.lo  http-client-queue.lo http-client-host.lo http-client.lo  http-server-ostream.lo http-server-response.lo  http-server-request.lo http-server-connection.lo  http-server-resource.lo http-server.lo  
libtool: link: ar cru .libs/libhttp.a .libs/http-date.o .libs/http-url.o .libs/http-parser.o .libs/http-header.o .libs/http-header-parser.o .libs/http-transfer-chunked.o .libs/http-auth.o .libs/http-message-parser.o .libs/http-request.o .libs/http-request-parser.o .libs/http-response.o .libs/http-response-parser.o .libs/http-client-request.o .libs/http-client-connection.o .libs/http-client-peer.o .libs/http-client-queue.o .libs/http-client-host.o .libs/http-client.o .libs/http-server-ostream.o .libs/http-server-response.o .libs/http-server-request.o .libs/http-server-connection.o .libs/http-server-resource.o .libs/http-server.o 
libtool: link: ranlib .libs/libhttp.a
libtool: link: ( cd ".libs" && rm -f "libhttp.la" && ln -s "../libhttp.la" "libhttp.la" )
--- test-http-auth ---
--- test-http-client ---
--- test-http-client-errors ---
--- test-http-client-request ---
--- test-http-auth ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o test-http-auth test-http-auth.o http-auth.lo  http-parser.lo  ../lib-test/libtest.la  ../lib/liblib.la  -export-dynamic 
--- test-http-client ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -export-dynamic -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong  -o test-http-client test-http-client.o libhttp.la  ../lib-dns/libdns.la  ../lib-ssl-iostream/libssl_iostream.la  ../lib-master/libmaster.la  ../lib-auth/libauth.la  ../lib-settings/libsettings.la  ../lib-test/libtest.la  ../lib/liblib.la  -export-dynamic  ../lib-ssl-iostream/libssl_iostream_openssl.la 
--- test-http-client-errors ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -export-dynamic  -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o test-http-client-errors test-http-client-errors.o libhttp.la  ../lib-dns/libdns.la  ../lib-ssl-iostream/libssl_iostream.la  ../lib-master/libmaster.la  ../lib-auth/libauth.la  ../lib-settings/libsettings.la  ../lib-test/libtest.la  ../lib/liblib.la  -export-dynamic 
--- test-http-client-request ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -export-dynamic  -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o test-http-client-request test-http-client-request.o libhttp.la  ../lib-dns/libdns.la  ../lib-ssl-iostream/libssl_iostream.la  ../lib-master/libmaster.la  ../lib-auth/libauth.la  ../lib-settings/libsettings.la  ../lib-test/libtest.la  ../lib/liblib.la  -export-dynamic 
--- test-http-auth ---
libtool: link: cc -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o test-http-auth test-http-auth.o .libs/http-auth.o .libs/http-parser.o -Wl,--export-dynamic  -L/usr/local/lib ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a 
--- test-http-date ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o test-http-date test-http-date.o http-date.lo  ../lib-test/libtest.la  ../lib/liblib.la  -export-dynamic 
--- test-http-client-errors ---
libtool: link: cc -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o test-http-client-errors test-http-client-errors.o -Wl,--export-dynamic  -L/usr/local/lib ./.libs/libhttp.a ../lib-dns/.libs/libdns.a ../lib-ssl-iostream/.libs/libssl_iostream.a ../lib-master/.libs/libmaster.a ../lib-auth/.libs/libauth.a ../lib-settings/.libs/libsettings.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a
--- test-http-client-request ---
libtool: link: cc -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o test-http-client-request test-http-client-request.o -Wl,--export-dynamic  -L/usr/local/lib ./.libs/libhttp.a ../lib-dns/.libs/libdns.a ../lib-ssl-iostream/.libs/libssl_iostream.a ../lib-master/.libs/libmaster.a ../lib-auth/.libs/libauth.a ../lib-settings/.libs/libsettings.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a
--- test-http-date ---
libtool: link: cc -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o test-http-date test-http-date.o .libs/http-date.o -Wl,--export-dynamic  -L/usr/local/lib ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a 
--- test-http-client ---
*** Warning: Linking the executable test-http-client against the loadable module
*** libssl_iostream_openssl.so is not portable!
libtool: link: cc -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o .libs/test-http-client test-http-client.o -Wl,--export-dynamic  -L/usr/local/lib ./.libs/libhttp.a ../lib-dns/.libs/libdns.a ../lib-ssl-iostream/.libs/libssl_iostream.a ../lib-master/.libs/libmaster.a ../lib-auth/.libs/libauth.a ../lib-settings/.libs/libsettings.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a ../lib-ssl-iostream/.libs/libssl_iostream_openssl.so -Wl,-rpath -Wl,/usr/local/lib/dovecot
--- test-http-header-parser ---
--- test-http-payload ---
--- test-http-header-parser ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o test-http-header-parser test-http-header-parser.o http-parser.lo http-header-parser.lo http-header.lo ../lib-test/libtest.la  ../lib/liblib.la  -export-dynamic 
--- test-http-payload ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -export-dynamic -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong  -o test-http-payload test-http-payload.o libhttp.la  ../lib-dns/libdns.la  ../lib-ssl-iostream/libssl_iostream.la  ../lib-master/libmaster.la  ../lib-auth/libauth.la  ../lib-settings/libsettings.la  ../lib-test/libtest.la  ../lib/liblib.la  -export-dynamic  ../lib-ssl-iostream/libssl_iostream_openssl.la 
--- test-http-request-parser ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o test-http-request-parser test-http-request-parser.o http-date.lo  http-parser.lo  http-url.lo  http-header.lo  http-header-parser.lo  http-transfer-chunked.lo  http-message-parser.lo  http-request-parser.lo  ../lib-test/libtest.la  ../lib/liblib.la  -export-dynamic 
--- test-http-response-parser ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o test-http-response-parser test-http-response-parser.o http-date.lo  http-parser.lo  http-header.lo  http-header-parser.lo  http-transfer-chunked.lo  http-message-parser.lo  http-response-parser.lo  ../lib-test/libtest.la  ../lib/liblib.la  -export-dynamic 
--- test-http-header-parser ---
libtool: link: cc -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o test-http-header-parser test-http-header-parser.o .libs/http-parser.o .libs/http-header-parser.o .libs/http-header.o -Wl,--export-dynamic  -L/usr/local/lib ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a 
--- test-http-request-parser ---
libtool: link: cc -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o test-http-request-parser test-http-request-parser.o .libs/http-date.o .libs/http-parser.o .libs/http-url.o .libs/http-header.o .libs/http-header-parser.o .libs/http-transfer-chunked.o .libs/http-message-parser.o .libs/http-request-parser.o -Wl,--export-dynamic  -L/usr/local/lib ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a 
--- test-http-server ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -export-dynamic -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong  -o test-http-server test-http-server.o libhttp.la  ../lib-dns/libdns.la  ../lib-ssl-iostream/libssl_iostream.la  ../lib-master/libmaster.la  ../lib-auth/libauth.la  ../lib-settings/libsettings.la  ../lib-test/libtest.la  ../lib/liblib.la  -export-dynamic 
--- test-http-response-parser ---
libtool: link: cc -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o test-http-response-parser test-http-response-parser.o .libs/http-date.o .libs/http-parser.o .libs/http-header.o .libs/http-header-parser.o .libs/http-transfer-chunked.o .libs/http-message-parser.o .libs/http-response-parser.o -Wl,--export-dynamic  -L/usr/local/lib ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a 
--- test-http-server-errors ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -export-dynamic  -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o test-http-server-errors test-http-server-errors.o libhttp.la  ../lib-dns/libdns.la  ../lib-ssl-iostream/libssl_iostream.la  ../lib-master/libmaster.la  ../lib-auth/libauth.la  ../lib-settings/libsettings.la  ../lib-test/libtest.la  ../lib/liblib.la  -export-dynamic 
--- test-http-transfer ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o test-http-transfer test-http-transfer.o http-parser.lo  http-header-parser.lo  http-transfer-chunked.lo  http-header.lo  ../lib-test/libtest.la  ../lib/liblib.la  -export-dynamic 
--- test-http-payload ---
*** Warning: Linking the executable test-http-payload against the loadable module
*** libssl_iostream_openssl.so is not portable!
libtool: link: cc -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o .libs/test-http-payload test-http-payload.o -Wl,--export-dynamic  -L/usr/local/lib ./.libs/libhttp.a ../lib-dns/.libs/libdns.a ../lib-ssl-iostream/.libs/libssl_iostream.a ../lib-master/.libs/libmaster.a ../lib-auth/.libs/libauth.a ../lib-settings/.libs/libsettings.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a ../lib-ssl-iostream/.libs/libssl_iostream_openssl.so -Wl,-rpath -Wl,/usr/local/lib/dovecot
--- test-http-transfer ---
libtool: link: cc -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o test-http-transfer test-http-transfer.o .libs/http-parser.o .libs/http-header-parser.o .libs/http-transfer-chunked.o .libs/http-header.o -Wl,--export-dynamic  -L/usr/local/lib ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a 
--- test-http-url ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o test-http-url test-http-url.o http-url.lo http-header.lo ../lib-test/libtest.la  ../lib/liblib.la  -export-dynamic 
--- test-http-server ---
libtool: link: cc -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o test-http-server test-http-server.o -Wl,--export-dynamic  -L/usr/local/lib ./.libs/libhttp.a ../lib-dns/.libs/libdns.a ../lib-ssl-iostream/.libs/libssl_iostream.a ../lib-master/.libs/libmaster.a ../lib-auth/.libs/libauth.a ../lib-settings/.libs/libsettings.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a
--- test-http-server-errors ---
libtool: link: cc -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o test-http-server-errors test-http-server-errors.o -Wl,--export-dynamic  -L/usr/local/lib ./.libs/libhttp.a ../lib-dns/.libs/libdns.a ../lib-ssl-iostream/.libs/libssl_iostream.a ../lib-master/.libs/libmaster.a ../lib-auth/.libs/libauth.a ../lib-settings/.libs/libsettings.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a
--- test-http-url ---
libtool: link: cc -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o test-http-url test-http-url.o .libs/http-url.o .libs/http-header.o -Wl,--export-dynamic  -L/usr/local/lib ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a 
Making all in lib-fs
--- test-fs-metawrap.o ---
--- test-fs-posix.o ---
--- fs-api.lo ---
--- fs-dict.lo ---
--- test-fs-metawrap.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-ssl-iostream  -DMODULE_DIR=\""/usr/local/lib/dovecot"\"  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-fs-metawrap.o -MD -MP -MF .deps/test-fs-metawrap.Tpo -c -o test-fs-metawrap.o test-fs-metawrap.c
--- test-fs-posix.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-ssl-iostream  -DMODULE_DIR=\""/usr/local/lib/dovecot"\"  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-fs-posix.o -MD -MP -MF .deps/test-fs-posix.Tpo -c -o test-fs-posix.o test-fs-posix.c
--- fs-api.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-ssl-iostream  -DMODULE_DIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fs-api.lo -MD -MP -MF .deps/fs-api.Tpo -c -o fs-api.lo fs-api.c
--- fs-dict.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-ssl-iostream  -DMODULE_DIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fs-dict.lo -MD -MP -MF .deps/fs-dict.Tpo -c -o fs-dict.lo fs-dict.c
--- fs-api.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-ssl-iostream -DMODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fs-api.lo -MD -MP -MF .deps/fs-api.Tpo -c fs-api.c  -fPIC -DPIC -o .libs/fs-api.o
--- fs-dict.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-ssl-iostream -DMODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fs-dict.lo -MD -MP -MF .deps/fs-dict.Tpo -c fs-dict.c  -fPIC -DPIC -o .libs/fs-dict.o
--- test-fs-metawrap.o ---
mv -f .deps/test-fs-metawrap.Tpo .deps/test-fs-metawrap.Po
--- fs-metawrap.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-ssl-iostream  -DMODULE_DIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fs-metawrap.lo -MD -MP -MF .deps/fs-metawrap.Tpo -c -o fs-metawrap.lo fs-metawrap.c
--- test-fs-posix.o ---
mv -f .deps/test-fs-posix.Tpo .deps/test-fs-posix.Po
--- fs-randomfail.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-ssl-iostream  -DMODULE_DIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fs-randomfail.lo -MD -MP -MF .deps/fs-randomfail.Tpo -c -o fs-randomfail.lo fs-randomfail.c
--- fs-metawrap.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-ssl-iostream -DMODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fs-metawrap.lo -MD -MP -MF .deps/fs-metawrap.Tpo -c fs-metawrap.c  -fPIC -DPIC -o .libs/fs-metawrap.o
--- fs-randomfail.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-ssl-iostream -DMODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fs-randomfail.lo -MD -MP -MF .deps/fs-randomfail.Tpo -c fs-randomfail.c  -fPIC -DPIC -o .libs/fs-randomfail.o
--- fs-dict.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-ssl-iostream -DMODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fs-dict.lo -MD -MP -MF .deps/fs-dict.Tpo -c fs-dict.c -o fs-dict.o >/dev/null 2>&1
--- fs-metawrap.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-ssl-iostream -DMODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fs-metawrap.lo -MD -MP -MF .deps/fs-metawrap.Tpo -c fs-metawrap.c -o fs-metawrap.o >/dev/null 2>&1
--- fs-dict.lo ---
mv -f .deps/fs-dict.Tpo .deps/fs-dict.Plo
--- fs-posix.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-ssl-iostream  -DMODULE_DIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fs-posix.lo -MD -MP -MF .deps/fs-posix.Tpo -c -o fs-posix.lo fs-posix.c
--- fs-randomfail.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-ssl-iostream -DMODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fs-randomfail.lo -MD -MP -MF .deps/fs-randomfail.Tpo -c fs-randomfail.c -o fs-randomfail.o >/dev/null 2>&1
--- fs-posix.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-ssl-iostream -DMODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fs-posix.lo -MD -MP -MF .deps/fs-posix.Tpo -c fs-posix.c  -fPIC -DPIC -o .libs/fs-posix.o
--- fs-metawrap.lo ---
mv -f .deps/fs-metawrap.Tpo .deps/fs-metawrap.Plo
--- fs-test.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-ssl-iostream  -DMODULE_DIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fs-test.lo -MD -MP -MF .deps/fs-test.Tpo -c -o fs-test.lo fs-test.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-ssl-iostream -DMODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fs-test.lo -MD -MP -MF .deps/fs-test.Tpo -c fs-test.c  -fPIC -DPIC -o .libs/fs-test.o
--- fs-randomfail.lo ---
mv -f .deps/fs-randomfail.Tpo .deps/fs-randomfail.Plo
--- fs-test-async.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-ssl-iostream  -DMODULE_DIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fs-test-async.lo -MD -MP -MF .deps/fs-test-async.Tpo -c -o fs-test-async.lo fs-test-async.c
--- fs-api.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-ssl-iostream -DMODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fs-api.lo -MD -MP -MF .deps/fs-api.Tpo -c fs-api.c -o fs-api.o >/dev/null 2>&1
--- fs-test-async.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-ssl-iostream -DMODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fs-test-async.lo -MD -MP -MF .deps/fs-test-async.Tpo -c fs-test-async.c  -fPIC -DPIC -o .libs/fs-test-async.o
--- fs-test.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-ssl-iostream -DMODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fs-test.lo -MD -MP -MF .deps/fs-test.Tpo -c fs-test.c -o fs-test.o >/dev/null 2>&1
--- fs-posix.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-ssl-iostream -DMODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fs-posix.lo -MD -MP -MF .deps/fs-posix.Tpo -c fs-posix.c -o fs-posix.o >/dev/null 2>&1
--- fs-test-async.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-ssl-iostream -DMODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fs-test-async.lo -MD -MP -MF .deps/fs-test-async.Tpo -c fs-test-async.c -o fs-test-async.o >/dev/null 2>&1
mv -f .deps/fs-test-async.Tpo .deps/fs-test-async.Plo
--- fs-sis.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-ssl-iostream  -DMODULE_DIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fs-sis.lo -MD -MP -MF .deps/fs-sis.Tpo -c -o fs-sis.lo fs-sis.c
--- fs-test.lo ---
mv -f .deps/fs-test.Tpo .deps/fs-test.Plo
--- fs-sis-common.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-ssl-iostream  -DMODULE_DIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fs-sis-common.lo -MD -MP -MF .deps/fs-sis-common.Tpo -c -o fs-sis-common.lo fs-sis-common.c
--- fs-sis.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-ssl-iostream -DMODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fs-sis.lo -MD -MP -MF .deps/fs-sis.Tpo -c fs-sis.c  -fPIC -DPIC -o .libs/fs-sis.o
--- fs-sis-common.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-ssl-iostream -DMODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fs-sis-common.lo -MD -MP -MF .deps/fs-sis-common.Tpo -c fs-sis-common.c  -fPIC -DPIC -o .libs/fs-sis-common.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-ssl-iostream -DMODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fs-sis-common.lo -MD -MP -MF .deps/fs-sis-common.Tpo -c fs-sis-common.c -o fs-sis-common.o >/dev/null 2>&1
--- fs-sis.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-ssl-iostream -DMODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fs-sis.lo -MD -MP -MF .deps/fs-sis.Tpo -c fs-sis.c -o fs-sis.o >/dev/null 2>&1
--- fs-posix.lo ---
mv -f .deps/fs-posix.Tpo .deps/fs-posix.Plo
--- fs-sis-queue.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-ssl-iostream  -DMODULE_DIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fs-sis-queue.lo -MD -MP -MF .deps/fs-sis-queue.Tpo -c -o fs-sis-queue.lo fs-sis-queue.c
--- fs-sis-common.lo ---
mv -f .deps/fs-sis-common.Tpo .deps/fs-sis-common.Plo
--- fs-wrapper.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-ssl-iostream  -DMODULE_DIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fs-wrapper.lo -MD -MP -MF .deps/fs-wrapper.Tpo -c -o fs-wrapper.lo fs-wrapper.c
--- fs-sis-queue.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-ssl-iostream -DMODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fs-sis-queue.lo -MD -MP -MF .deps/fs-sis-queue.Tpo -c fs-sis-queue.c  -fPIC -DPIC -o .libs/fs-sis-queue.o
--- fs-wrapper.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-ssl-iostream -DMODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fs-wrapper.lo -MD -MP -MF .deps/fs-wrapper.Tpo -c fs-wrapper.c  -fPIC -DPIC -o .libs/fs-wrapper.o
--- fs-api.lo ---
mv -f .deps/fs-api.Tpo .deps/fs-api.Plo
--- istream-fs-file.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-ssl-iostream  -DMODULE_DIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-fs-file.lo -MD -MP -MF .deps/istream-fs-file.Tpo -c -o istream-fs-file.lo istream-fs-file.c
--- fs-sis.lo ---
mv -f .deps/fs-sis.Tpo .deps/fs-sis.Plo
--- istream-fs-stats.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-ssl-iostream  -DMODULE_DIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-fs-stats.lo -MD -MP -MF .deps/istream-fs-stats.Tpo -c -o istream-fs-stats.lo istream-fs-stats.c
--- fs-sis-queue.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-ssl-iostream -DMODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fs-sis-queue.lo -MD -MP -MF .deps/fs-sis-queue.Tpo -c fs-sis-queue.c -o fs-sis-queue.o >/dev/null 2>&1
--- fs-wrapper.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-ssl-iostream -DMODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fs-wrapper.lo -MD -MP -MF .deps/fs-wrapper.Tpo -c fs-wrapper.c -o fs-wrapper.o >/dev/null 2>&1
--- istream-fs-file.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-ssl-iostream -DMODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-fs-file.lo -MD -MP -MF .deps/istream-fs-file.Tpo -c istream-fs-file.c  -fPIC -DPIC -o .libs/istream-fs-file.o
--- istream-fs-stats.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-ssl-iostream -DMODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-fs-stats.lo -MD -MP -MF .deps/istream-fs-stats.Tpo -c istream-fs-stats.c  -fPIC -DPIC -o .libs/istream-fs-stats.o
--- istream-fs-file.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-ssl-iostream -DMODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-fs-file.lo -MD -MP -MF .deps/istream-fs-file.Tpo -c istream-fs-file.c -o istream-fs-file.o >/dev/null 2>&1
--- istream-fs-stats.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-ssl-iostream -DMODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-fs-stats.lo -MD -MP -MF .deps/istream-fs-stats.Tpo -c istream-fs-stats.c -o istream-fs-stats.o >/dev/null 2>&1
--- fs-wrapper.lo ---
mv -f .deps/fs-wrapper.Tpo .deps/fs-wrapper.Plo
--- istream-metawrap.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-ssl-iostream  -DMODULE_DIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-metawrap.lo -MD -MP -MF .deps/istream-metawrap.Tpo -c -o istream-metawrap.lo istream-metawrap.c
--- fs-sis-queue.lo ---
mv -f .deps/fs-sis-queue.Tpo .deps/fs-sis-queue.Plo
--- ostream-metawrap.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-ssl-iostream  -DMODULE_DIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ostream-metawrap.lo -MD -MP -MF .deps/ostream-metawrap.Tpo -c -o ostream-metawrap.lo ostream-metawrap.c
--- istream-metawrap.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-ssl-iostream -DMODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-metawrap.lo -MD -MP -MF .deps/istream-metawrap.Tpo -c istream-metawrap.c  -fPIC -DPIC -o .libs/istream-metawrap.o
--- ostream-metawrap.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-ssl-iostream -DMODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ostream-metawrap.lo -MD -MP -MF .deps/ostream-metawrap.Tpo -c ostream-metawrap.c  -fPIC -DPIC -o .libs/ostream-metawrap.o
--- istream-fs-stats.lo ---
mv -f .deps/istream-fs-stats.Tpo .deps/istream-fs-stats.Plo
--- ostream-cmp.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-ssl-iostream  -DMODULE_DIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ostream-cmp.lo -MD -MP -MF .deps/ostream-cmp.Tpo -c -o ostream-cmp.lo ostream-cmp.c
--- istream-fs-file.lo ---
mv -f .deps/istream-fs-file.Tpo .deps/istream-fs-file.Plo
--- ostream-cmp.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-ssl-iostream -DMODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ostream-cmp.lo -MD -MP -MF .deps/ostream-cmp.Tpo -c ostream-cmp.c  -fPIC -DPIC -o .libs/ostream-cmp.o
--- ostream-metawrap.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-ssl-iostream -DMODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ostream-metawrap.lo -MD -MP -MF .deps/ostream-metawrap.Tpo -c ostream-metawrap.c -o ostream-metawrap.o >/dev/null 2>&1
--- istream-metawrap.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-ssl-iostream -DMODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-metawrap.lo -MD -MP -MF .deps/istream-metawrap.Tpo -c istream-metawrap.c -o istream-metawrap.o >/dev/null 2>&1
--- ostream-metawrap.lo ---
mv -f .deps/ostream-metawrap.Tpo .deps/ostream-metawrap.Plo
--- ostream-cmp.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-ssl-iostream -DMODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ostream-cmp.lo -MD -MP -MF .deps/ostream-cmp.Tpo -c ostream-cmp.c -o ostream-cmp.o >/dev/null 2>&1
--- istream-metawrap.lo ---
mv -f .deps/istream-metawrap.Tpo .deps/istream-metawrap.Plo
--- ostream-cmp.lo ---
mv -f .deps/ostream-cmp.Tpo .deps/ostream-cmp.Plo
--- libfs.la ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o libfs.la  fs-api.lo fs-dict.lo fs-metawrap.lo  fs-randomfail.lo fs-posix.lo fs-test.lo fs-test-async.lo  fs-sis.lo fs-sis-common.lo fs-sis-queue.lo fs-wrapper.lo  istream-fs-file.lo istream-fs-stats.lo istream-metawrap.lo  ostream-metawrap.lo ostream-cmp.lo  
libtool: link: ar cru .libs/libfs.a .libs/fs-api.o .libs/fs-dict.o .libs/fs-metawrap.o .libs/fs-randomfail.o .libs/fs-posix.o .libs/fs-test.o .libs/fs-test-async.o .libs/fs-sis.o .libs/fs-sis-common.o .libs/fs-sis-queue.o .libs/fs-wrapper.o .libs/istream-fs-file.o .libs/istream-fs-stats.o .libs/istream-metawrap.o .libs/ostream-metawrap.o .libs/ostream-cmp.o 
libtool: link: ranlib .libs/libfs.a
libtool: link: ( cd ".libs" && rm -f "libfs.la" && ln -s "../libfs.la" "libfs.la" )
--- test-fs-metawrap ---
--- test-fs-posix ---
--- test-fs-metawrap ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o test-fs-metawrap test-fs-metawrap.o libfs.la  ../lib-dict/libdict.la  ../lib-test/libtest.la  ../lib/liblib.la  -export-dynamic 
--- test-fs-posix ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o test-fs-posix test-fs-posix.o libfs.la  ../lib-dict/libdict.la  ../lib-test/libtest.la  ../lib/liblib.la  -export-dynamic 
--- test-fs-metawrap ---
libtool: link: cc -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o test-fs-metawrap test-fs-metawrap.o -Wl,--export-dynamic  -L/usr/local/lib ./.libs/libfs.a ../lib-dict/.libs/libdict.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a
--- test-fs-posix ---
libtool: link: cc -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o test-fs-posix test-fs-posix.o -Wl,--export-dynamic  -L/usr/local/lib ./.libs/libfs.a ../lib-dict/.libs/libdict.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a
Making all in lib-mail
--- test-istream-dot.o ---
--- test-istream-attachment.o ---
--- test-istream-binary-converter.o ---
--- test-istream-header-filter.o ---
--- test-istream-dot.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-istream-dot.o -MD -MP -MF .deps/test-istream-dot.Tpo -c -o test-istream-dot.o test-istream-dot.c
--- test-istream-attachment.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-istream-attachment.o -MD -MP -MF .deps/test-istream-attachment.Tpo -c -o test-istream-attachment.o test-istream-attachment.c
--- test-istream-binary-converter.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-istream-binary-converter.o -MD -MP -MF .deps/test-istream-binary-converter.Tpo -c -o test-istream-binary-converter.o test-istream-binary-converter.c
--- test-istream-header-filter.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-istream-header-filter.o -MD -MP -MF .deps/test-istream-header-filter.Tpo -c -o test-istream-header-filter.o test-istream-header-filter.c
--- test-istream-binary-converter.o ---
mv -f .deps/test-istream-binary-converter.Tpo .deps/test-istream-binary-converter.Po
--- test-istream-qp-decoder.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-istream-qp-decoder.o -MD -MP -MF .deps/test-istream-qp-decoder.Tpo -c -o test-istream-qp-decoder.o test-istream-qp-decoder.c
--- test-istream-dot.o ---
mv -f .deps/test-istream-dot.Tpo .deps/test-istream-dot.Po
--- test-istream-qp-encoder.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-istream-qp-encoder.o -MD -MP -MF .deps/test-istream-qp-encoder.Tpo -c -o test-istream-qp-encoder.o test-istream-qp-encoder.c
--- test-istream-attachment.o ---
mv -f .deps/test-istream-attachment.Tpo .deps/test-istream-attachment.Po
--- test-mail-html2text.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-mail-html2text.o -MD -MP -MF .deps/test-mail-html2text.Tpo -c -o test-mail-html2text.o test-mail-html2text.c
--- test-istream-qp-encoder.o ---
mv -f .deps/test-istream-qp-encoder.Tpo .deps/test-istream-qp-encoder.Po
--- test-mail-user-hash.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-mail-user-hash.o -MD -MP -MF .deps/test-mail-user-hash.Tpo -c -o test-mail-user-hash.o test-mail-user-hash.c
--- test-istream-header-filter.o ---
mv -f .deps/test-istream-header-filter.Tpo .deps/test-istream-header-filter.Po
--- test-mbox-from.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-mbox-from.o -MD -MP -MF .deps/test-mbox-from.Tpo -c -o test-mbox-from.o test-mbox-from.c
--- test-istream-qp-decoder.o ---
mv -f .deps/test-istream-qp-decoder.Tpo .deps/test-istream-qp-decoder.Po
--- test-message-address.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-message-address.o -MD -MP -MF .deps/test-message-address.Tpo -c -o test-message-address.o test-message-address.c
--- test-mail-user-hash.o ---
mv -f .deps/test-mail-user-hash.Tpo .deps/test-mail-user-hash.Po
--- test-message-date.o ---
--- test-mail-html2text.o ---
mv -f .deps/test-mail-html2text.Tpo .deps/test-mail-html2text.Po
--- test-message-date.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-message-date.o -MD -MP -MF .deps/test-message-date.Tpo -c -o test-message-date.o test-message-date.c
--- test-message-decoder.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-message-decoder.o -MD -MP -MF .deps/test-message-decoder.Tpo -c -o test-message-decoder.o test-message-decoder.c
--- test-mbox-from.o ---
mv -f .deps/test-mbox-from.Tpo .deps/test-mbox-from.Po
--- test-message-header-decode.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-message-header-decode.o -MD -MP -MF .deps/test-message-header-decode.Tpo -c -o test-message-header-decode.o test-message-header-decode.c
--- test-message-date.o ---
mv -f .deps/test-message-date.Tpo .deps/test-message-date.Po
--- test-message-header-encode.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-message-header-encode.o -MD -MP -MF .deps/test-message-header-encode.Tpo -c -o test-message-header-encode.o test-message-header-encode.c
--- test-message-header-decode.o ---
mv -f .deps/test-message-header-decode.Tpo .deps/test-message-header-decode.Po
--- test-message-header-hash.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-message-header-hash.o -MD -MP -MF .deps/test-message-header-hash.Tpo -c -o test-message-header-hash.o test-message-header-hash.c
--- test-message-address.o ---
mv -f .deps/test-message-address.Tpo .deps/test-message-address.Po
--- test-message-header-parser.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-message-header-parser.o -MD -MP -MF .deps/test-message-header-parser.Tpo -c -o test-message-header-parser.o test-message-header-parser.c
--- test-message-header-encode.o ---
mv -f .deps/test-message-header-encode.Tpo .deps/test-message-header-encode.Po
--- test-message-decoder.o ---
mv -f .deps/test-message-decoder.Tpo .deps/test-message-decoder.Po
--- test-message-id.o ---
--- test-message-parser.o ---
--- test-message-id.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-message-id.o -MD -MP -MF .deps/test-message-id.Tpo -c -o test-message-id.o test-message-id.c
--- test-message-parser.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-message-parser.o -MD -MP -MF .deps/test-message-parser.Tpo -c -o test-message-parser.o test-message-parser.c
--- test-message-header-hash.o ---
mv -f .deps/test-message-header-hash.Tpo .deps/test-message-header-hash.Po
--- test-message-part.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-message-part.o -MD -MP -MF .deps/test-message-part.Tpo -c -o test-message-part.o test-message-part.c
--- test-message-id.o ---
mv -f .deps/test-message-id.Tpo .deps/test-message-id.Po
--- test-message-part-serialize.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-message-part-serialize.o -MD -MP -MF .deps/test-message-part-serialize.Tpo -c -o test-message-part-serialize.o test-message-part-serialize.c
--- test-message-part.o ---
mv -f .deps/test-message-part.Tpo .deps/test-message-part.Po
--- test-message-search.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-message-search.o -MD -MP -MF .deps/test-message-search.Tpo -c -o test-message-search.o test-message-search.c
--- test-message-part-serialize.o ---
mv -f .deps/test-message-part-serialize.Tpo .deps/test-message-part-serialize.Po
--- test-message-size.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-message-size.o -MD -MP -MF .deps/test-message-size.Tpo -c -o test-message-size.o test-message-size.c
--- test-message-search.o ---
mv -f .deps/test-message-search.Tpo .deps/test-message-search.Po
--- test-message-snippet.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-message-snippet.o -MD -MP -MF .deps/test-message-snippet.Tpo -c -o test-message-snippet.o test-message-snippet.c
--- test-message-header-parser.o ---
mv -f .deps/test-message-header-parser.Tpo .deps/test-message-header-parser.Po
--- test-ostream-dot.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-ostream-dot.o -MD -MP -MF .deps/test-ostream-dot.Tpo -c -o test-ostream-dot.o test-ostream-dot.c
--- test-message-size.o ---
mv -f .deps/test-message-size.Tpo .deps/test-message-size.Po
--- test-qp-decoder.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-qp-decoder.o -MD -MP -MF .deps/test-qp-decoder.Tpo -c -o test-qp-decoder.o test-qp-decoder.c
--- test-message-snippet.o ---
mv -f .deps/test-message-snippet.Tpo .deps/test-message-snippet.Po
--- test-qp-encoder.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-qp-encoder.o -MD -MP -MF .deps/test-qp-encoder.Tpo -c -o test-qp-encoder.o test-qp-encoder.c
--- test-ostream-dot.o ---
mv -f .deps/test-ostream-dot.Tpo .deps/test-ostream-dot.Po
--- test-quoted-printable.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-quoted-printable.o -MD -MP -MF .deps/test-quoted-printable.Tpo -c -o test-quoted-printable.o test-quoted-printable.c
--- test-qp-decoder.o ---
mv -f .deps/test-qp-decoder.Tpo .deps/test-qp-decoder.Po
--- test-rfc2231-parser.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-rfc2231-parser.o -MD -MP -MF .deps/test-rfc2231-parser.Tpo -c -o test-rfc2231-parser.o test-rfc2231-parser.c
--- test-quoted-printable.o ---
mv -f .deps/test-quoted-printable.Tpo .deps/test-quoted-printable.Po
--- test-rfc822-parser.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-rfc822-parser.o -MD -MP -MF .deps/test-rfc822-parser.Tpo -c -o test-rfc822-parser.o test-rfc822-parser.c
--- test-qp-encoder.o ---
mv -f .deps/test-qp-encoder.Tpo .deps/test-qp-encoder.Po
--- istream-attachment-connector.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-attachment-connector.lo -MD -MP -MF .deps/istream-attachment-connector.Tpo -c -o istream-attachment-connector.lo istream-attachment-connector.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-attachment-connector.lo -MD -MP -MF .deps/istream-attachment-connector.Tpo -c istream-attachment-connector.c  -fPIC -DPIC -o .libs/istream-attachment-connector.o
--- test-rfc2231-parser.o ---
mv -f .deps/test-rfc2231-parser.Tpo .deps/test-rfc2231-parser.Po
--- istream-attachment-extractor.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-attachment-extractor.lo -MD -MP -MF .deps/istream-attachment-extractor.Tpo -c -o istream-attachment-extractor.lo istream-attachment-extractor.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-attachment-extractor.lo -MD -MP -MF .deps/istream-attachment-extractor.Tpo -c istream-attachment-extractor.c  -fPIC -DPIC -o .libs/istream-attachment-extractor.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- istream-attachment-connector.lo ---
../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-attachment-connector.lo -MD -MP -MF .deps/istream-attachment-connector.Tpo -c istream-attachment-connector.c -o istream-attachment-connector.o >/dev/null 2>&1
--- test-rfc822-parser.o ---
mv -f .deps/test-rfc822-parser.Tpo .deps/test-rfc822-parser.Po
--- istream-binary-converter.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-binary-converter.lo -MD -MP -MF .deps/istream-binary-converter.Tpo -c -o istream-binary-converter.lo istream-binary-converter.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-binary-converter.lo -MD -MP -MF .deps/istream-binary-converter.Tpo -c istream-binary-converter.c  -fPIC -DPIC -o .libs/istream-binary-converter.o
--- test-message-parser.o ---
mv -f .deps/test-message-parser.Tpo .deps/test-message-parser.Po
--- istream-attachment-connector.lo ---
mv -f .deps/istream-attachment-connector.Tpo .deps/istream-attachment-connector.Plo
--- istream-dot.lo ---
--- istream-header-filter.lo ---
--- istream-dot.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-dot.lo -MD -MP -MF .deps/istream-dot.Tpo -c -o istream-dot.lo istream-dot.c
--- istream-header-filter.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-header-filter.lo -MD -MP -MF .deps/istream-header-filter.Tpo -c -o istream-header-filter.lo istream-header-filter.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- istream-dot.lo ---
../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-dot.lo -MD -MP -MF .deps/istream-dot.Tpo -c istream-dot.c  -fPIC -DPIC -o .libs/istream-dot.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- istream-header-filter.lo ---
../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-header-filter.lo -MD -MP -MF .deps/istream-header-filter.Tpo -c istream-header-filter.c  -fPIC -DPIC -o .libs/istream-header-filter.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- istream-binary-converter.lo ---
../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-binary-converter.lo -MD -MP -MF .deps/istream-binary-converter.Tpo -c istream-binary-converter.c -o istream-binary-converter.o >/dev/null 2>&1
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- istream-attachment-extractor.lo ---
../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-attachment-extractor.lo -MD -MP -MF .deps/istream-attachment-extractor.Tpo -c istream-attachment-extractor.c -o istream-attachment-extractor.o >/dev/null 2>&1
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- istream-dot.lo ---
../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-dot.lo -MD -MP -MF .deps/istream-dot.Tpo -c istream-dot.c -o istream-dot.o >/dev/null 2>&1
--- istream-binary-converter.lo ---
mv -f .deps/istream-binary-converter.Tpo .deps/istream-binary-converter.Plo
--- istream-nonuls.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-nonuls.lo -MD -MP -MF .deps/istream-nonuls.Tpo -c -o istream-nonuls.lo istream-nonuls.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-nonuls.lo -MD -MP -MF .deps/istream-nonuls.Tpo -c istream-nonuls.c  -fPIC -DPIC -o .libs/istream-nonuls.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- istream-header-filter.lo ---
../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-header-filter.lo -MD -MP -MF .deps/istream-header-filter.Tpo -c istream-header-filter.c -o istream-header-filter.o >/dev/null 2>&1
--- istream-dot.lo ---
mv -f .deps/istream-dot.Tpo .deps/istream-dot.Plo
--- istream-qp-decoder.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-qp-decoder.lo -MD -MP -MF .deps/istream-qp-decoder.Tpo -c -o istream-qp-decoder.lo istream-qp-decoder.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-qp-decoder.lo -MD -MP -MF .deps/istream-qp-decoder.Tpo -c istream-qp-decoder.c  -fPIC -DPIC -o .libs/istream-qp-decoder.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- istream-nonuls.lo ---
../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-nonuls.lo -MD -MP -MF .deps/istream-nonuls.Tpo -c istream-nonuls.c -o istream-nonuls.o >/dev/null 2>&1
--- istream-attachment-extractor.lo ---
mv -f .deps/istream-attachment-extractor.Tpo .deps/istream-attachment-extractor.Plo
--- istream-qp-encoder.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-qp-encoder.lo -MD -MP -MF .deps/istream-qp-encoder.Tpo -c -o istream-qp-encoder.lo istream-qp-encoder.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-qp-encoder.lo -MD -MP -MF .deps/istream-qp-encoder.Tpo -c istream-qp-encoder.c  -fPIC -DPIC -o .libs/istream-qp-encoder.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- istream-qp-decoder.lo ---
../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-qp-decoder.lo -MD -MP -MF .deps/istream-qp-decoder.Tpo -c istream-qp-decoder.c -o istream-qp-decoder.o >/dev/null 2>&1
--- istream-nonuls.lo ---
mv -f .deps/istream-nonuls.Tpo .deps/istream-nonuls.Plo
--- mail-html2text.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mail-html2text.lo -MD -MP -MF .deps/mail-html2text.Tpo -c -o mail-html2text.lo mail-html2text.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mail-html2text.lo -MD -MP -MF .deps/mail-html2text.Tpo -c mail-html2text.c  -fPIC -DPIC -o .libs/mail-html2text.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- istream-qp-encoder.lo ---
../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-qp-encoder.lo -MD -MP -MF .deps/istream-qp-encoder.Tpo -c istream-qp-encoder.c -o istream-qp-encoder.o >/dev/null 2>&1
--- istream-qp-decoder.lo ---
mv -f .deps/istream-qp-decoder.Tpo .deps/istream-qp-decoder.Plo
--- mail-user-hash.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mail-user-hash.lo -MD -MP -MF .deps/mail-user-hash.Tpo -c -o mail-user-hash.lo mail-user-hash.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mail-user-hash.lo -MD -MP -MF .deps/mail-user-hash.Tpo -c mail-user-hash.c  -fPIC -DPIC -o .libs/mail-user-hash.o
--- istream-header-filter.lo ---
mv -f .deps/istream-header-filter.Tpo .deps/istream-header-filter.Plo
--- mbox-from.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mbox-from.lo -MD -MP -MF .deps/mbox-from.Tpo -c -o mbox-from.lo mbox-from.c
--- istream-qp-encoder.lo ---
mv -f .deps/istream-qp-encoder.Tpo .deps/istream-qp-encoder.Plo
--- message-address.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT message-address.lo -MD -MP -MF .deps/message-address.Tpo -c -o message-address.lo message-address.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- mail-user-hash.lo ---
../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mail-user-hash.lo -MD -MP -MF .deps/mail-user-hash.Tpo -c mail-user-hash.c -o mail-user-hash.o >/dev/null 2>&1
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- mbox-from.lo ---
../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mbox-from.lo -MD -MP -MF .deps/mbox-from.Tpo -c mbox-from.c  -fPIC -DPIC -o .libs/mbox-from.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- message-address.lo ---
../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT message-address.lo -MD -MP -MF .deps/message-address.Tpo -c message-address.c  -fPIC -DPIC -o .libs/message-address.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- mail-html2text.lo ---
../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mail-html2text.lo -MD -MP -MF .deps/mail-html2text.Tpo -c mail-html2text.c -o mail-html2text.o >/dev/null 2>&1
--- mail-user-hash.lo ---
mv -f .deps/mail-user-hash.Tpo .deps/mail-user-hash.Plo
--- message-binary-part.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT message-binary-part.lo -MD -MP -MF .deps/message-binary-part.Tpo -c -o message-binary-part.lo message-binary-part.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT message-binary-part.lo -MD -MP -MF .deps/message-binary-part.Tpo -c message-binary-part.c  -fPIC -DPIC -o .libs/message-binary-part.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT message-binary-part.lo -MD -MP -MF .deps/message-binary-part.Tpo -c message-binary-part.c -o message-binary-part.o >/dev/null 2>&1
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- mbox-from.lo ---
../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mbox-from.lo -MD -MP -MF .deps/mbox-from.Tpo -c mbox-from.c -o mbox-from.o >/dev/null 2>&1
--- mail-html2text.lo ---
mv -f .deps/mail-html2text.Tpo .deps/mail-html2text.Plo
--- message-date.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT message-date.lo -MD -MP -MF .deps/message-date.Tpo -c -o message-date.lo message-date.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT message-date.lo -MD -MP -MF .deps/message-date.Tpo -c message-date.c  -fPIC -DPIC -o .libs/message-date.o
--- message-binary-part.lo ---
mv -f .deps/message-binary-part.Tpo .deps/message-binary-part.Plo
--- message-decoder.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT message-decoder.lo -MD -MP -MF .deps/message-decoder.Tpo -c -o message-decoder.lo message-decoder.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- message-address.lo ---
../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT message-address.lo -MD -MP -MF .deps/message-address.Tpo -c message-address.c -o message-address.o >/dev/null 2>&1
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- message-decoder.lo ---
../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT message-decoder.lo -MD -MP -MF .deps/message-decoder.Tpo -c message-decoder.c  -fPIC -DPIC -o .libs/message-decoder.o
--- mbox-from.lo ---
mv -f .deps/mbox-from.Tpo .deps/mbox-from.Plo
--- message-header-decode.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT message-header-decode.lo -MD -MP -MF .deps/message-header-decode.Tpo -c -o message-header-decode.lo message-header-decode.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT message-header-decode.lo -MD -MP -MF .deps/message-header-decode.Tpo -c message-header-decode.c  -fPIC -DPIC -o .libs/message-header-decode.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- message-date.lo ---
../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT message-date.lo -MD -MP -MF .deps/message-date.Tpo -c message-date.c -o message-date.o >/dev/null 2>&1
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- message-decoder.lo ---
../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT message-decoder.lo -MD -MP -MF .deps/message-decoder.Tpo -c message-decoder.c -o message-decoder.o >/dev/null 2>&1
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- message-header-decode.lo ---
../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT message-header-decode.lo -MD -MP -MF .deps/message-header-decode.Tpo -c message-header-decode.c -o message-header-decode.o >/dev/null 2>&1
--- message-address.lo ---
mv -f .deps/message-address.Tpo .deps/message-address.Plo
--- message-header-encode.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT message-header-encode.lo -MD -MP -MF .deps/message-header-encode.Tpo -c -o message-header-encode.lo message-header-encode.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT message-header-encode.lo -MD -MP -MF .deps/message-header-encode.Tpo -c message-header-encode.c  -fPIC -DPIC -o .libs/message-header-encode.o
--- message-date.lo ---
mv -f .deps/message-date.Tpo .deps/message-date.Plo
--- message-header-hash.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT message-header-hash.lo -MD -MP -MF .deps/message-header-hash.Tpo -c -o message-header-hash.lo message-header-hash.c
--- message-header-decode.lo ---
mv -f .deps/message-header-decode.Tpo .deps/message-header-decode.Plo
--- message-header-parser.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT message-header-parser.lo -MD -MP -MF .deps/message-header-parser.Tpo -c -o message-header-parser.lo message-header-parser.c
--- message-decoder.lo ---
mv -f .deps/message-decoder.Tpo .deps/message-decoder.Plo
--- message-id.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT message-id.lo -MD -MP -MF .deps/message-id.Tpo -c -o message-id.lo message-id.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- message-header-hash.lo ---
../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT message-header-hash.lo -MD -MP -MF .deps/message-header-hash.Tpo -c message-header-hash.c  -fPIC -DPIC -o .libs/message-header-hash.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- message-header-parser.lo ---
../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT message-header-parser.lo -MD -MP -MF .deps/message-header-parser.Tpo -c message-header-parser.c  -fPIC -DPIC -o .libs/message-header-parser.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- message-id.lo ---
../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT message-id.lo -MD -MP -MF .deps/message-id.Tpo -c message-id.c  -fPIC -DPIC -o .libs/message-id.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- message-header-hash.lo ---
../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT message-header-hash.lo -MD -MP -MF .deps/message-header-hash.Tpo -c message-header-hash.c -o message-header-hash.o >/dev/null 2>&1
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- message-header-encode.lo ---
../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT message-header-encode.lo -MD -MP -MF .deps/message-header-encode.Tpo -c message-header-encode.c -o message-header-encode.o >/dev/null 2>&1
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- message-id.lo ---
../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT message-id.lo -MD -MP -MF .deps/message-id.Tpo -c message-id.c -o message-id.o >/dev/null 2>&1
--- message-header-hash.lo ---
mv -f .deps/message-header-hash.Tpo .deps/message-header-hash.Plo
--- message-parser.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT message-parser.lo -MD -MP -MF .deps/message-parser.Tpo -c -o message-parser.lo message-parser.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT message-parser.lo -MD -MP -MF .deps/message-parser.Tpo -c message-parser.c  -fPIC -DPIC -o .libs/message-parser.o
--- message-id.lo ---
mv -f .deps/message-id.Tpo .deps/message-id.Plo
--- message-parser-from-parts.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT message-parser-from-parts.lo -MD -MP -MF .deps/message-parser-from-parts.Tpo -c -o message-parser-from-parts.lo message-parser-from-parts.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- message-header-parser.lo ---
../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT message-header-parser.lo -MD -MP -MF .deps/message-header-parser.Tpo -c message-header-parser.c -o message-header-parser.o >/dev/null 2>&1
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- message-parser-from-parts.lo ---
../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT message-parser-from-parts.lo -MD -MP -MF .deps/message-parser-from-parts.Tpo -c message-parser-from-parts.c  -fPIC -DPIC -o .libs/message-parser-from-parts.o
--- message-header-encode.lo ---
mv -f .deps/message-header-encode.Tpo .deps/message-header-encode.Plo
--- message-part.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT message-part.lo -MD -MP -MF .deps/message-part.Tpo -c -o message-part.lo message-part.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT message-part.lo -MD -MP -MF .deps/message-part.Tpo -c message-part.c  -fPIC -DPIC -o .libs/message-part.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- message-parser-from-parts.lo ---
../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT message-parser-from-parts.lo -MD -MP -MF .deps/message-parser-from-parts.Tpo -c message-parser-from-parts.c -o message-parser-from-parts.o >/dev/null 2>&1
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- message-part.lo ---
../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT message-part.lo -MD -MP -MF .deps/message-part.Tpo -c message-part.c -o message-part.o >/dev/null 2>&1
--- message-header-parser.lo ---
mv -f .deps/message-header-parser.Tpo .deps/message-header-parser.Plo
--- message-part-data.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT message-part-data.lo -MD -MP -MF .deps/message-part-data.Tpo -c -o message-part-data.lo message-part-data.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT message-part-data.lo -MD -MP -MF .deps/message-part-data.Tpo -c message-part-data.c  -fPIC -DPIC -o .libs/message-part-data.o
--- message-part.lo ---
mv -f .deps/message-part.Tpo .deps/message-part.Plo
--- message-part-serialize.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT message-part-serialize.lo -MD -MP -MF .deps/message-part-serialize.Tpo -c -o message-part-serialize.lo message-part-serialize.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- message-parser.lo ---
../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT message-parser.lo -MD -MP -MF .deps/message-parser.Tpo -c message-parser.c -o message-parser.o >/dev/null 2>&1
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- message-part-serialize.lo ---
../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT message-part-serialize.lo -MD -MP -MF .deps/message-part-serialize.Tpo -c message-part-serialize.c  -fPIC -DPIC -o .libs/message-part-serialize.o
--- message-parser-from-parts.lo ---
mv -f .deps/message-parser-from-parts.Tpo .deps/message-parser-from-parts.Plo
--- message-search.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT message-search.lo -MD -MP -MF .deps/message-search.Tpo -c -o message-search.lo message-search.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT message-search.lo -MD -MP -MF .deps/message-search.Tpo -c message-search.c  -fPIC -DPIC -o .libs/message-search.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- message-part-serialize.lo ---
../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT message-part-serialize.lo -MD -MP -MF .deps/message-part-serialize.Tpo -c message-part-serialize.c -o message-part-serialize.o >/dev/null 2>&1
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- message-part-data.lo ---
../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT message-part-data.lo -MD -MP -MF .deps/message-part-data.Tpo -c message-part-data.c -o message-part-data.o >/dev/null 2>&1
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- message-search.lo ---
../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT message-search.lo -MD -MP -MF .deps/message-search.Tpo -c message-search.c -o message-search.o >/dev/null 2>&1
--- message-part-serialize.lo ---
mv -f .deps/message-part-serialize.Tpo .deps/message-part-serialize.Plo
--- message-size.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT message-size.lo -MD -MP -MF .deps/message-size.Tpo -c -o message-size.lo message-size.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT message-size.lo -MD -MP -MF .deps/message-size.Tpo -c message-size.c  -fPIC -DPIC -o .libs/message-size.o
--- message-search.lo ---
mv -f .deps/message-search.Tpo .deps/message-search.Plo
--- message-snippet.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT message-snippet.lo -MD -MP -MF .deps/message-snippet.Tpo -c -o message-snippet.lo message-snippet.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT message-snippet.lo -MD -MP -MF .deps/message-snippet.Tpo -c message-snippet.c  -fPIC -DPIC -o .libs/message-snippet.o
--- message-parser.lo ---
mv -f .deps/message-parser.Tpo .deps/message-parser.Plo
--- ostream-dot.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ostream-dot.lo -MD -MP -MF .deps/ostream-dot.Tpo -c -o ostream-dot.lo ostream-dot.c
--- message-part-data.lo ---
mv -f .deps/message-part-data.Tpo .deps/message-part-data.Plo
--- qp-decoder.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT qp-decoder.lo -MD -MP -MF .deps/qp-decoder.Tpo -c -o qp-decoder.lo qp-decoder.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- ostream-dot.lo ---
../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ostream-dot.lo -MD -MP -MF .deps/ostream-dot.Tpo -c ostream-dot.c  -fPIC -DPIC -o .libs/ostream-dot.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- qp-decoder.lo ---
../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT qp-decoder.lo -MD -MP -MF .deps/qp-decoder.Tpo -c qp-decoder.c  -fPIC -DPIC -o .libs/qp-decoder.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- message-size.lo ---
../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT message-size.lo -MD -MP -MF .deps/message-size.Tpo -c message-size.c -o message-size.o >/dev/null 2>&1
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- message-snippet.lo ---
../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT message-snippet.lo -MD -MP -MF .deps/message-snippet.Tpo -c message-snippet.c -o message-snippet.o >/dev/null 2>&1
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- ostream-dot.lo ---
../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ostream-dot.lo -MD -MP -MF .deps/ostream-dot.Tpo -c ostream-dot.c -o ostream-dot.o >/dev/null 2>&1
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- qp-decoder.lo ---
../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT qp-decoder.lo -MD -MP -MF .deps/qp-decoder.Tpo -c qp-decoder.c -o qp-decoder.o >/dev/null 2>&1
--- message-size.lo ---
mv -f .deps/message-size.Tpo .deps/message-size.Plo
--- qp-encoder.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT qp-encoder.lo -MD -MP -MF .deps/qp-encoder.Tpo -c -o qp-encoder.lo qp-encoder.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT qp-encoder.lo -MD -MP -MF .deps/qp-encoder.Tpo -c qp-encoder.c  -fPIC -DPIC -o .libs/qp-encoder.o
--- ostream-dot.lo ---
mv -f .deps/ostream-dot.Tpo .deps/ostream-dot.Plo
--- qp-decoder.lo ---
mv -f .deps/qp-decoder.Tpo .deps/qp-decoder.Plo
--- quoted-printable.lo ---
--- rfc2231-parser.lo ---
--- quoted-printable.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT quoted-printable.lo -MD -MP -MF .deps/quoted-printable.Tpo -c -o quoted-printable.lo quoted-printable.c
--- rfc2231-parser.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT rfc2231-parser.lo -MD -MP -MF .deps/rfc2231-parser.Tpo -c -o rfc2231-parser.lo rfc2231-parser.c
--- message-snippet.lo ---
mv -f .deps/message-snippet.Tpo .deps/message-snippet.Plo
--- rfc822-parser.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -I../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT rfc822-parser.lo -MD -MP -MF .deps/rfc822-parser.Tpo -c -o rfc822-parser.lo rfc822-parser.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- qp-encoder.lo ---
../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT qp-encoder.lo -MD -MP -MF .deps/qp-encoder.Tpo -c qp-encoder.c -o qp-encoder.o >/dev/null 2>&1
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- quoted-printable.lo ---
../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT quoted-printable.lo -MD -MP -MF .deps/quoted-printable.Tpo -c quoted-printable.c  -fPIC -DPIC -o .libs/quoted-printable.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- rfc2231-parser.lo ---
../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT rfc2231-parser.lo -MD -MP -MF .deps/rfc2231-parser.Tpo -c rfc2231-parser.c  -fPIC -DPIC -o .libs/rfc2231-parser.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- rfc822-parser.lo ---
../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT rfc822-parser.lo -MD -MP -MF .deps/rfc822-parser.Tpo -c rfc822-parser.c  -fPIC -DPIC -o .libs/rfc822-parser.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- quoted-printable.lo ---
../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT quoted-printable.lo -MD -MP -MF .deps/quoted-printable.Tpo -c quoted-printable.c -o quoted-printable.o >/dev/null 2>&1
--- qp-encoder.lo ---
mv -f .deps/qp-encoder.Tpo .deps/qp-encoder.Plo
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- rfc2231-parser.lo ---
../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT rfc2231-parser.lo -MD -MP -MF .deps/rfc2231-parser.Tpo -c rfc2231-parser.c -o rfc2231-parser.o >/dev/null 2>&1
--- quoted-printable.lo ---
mv -f .deps/quoted-printable.Tpo .deps/quoted-printable.Plo
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- rfc822-parser.lo ---
../../src/lib-smtp -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT rfc822-parser.lo -MD -MP -MF .deps/rfc822-parser.Tpo -c rfc822-parser.c -o rfc822-parser.o >/dev/null 2>&1
--- rfc2231-parser.lo ---
mv -f .deps/rfc2231-parser.Tpo .deps/rfc2231-parser.Plo
--- rfc822-parser.lo ---
mv -f .deps/rfc822-parser.Tpo .deps/rfc822-parser.Plo
--- libmail.la ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o libmail.la  istream-attachment-connector.lo  istream-attachment-extractor.lo istream-binary-converter.lo  istream-dot.lo istream-header-filter.lo istream-nonuls.lo  istream-qp-decoder.lo istream-qp-encoder.lo mail-html2text.lo  mail-user-hash.lo mbox-from.lo message-address.lo  message-binary-part.lo message-date.lo message-decoder.lo  message-header-decode.lo message-header-encode.lo  message-header-hash.lo message-header-parser.lo message-id.lo  message-parser.lo message-parser-from-parts.lo message-part.lo  message-part-data.lo message-part-serialize.lo  message-search.lo message-size.lo message-snippet.lo  ostream-dot.lo qp-decoder.lo qp-encoder.lo quoted-printable.lo  rfc2231-parser.lo rfc822-parser.lo  
libtool: link: ar cru .libs/libmail.a .libs/istream-attachment-connector.o .libs/istream-attachment-extractor.o .libs/istream-binary-converter.o .libs/istream-dot.o .libs/istream-header-filter.o .libs/istream-nonuls.o .libs/istream-qp-decoder.o .libs/istream-qp-encoder.o .libs/mail-html2text.o .libs/mail-user-hash.o .libs/mbox-from.o .libs/message-address.o .libs/message-binary-part.o .libs/message-date.o .libs/message-decoder.o .libs/message-header-decode.o .libs/message-header-encode.o .libs/message-header-hash.o .libs/message-header-parser.o .libs/message-id.o .libs/message-parser.o .libs/message-parser-from-parts.o .libs/message-part.o .libs/message-part-data.o .libs/message-part-serialize.o .libs/message-search.o .libs/message-size.o .libs/message-snippet.o .libs/ostream-dot.o .libs/qp-decoder.o .libs/qp-encoder.o .libs/quoted-printable.o .libs/rfc2231-parser.o .libs/rfc822-parser.o 
libtool: link: ranlib .libs/libmail.a
libtool: link: ( cd ".libs" && rm -f "libmail.la" && ln -s "../libmail.la" "libmail.la" )
--- test-istream-attachment ---
--- test-istream-binary-converter ---
--- test-istream-dot ---
--- test-istream-header-filter ---
--- test-istream-attachment ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o test-istream-attachment test-istream-attachment.o libmail.la  ../lib-charset/libcharset.la  ../lib-test/libtest.la  ../lib/liblib.la 
--- test-istream-header-filter ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o test-istream-header-filter test-istream-header-filter.o libmail.la  ../lib-charset/libcharset.la  ../lib-test/libtest.la  ../lib/liblib.la 
--- test-istream-binary-converter ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o test-istream-binary-converter test-istream-binary-converter.o libmail.la  ../lib-charset/libcharset.la  ../lib-test/libtest.la  ../lib/liblib.la 
--- test-istream-dot ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o test-istream-dot test-istream-dot.o libmail.la  ../lib-charset/libcharset.la  ../lib-test/libtest.la  ../lib/liblib.la 
--- test-istream-binary-converter ---
libtool: link: cc -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o test-istream-binary-converter test-istream-binary-converter.o  -L/usr/local/lib ./.libs/libmail.a ../lib-charset/.libs/libcharset.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a
--- test-istream-dot ---
libtool: link: cc -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o test-istream-dot test-istream-dot.o  -L/usr/local/lib ./.libs/libmail.a ../lib-charset/.libs/libcharset.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a
--- test-istream-attachment ---
libtool: link: cc -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o test-istream-attachment test-istream-attachment.o  -L/usr/local/lib ./.libs/libmail.a ../lib-charset/.libs/libcharset.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a
--- test-istream-header-filter ---
libtool: link: cc -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o test-istream-header-filter test-istream-header-filter.o  -L/usr/local/lib ./.libs/libmail.a ../lib-charset/.libs/libcharset.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a
--- test-istream-qp-decoder ---
--- test-istream-qp-encoder ---
--- test-mail-html2text ---
--- test-mail-user-hash ---
--- test-istream-qp-decoder ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o test-istream-qp-decoder test-istream-qp-decoder.o libmail.la  ../lib-charset/libcharset.la  ../lib-test/libtest.la  ../lib/liblib.la 
--- test-mail-html2text ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o test-mail-html2text test-mail-html2text.o libmail.la  ../lib-charset/libcharset.la  ../lib-test/libtest.la  ../lib/liblib.la 
--- test-istream-qp-encoder ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o test-istream-qp-encoder test-istream-qp-encoder.o libmail.la  ../lib-charset/libcharset.la  ../lib-test/libtest.la  ../lib/liblib.la 
--- test-mail-user-hash ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o test-mail-user-hash test-mail-user-hash.o libmail.la  ../lib-charset/libcharset.la  ../lib-test/libtest.la  ../lib/liblib.la 
--- test-istream-qp-encoder ---
libtool: link: cc -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o test-istream-qp-encoder test-istream-qp-encoder.o  -L/usr/local/lib ./.libs/libmail.a ../lib-charset/.libs/libcharset.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a
--- test-istream-qp-decoder ---
libtool: link: cc -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o test-istream-qp-decoder test-istream-qp-decoder.o  -L/usr/local/lib ./.libs/libmail.a ../lib-charset/.libs/libcharset.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a
--- test-mail-user-hash ---
libtool: link: cc -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o test-mail-user-hash test-mail-user-hash.o  -L/usr/local/lib ./.libs/libmail.a ../lib-charset/.libs/libcharset.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a
--- test-mail-html2text ---
libtool: link: cc -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o test-mail-html2text test-mail-html2text.o  -L/usr/local/lib ./.libs/libmail.a ../lib-charset/.libs/libcharset.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a
--- test-mbox-from ---
--- test-message-address ---
--- test-message-date ---
--- test-message-decoder ---
--- test-mbox-from ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o test-mbox-from test-mbox-from.o libmail.la  ../lib-charset/libcharset.la  ../lib-test/libtest.la  ../lib/liblib.la 
--- test-message-address ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o test-message-address test-message-address.o libmail.la  ../lib-charset/libcharset.la  ../lib-test/libtest.la  ../lib/liblib.la 
--- test-message-date ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o test-message-date test-message-date.o libmail.la  ../lib-charset/libcharset.la  ../lib-test/libtest.la  ../lib/liblib.la 
--- test-message-decoder ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o test-message-decoder test-message-decoder.o libmail.la  ../lib-charset/libcharset.la  ../lib-test/libtest.la  ../lib/liblib.la ../lib-charset/libcharset.la 
--- test-message-address ---
libtool: link: cc -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o test-message-address test-message-address.o  -L/usr/local/lib ./.libs/libmail.a ../lib-charset/.libs/libcharset.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a
--- test-message-date ---
libtool: link: cc -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o test-message-date test-message-date.o  -L/usr/local/lib ./.libs/libmail.a ../lib-charset/.libs/libcharset.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a
--- test-mbox-from ---
libtool: link: cc -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o test-mbox-from test-mbox-from.o  -L/usr/local/lib ./.libs/libmail.a ../lib-charset/.libs/libcharset.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a
--- test-message-decoder ---
libtool: link: cc -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o test-message-decoder test-message-decoder.o  -L/usr/local/lib ./.libs/libmail.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a ../lib-charset/.libs/libcharset.a
--- test-message-header-decode ---
--- test-message-header-encode ---
--- test-message-header-hash ---
--- test-message-header-parser ---
--- test-message-header-decode ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o test-message-header-decode test-message-header-decode.o libmail.la  ../lib-charset/libcharset.la  ../lib-test/libtest.la  ../lib/liblib.la 
--- test-message-header-encode ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o test-message-header-encode test-message-header-encode.o libmail.la  ../lib-charset/libcharset.la  ../lib-test/libtest.la  ../lib/liblib.la 
--- test-message-header-hash ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o test-message-header-hash test-message-header-hash.o libmail.la  ../lib-charset/libcharset.la  ../lib-test/libtest.la  ../lib/liblib.la 
--- test-message-header-parser ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o test-message-header-parser test-message-header-parser.o libmail.la  ../lib-charset/libcharset.la  ../lib-test/libtest.la  ../lib/liblib.la 
libtool: link: cc -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o test-message-header-parser test-message-header-parser.o  -L/usr/local/lib ./.libs/libmail.a ../lib-charset/.libs/libcharset.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a
--- test-message-header-hash ---
libtool: link: cc -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o test-message-header-hash test-message-header-hash.o  -L/usr/local/lib ./.libs/libmail.a ../lib-charset/.libs/libcharset.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a
--- test-message-header-encode ---
libtool: link: cc -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o test-message-header-encode test-message-header-encode.o  -L/usr/local/lib ./.libs/libmail.a ../lib-charset/.libs/libcharset.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a
--- test-message-header-decode ---
libtool: link: cc -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o test-message-header-decode test-message-header-decode.o  -L/usr/local/lib ./.libs/libmail.a ../lib-charset/.libs/libcharset.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a
--- test-message-id ---
--- test-message-parser ---
--- test-message-part ---
--- test-message-part-serialize ---
--- test-message-id ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o test-message-id test-message-id.o libmail.la  ../lib-charset/libcharset.la  ../lib-test/libtest.la  ../lib/liblib.la 
--- test-message-part ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o test-message-part test-message-part.o libmail.la  ../lib-charset/libcharset.la  ../lib-test/libtest.la  ../lib/liblib.la 
--- test-message-parser ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o test-message-parser test-message-parser.o libmail.la  ../lib-charset/libcharset.la  ../lib-test/libtest.la  ../lib/liblib.la 
--- test-message-part-serialize ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o test-message-part-serialize test-message-part-serialize.o libmail.la  ../lib-charset/libcharset.la  ../lib-test/libtest.la  ../lib/liblib.la 
--- test-message-part ---
libtool: link: cc -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o test-message-part test-message-part.o  -L/usr/local/lib ./.libs/libmail.a ../lib-charset/.libs/libcharset.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a
--- test-message-parser ---
libtool: link: cc -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o test-message-parser test-message-parser.o  -L/usr/local/lib ./.libs/libmail.a ../lib-charset/.libs/libcharset.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a
--- test-message-part-serialize ---
libtool: link: cc -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o test-message-part-serialize test-message-part-serialize.o  -L/usr/local/lib ./.libs/libmail.a ../lib-charset/.libs/libcharset.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a
--- test-message-id ---
libtool: link: cc -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o test-message-id test-message-id.o  -L/usr/local/lib ./.libs/libmail.a ../lib-charset/.libs/libcharset.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a
--- test-message-search ---
--- test-message-size ---
--- test-message-snippet ---
--- test-ostream-dot ---
--- test-message-search ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o test-message-search test-message-search.o libmail.la  ../lib-charset/libcharset.la  ../lib-test/libtest.la  ../lib/liblib.la ../lib-charset/libcharset.la 
--- test-message-size ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o test-message-size test-message-size.o libmail.la  ../lib-charset/libcharset.la  ../lib-test/libtest.la  ../lib/liblib.la 
--- test-message-snippet ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o test-message-snippet test-message-snippet.o libmail.la  ../lib-charset/libcharset.la  ../lib-test/libtest.la  ../lib/liblib.la ../lib-charset/libcharset.la 
--- test-ostream-dot ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o test-ostream-dot test-ostream-dot.o libmail.la  ../lib-charset/libcharset.la  ../lib-test/libtest.la  ../lib/liblib.la 
libtool: link: cc -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o test-ostream-dot test-ostream-dot.o  -L/usr/local/lib ./.libs/libmail.a ../lib-charset/.libs/libcharset.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a
--- test-message-size ---
libtool: link: cc -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o test-message-size test-message-size.o  -L/usr/local/lib ./.libs/libmail.a ../lib-charset/.libs/libcharset.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a
--- test-message-search ---
libtool: link: cc -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o test-message-search test-message-search.o  -L/usr/local/lib ./.libs/libmail.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a ../lib-charset/.libs/libcharset.a
--- test-message-snippet ---
libtool: link: cc -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o test-message-snippet test-message-snippet.o  -L/usr/local/lib ./.libs/libmail.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a ../lib-charset/.libs/libcharset.a
--- test-qp-decoder ---
--- test-qp-encoder ---
--- test-qp-decoder ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o test-qp-decoder test-qp-decoder.o libmail.la  ../lib-charset/libcharset.la  ../lib-test/libtest.la  ../lib/liblib.la 
--- test-qp-encoder ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o test-qp-encoder test-qp-encoder.o libmail.la  ../lib-charset/libcharset.la  ../lib-test/libtest.la  ../lib/liblib.la 
--- test-quoted-printable ---
--- test-rfc2231-parser ---
--- test-quoted-printable ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o test-quoted-printable test-quoted-printable.o libmail.la  ../lib-charset/libcharset.la  ../lib-test/libtest.la  ../lib/liblib.la 
--- test-rfc2231-parser ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o test-rfc2231-parser test-rfc2231-parser.o libmail.la  ../lib-charset/libcharset.la  ../lib-test/libtest.la  ../lib/liblib.la 
--- test-qp-encoder ---
libtool: link: cc -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o test-qp-encoder test-qp-encoder.o  -L/usr/local/lib ./.libs/libmail.a ../lib-charset/.libs/libcharset.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a
--- test-qp-decoder ---
libtool: link: cc -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o test-qp-decoder test-qp-decoder.o  -L/usr/local/lib ./.libs/libmail.a ../lib-charset/.libs/libcharset.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a
--- test-rfc2231-parser ---
libtool: link: cc -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o test-rfc2231-parser test-rfc2231-parser.o  -L/usr/local/lib ./.libs/libmail.a ../lib-charset/.libs/libcharset.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a
--- test-quoted-printable ---
libtool: link: cc -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o test-quoted-printable test-quoted-printable.o  -L/usr/local/lib ./.libs/libmail.a ../lib-charset/.libs/libcharset.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a
--- test-rfc822-parser ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o test-rfc822-parser test-rfc822-parser.o libmail.la  ../lib-charset/libcharset.la  ../lib-test/libtest.la  ../lib/liblib.la 
libtool: link: cc -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o test-rfc822-parser test-rfc822-parser.o  -L/usr/local/lib ./.libs/libmail.a ../lib-charset/.libs/libcharset.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a
Making all in lib-program-client
--- test-program-client-local.o ---
--- test-program-client-unix.o ---
--- test-program-client-net.o ---
--- program-client.lo ---
--- test-program-client-local.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dns  -I../../src/lib-mail  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-program-client-local.o -MD -MP -MF .deps/test-program-client-local.Tpo -c -o test-program-client-local.o test-program-client-local.c
--- test-program-client-unix.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dns  -I../../src/lib-mail  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-program-client-unix.o -MD -MP -MF .deps/test-program-client-unix.Tpo -c -o test-program-client-unix.o test-program-client-unix.c
--- test-program-client-net.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dns  -I../../src/lib-mail  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-program-client-net.o -MD -MP -MF .deps/test-program-client-net.Tpo -c -o test-program-client-net.o test-program-client-net.c
--- program-client.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dns  -I../../src/lib-mail -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT program-client.lo -MD -MP -MF .deps/program-client.Tpo -c -o program-client.lo program-client.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-mail -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT program-client.lo -MD -MP -MF .deps/program-client.Tpo -c program-client.c  -fPIC -DPIC -o .libs/program-client.o
--- test-program-client-local.o ---
mv -f .deps/test-program-client-local.Tpo .deps/test-program-client-local.Po
--- program-client-local.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dns  -I../../src/lib-mail -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT program-client-local.lo -MD -MP -MF .deps/program-client-local.Tpo -c -o program-client-local.lo program-client-local.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-mail -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT program-client-local.lo -MD -MP -MF .deps/program-client-local.Tpo -c program-client-local.c  -fPIC -DPIC -o .libs/program-client-local.o
--- test-program-client-unix.o ---
mv -f .deps/test-program-client-unix.Tpo .deps/test-program-client-unix.Po
--- program-client-remote.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dns  -I../../src/lib-mail -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT program-client-remote.lo -MD -MP -MF .deps/program-client-remote.Tpo -c -o program-client-remote.lo program-client-remote.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-mail -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT program-client-remote.lo -MD -MP -MF .deps/program-client-remote.Tpo -c program-client-remote.c  -fPIC -DPIC -o .libs/program-client-remote.o
--- test-program-client-net.o ---
mv -f .deps/test-program-client-net.Tpo .deps/test-program-client-net.Po
--- program-client.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-mail -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT program-client.lo -MD -MP -MF .deps/program-client.Tpo -c program-client.c -o program-client.o >/dev/null 2>&1
--- program-client-local.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-mail -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT program-client-local.lo -MD -MP -MF .deps/program-client-local.Tpo -c program-client-local.c -o program-client-local.o >/dev/null 2>&1
--- program-client-remote.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-mail -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT program-client-remote.lo -MD -MP -MF .deps/program-client-remote.Tpo -c program-client-remote.c -o program-client-remote.o >/dev/null 2>&1
--- program-client.lo ---
mv -f .deps/program-client.Tpo .deps/program-client.Plo
--- program-client-local.lo ---
mv -f .deps/program-client-local.Tpo .deps/program-client-local.Plo
--- program-client-remote.lo ---
mv -f .deps/program-client-remote.Tpo .deps/program-client-remote.Plo
--- libprogram_client.la ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o libprogram_client.la  program-client.lo  program-client-local.lo program-client-remote.lo  
libtool: link: ar cru .libs/libprogram_client.a .libs/program-client.o .libs/program-client-local.o .libs/program-client-remote.o 
libtool: link: ranlib .libs/libprogram_client.a
libtool: link: ( cd ".libs" && rm -f "libprogram_client.la" && ln -s "../libprogram_client.la" "libprogram_client.la" )
--- test-program-client-local ---
--- test-program-client-net ---
--- test-program-client-unix ---
--- test-program-client-local ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o test-program-client-local test-program-client-local.o libprogram_client.la  ../lib-dns/libdns.la   ../lib-test/libtest.la  ../lib-mail/libmail.la  ../lib-charset/libcharset.la  ../lib/liblib.la  -export-dynamic 
--- test-program-client-net ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o test-program-client-net test-program-client-net.o libprogram_client.la  ../lib-dns/libdns.la   ../lib-test/libtest.la  ../lib-mail/libmail.la  ../lib-charset/libcharset.la  ../lib/liblib.la  -export-dynamic 
--- test-program-client-unix ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include   -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o test-program-client-unix test-program-client-unix.o libprogram_client.la  ../lib-dns/libdns.la   ../lib-test/libtest.la  ../lib-mail/libmail.la  ../lib-charset/libcharset.la  ../lib/liblib.la  -export-dynamic 
--- test-program-client-local ---
libtool: link: cc -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o test-program-client-local test-program-client-local.o -Wl,--export-dynamic  -L/usr/local/lib ./.libs/libprogram_client.a ../lib-dns/.libs/libdns.a ../lib-test/.libs/libtest.a ../lib-mail/.libs/libmail.a ../lib-charset/.libs/libcharset.a ../lib/.libs/liblib.a
--- test-program-client-net ---
libtool: link: cc -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o test-program-client-net test-program-client-net.o -Wl,--export-dynamic  -L/usr/local/lib ./.libs/libprogram_client.a ../lib-dns/.libs/libdns.a ../lib-test/.libs/libtest.a ../lib-mail/.libs/libmail.a ../lib-charset/.libs/libcharset.a ../lib/.libs/liblib.a
--- test-program-client-unix ---
libtool: link: cc -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o test-program-client-unix test-program-client-unix.o -Wl,--export-dynamic  -L/usr/local/lib ./.libs/libprogram_client.a ../lib-dns/.libs/libdns.a ../lib-test/.libs/libtest.a ../lib-mail/.libs/libmail.a ../lib-charset/.libs/libcharset.a ../lib/.libs/liblib.a
Making all in lib-smtp
--- test-smtp-syntax.o ---
--- test-smtp-address.o ---
--- test-smtp-params.o ---
--- test-smtp-reply.o ---
--- test-smtp-syntax.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-dns  -I../../src/lib-program-client  -I../../src/lib-mail  -DTEST_BIN_DIR=\"/usr/ports/mail/dovecot/work/dovecot-2.3.20/src/lib-smtp/test-bin\"  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-smtp-syntax.o -MD -MP -MF .deps/test-smtp-syntax.Tpo -c -o test-smtp-syntax.o test-smtp-syntax.c
--- test-smtp-address.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-dns  -I../../src/lib-program-client  -I../../src/lib-mail  -DTEST_BIN_DIR=\"/usr/ports/mail/dovecot/work/dovecot-2.3.20/src/lib-smtp/test-bin\"  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-smtp-address.o -MD -MP -MF .deps/test-smtp-address.Tpo -c -o test-smtp-address.o test-smtp-address.c
--- test-smtp-reply.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-dns  -I../../src/lib-program-client  -I../../src/lib-mail  -DTEST_BIN_DIR=\"/usr/ports/mail/dovecot/work/dovecot-2.3.20/src/lib-smtp/test-bin\"  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-smtp-reply.o -MD -MP -MF .deps/test-smtp-reply.Tpo -c -o test-smtp-reply.o test-smtp-reply.c
--- test-smtp-params.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-dns  -I../../src/lib-program-client  -I../../src/lib-mail  -DTEST_BIN_DIR=\"/usr/ports/mail/dovecot/work/dovecot-2.3.20/src/lib-smtp/test-bin\"  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-smtp-params.o -MD -MP -MF .deps/test-smtp-params.Tpo -c -o test-smtp-params.o test-smtp-params.c
--- test-smtp-syntax.o ---
mv -f .deps/test-smtp-syntax.Tpo .deps/test-smtp-syntax.Po
--- test-smtp-command-parser.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-dns  -I../../src/lib-program-client  -I../../src/lib-mail  -DTEST_BIN_DIR=\"/usr/ports/mail/dovecot/work/dovecot-2.3.20/src/lib-smtp/test-bin\"  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-smtp-command-parser.o -MD -MP -MF .deps/test-smtp-command-parser.Tpo -c -o test-smtp-command-parser.o test-smtp-command-parser.c
--- test-smtp-reply.o ---
mv -f .deps/test-smtp-reply.Tpo .deps/test-smtp-reply.Po
--- test-smtp-payload.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-dns  -I../../src/lib-program-client  -I../../src/lib-mail  -DTEST_BIN_DIR=\"/usr/ports/mail/dovecot/work/dovecot-2.3.20/src/lib-smtp/test-bin\"  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-smtp-payload.o -MD -MP -MF .deps/test-smtp-payload.Tpo -c -o test-smtp-payload.o test-smtp-payload.c
--- test-smtp-address.o ---
mv -f .deps/test-smtp-address.Tpo .deps/test-smtp-address.Po
--- test-smtp-submit.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-dns  -I../../src/lib-program-client  -I../../src/lib-mail  -DTEST_BIN_DIR=\"/usr/ports/mail/dovecot/work/dovecot-2.3.20/src/lib-smtp/test-bin\"  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-smtp-submit.o -MD -MP -MF .deps/test-smtp-submit.Tpo -c -o test-smtp-submit.o test-smtp-submit.c
--- test-smtp-params.o ---
mv -f .deps/test-smtp-params.Tpo .deps/test-smtp-params.Po
--- test-smtp-client-errors.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-dns  -I../../src/lib-program-client  -I../../src/lib-mail  -DTEST_BIN_DIR=\"/usr/ports/mail/dovecot/work/dovecot-2.3.20/src/lib-smtp/test-bin\"  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-smtp-client-errors.o -MD -MP -MF .deps/test-smtp-client-errors.Tpo -c -o test-smtp-client-errors.o test-smtp-client-errors.c
--- test-smtp-command-parser.o ---
mv -f .deps/test-smtp-command-parser.Tpo .deps/test-smtp-command-parser.Po
--- test-smtp-server-errors.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-dns  -I../../src/lib-program-client  -I../../src/lib-mail  -DTEST_BIN_DIR=\"/usr/ports/mail/dovecot/work/dovecot-2.3.20/src/lib-smtp/test-bin\"  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test-smtp-server-errors.o -MD -MP -MF .deps/test-smtp-server-errors.Tpo -c -o test-smtp-server-errors.o test-smtp-server-errors.c
--- test-smtp-payload.o ---
mv -f .deps/test-smtp-payload.Tpo .deps/test-smtp-payload.Po
--- smtp-parser.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-dns  -I../../src/lib-program-client  -I../../src/lib-mail  -DTEST_BIN_DIR=\"/usr/ports/mail/dovecot/work/dovecot-2.3.20/src/lib-smtp/test-bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT smtp-parser.lo -MD -MP -MF .deps/smtp-parser.Tpo -c -o smtp-parser.lo smtp-parser.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-master -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-dns -I../../src/lib-program-client -I../../src/lib-mail -DTEST_BIN_DIR=\"/usr/ports/mail/dovecot/work/dovecot-2.3.20/src/lib-smtp/test-bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT smtp-parser.lo -MD -MP -MF .deps/smtp-parser.Tpo -c smtp-parser.c  -fPIC -DPIC -o .libs/smtp-parser.o
--- test-smtp-submit.o ---
mv -f .deps/test-smtp-submit.Tpo .deps/test-smtp-submit.Po
--- smtp-syntax.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-dns  -I../../src/lib-program-client  -I../../src/lib-mail  -DTEST_BIN_DIR=\"/usr/ports/mail/dovecot/work/dovecot-2.3.20/src/lib-smtp/test-bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT smtp-syntax.lo -MD -MP -MF .deps/smtp-syntax.Tpo -c -o smtp-syntax.lo smtp-syntax.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-master -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-dns -I../../src/lib-program-client -I../../src/lib-mail -DTEST_BIN_DIR=\"/usr/ports/mail/dovecot/work/dovecot-2.3.20/src/lib-smtp/test-bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT smtp-syntax.lo -MD -MP -MF .deps/smtp-syntax.Tpo -c smtp-syntax.c  -fPIC -DPIC -o .libs/smtp-syntax.o
--- smtp-parser.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-master -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-dns -I../../src/lib-program-client -I../../src/lib-mail -DTEST_BIN_DIR=\"/usr/ports/mail/dovecot/work/dovecot-2.3.20/src/lib-smtp/test-bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT smtp-parser.lo -MD -MP -MF .deps/smtp-parser.Tpo -c smtp-parser.c -o smtp-parser.o >/dev/null 2>&1
--- smtp-syntax.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-master -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-dns -I../../src/lib-program-client -I../../src/lib-mail -DTEST_BIN_DIR=\"/usr/ports/mail/dovecot/work/dovecot-2.3.20/src/lib-smtp/test-bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT smtp-syntax.lo -MD -MP -MF .deps/smtp-syntax.Tpo -c smtp-syntax.c -o smtp-syntax.o >/dev/null 2>&1
--- test-smtp-server-errors.o ---
mv -f .deps/test-smtp-server-errors.Tpo .deps/test-smtp-server-errors.Po
--- smtp-address.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-dns  -I../../src/lib-program-client  -I../../src/lib-mail  -DTEST_BIN_DIR=\"/usr/ports/mail/dovecot/work/dovecot-2.3.20/src/lib-smtp/test-bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT smtp-address.lo -MD -MP -MF .deps/smtp-address.Tpo -c -o smtp-address.lo smtp-address.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-master -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-dns -I../../src/lib-program-client -I../../src/lib-mail -DTEST_BIN_DIR=\"/usr/ports/mail/dovecot/work/dovecot-2.3.20/src/lib-smtp/test-bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT smtp-address.lo -MD -MP -MF .deps/smtp-address.Tpo -c smtp-address.c  -fPIC -DPIC -o .libs/smtp-address.o
--- smtp-syntax.lo ---
mv -f .deps/smtp-syntax.Tpo .deps/smtp-syntax.Plo
--- smtp-common.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-dns  -I../../src/lib-program-client  -I../../src/lib-mail  -DTEST_BIN_DIR=\"/usr/ports/mail/dovecot/work/dovecot-2.3.20/src/lib-smtp/test-bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT smtp-common.lo -MD -MP -MF .deps/smtp-common.Tpo -c -o smtp-common.lo smtp-common.c
--- smtp-parser.lo ---
mv -f .deps/smtp-parser.Tpo .deps/smtp-parser.Plo
--- smtp-params.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-dns  -I../../src/lib-program-client  -I../../src/lib-mail  -DTEST_BIN_DIR=\"/usr/ports/mail/dovecot/work/dovecot-2.3.20/src/lib-smtp/test-bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT smtp-params.lo -MD -MP -MF .deps/smtp-params.Tpo -c -o smtp-params.lo smtp-params.c
--- smtp-common.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-master -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-dns -I../../src/lib-program-client -I../../src/lib-mail -DTEST_BIN_DIR=\"/usr/ports/mail/dovecot/work/dovecot-2.3.20/src/lib-smtp/test-bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT smtp-common.lo -MD -MP -MF .deps/smtp-common.Tpo -c smtp-common.c  -fPIC -DPIC -o .libs/smtp-common.o
--- smtp-params.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-master -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-dns -I../../src/lib-program-client -I../../src/lib-mail -DTEST_BIN_DIR=\"/usr/ports/mail/dovecot/work/dovecot-2.3.20/src/lib-smtp/test-bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT smtp-params.lo -MD -MP -MF .deps/smtp-params.Tpo -c smtp-params.c  -fPIC -DPIC -o .libs/smtp-params.o
--- smtp-common.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-master -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-dns -I../../src/lib-program-client -I../../src/lib-mail -DTEST_BIN_DIR=\"/usr/ports/mail/dovecot/work/dovecot-2.3.20/src/lib-smtp/test-bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT smtp-common.lo -MD -MP -MF .deps/smtp-common.Tpo -c smtp-common.c -o smtp-common.o >/dev/null 2>&1
--- test-smtp-client-errors.o ---
mv -f .deps/test-smtp-client-errors.Tpo .deps/test-smtp-client-errors.Po
--- smtp-reply.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-dns  -I../../src/lib-program-client  -I../../src/lib-mail  -DTEST_BIN_DIR=\"/usr/ports/mail/dovecot/work/dovecot-2.3.20/src/lib-smtp/test-bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT smtp-reply.lo -MD -MP -MF .deps/smtp-reply.Tpo -c -o smtp-reply.lo smtp-reply.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-master -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-dns -I../../src/lib-program-client -I../../src/lib-mail -DTEST_BIN_DIR=\"/usr/ports/mail/dovecot/work/dovecot-2.3.20/src/lib-smtp/test-bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT smtp-reply.lo -MD -MP -MF .deps/smtp-reply.Tpo -c smtp-reply.c  -fPIC -DPIC -o .libs/smtp-reply.o
--- smtp-address.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-master -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-dns -I../../src/lib-program-client -I../../src/lib-mail -DTEST_BIN_DIR=\"/usr/ports/mail/dovecot/work/dovecot-2.3.20/src/lib-smtp/test-bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT smtp-address.lo -MD -MP -MF .deps/smtp-address.Tpo -c smtp-address.c -o smtp-address.o >/dev/null 2>&1
--- smtp-common.lo ---
mv -f .deps/smtp-common.Tpo .deps/smtp-common.Plo
--- smtp-reply-parser.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-dns  -I../../src/lib-program-client  -I../../src/lib-mail  -DTEST_BIN_DIR=\"/usr/ports/mail/dovecot/work/dovecot-2.3.20/src/lib-smtp/test-bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT smtp-reply-parser.lo -MD -MP -MF .deps/smtp-reply-parser.Tpo -c -o smtp-reply-parser.lo smtp-reply-parser.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-master -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-dns -I../../src/lib-program-client -I../../src/lib-mail -DTEST_BIN_DIR=\"/usr/ports/mail/dovecot/work/dovecot-2.3.20/src/lib-smtp/test-bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT smtp-reply-parser.lo -MD -MP -MF .deps/smtp-reply-parser.Tpo -c smtp-reply-parser.c  -fPIC -DPIC -o .libs/smtp-reply-parser.o
--- smtp-reply.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-master -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-dns -I../../src/lib-program-client -I../../src/lib-mail -DTEST_BIN_DIR=\"/usr/ports/mail/dovecot/work/dovecot-2.3.20/src/lib-smtp/test-bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT smtp-reply.lo -MD -MP -MF .deps/smtp-reply.Tpo -c smtp-reply.c -o smtp-reply.o >/dev/null 2>&1
mv -f .deps/smtp-reply.Tpo .deps/smtp-reply.Plo
--- smtp-command-parser.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-dns  -I../../src/lib-program-client  -I../../src/lib-mail  -DTEST_BIN_DIR=\"/usr/ports/mail/dovecot/work/dovecot-2.3.20/src/lib-smtp/test-bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT smtp-command-parser.lo -MD -MP -MF .deps/smtp-command-parser.Tpo -c -o smtp-command-parser.lo smtp-command-parser.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-master -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-dns -I../../src/lib-program-client -I../../src/lib-mail -DTEST_BIN_DIR=\"/usr/ports/mail/dovecot/work/dovecot-2.3.20/src/lib-smtp/test-bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT smtp-command-parser.lo -MD -MP -MF .deps/smtp-command-parser.Tpo -c smtp-command-parser.c  -fPIC -DPIC -o .libs/smtp-command-parser.o
--- smtp-address.lo ---
mv -f .deps/smtp-address.Tpo .deps/smtp-address.Plo
--- smtp-client-command.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-dns  -I../../src/lib-program-client  -I../../src/lib-mail  -DTEST_BIN_DIR=\"/usr/ports/mail/dovecot/work/dovecot-2.3.20/src/lib-smtp/test-bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT smtp-client-command.lo -MD -MP -MF .deps/smtp-client-command.Tpo -c -o smtp-client-command.lo smtp-client-command.c
--- smtp-params.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-master -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-dns -I../../src/lib-program-client -I../../src/lib-mail -DTEST_BIN_DIR=\"/usr/ports/mail/dovecot/work/dovecot-2.3.20/src/lib-smtp/test-bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT smtp-params.lo -MD -MP -MF .deps/smtp-params.Tpo -c smtp-params.c -o smtp-params.o >/dev/null 2>&1
--- smtp-client-command.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-master -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-dns -I../../src/lib-program-client -I../../src/lib-mail -DTEST_BIN_DIR=\"/usr/ports/mail/dovecot/work/dovecot-2.3.20/src/lib-smtp/test-bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT smtp-client-command.lo -MD -MP -MF .deps/smtp-client-command.Tpo -c smtp-client-command.c  -fPIC -DPIC -o .libs/smtp-client-command.o
--- smtp-reply-parser.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-master -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-dns -I../../src/lib-program-client -I../../src/lib-mail -DTEST_BIN_DIR=\"/usr/ports/mail/dovecot/work/dovecot-2.3.20/src/lib-smtp/test-bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT smtp-reply-parser.lo -MD -MP -MF .deps/smtp-reply-parser.Tpo -c smtp-reply-parser.c -o smtp-reply-parser.o >/dev/null 2>&1
--- smtp-command-parser.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-master -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-dns -I../../src/lib-program-client -I../../src/lib-mail -DTEST_BIN_DIR=\"/usr/ports/mail/dovecot/work/dovecot-2.3.20/src/lib-smtp/test-bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT smtp-command-parser.lo -MD -MP -MF .deps/smtp-command-parser.Tpo -c smtp-command-parser.c -o smtp-command-parser.o >/dev/null 2>&1
--- smtp-reply-parser.lo ---
mv -f .deps/smtp-reply-parser.Tpo .deps/smtp-reply-parser.Plo
--- smtp-client-transaction.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-dns  -I../../src/lib-program-client  -I../../src/lib-mail  -DTEST_BIN_DIR=\"/usr/ports/mail/dovecot/work/dovecot-2.3.20/src/lib-smtp/test-bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT smtp-client-transaction.lo -MD -MP -MF .deps/smtp-client-transaction.Tpo -c -o smtp-client-transaction.lo smtp-client-transaction.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-master -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-dns -I../../src/lib-program-client -I../../src/lib-mail -DTEST_BIN_DIR=\"/usr/ports/mail/dovecot/work/dovecot-2.3.20/src/lib-smtp/test-bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT smtp-client-transaction.lo -MD -MP -MF .deps/smtp-client-transaction.Tpo -c smtp-client-transaction.c  -fPIC -DPIC -o .libs/smtp-client-transaction.o
--- smtp-params.lo ---
mv -f .deps/smtp-params.Tpo .deps/smtp-params.Plo
--- smtp-client-connection.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-dns  -I../../src/lib-program-client  -I../../src/lib-mail  -DTEST_BIN_DIR=\"/usr/ports/mail/dovecot/work/dovecot-2.3.20/src/lib-smtp/test-bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT smtp-client-connection.lo -MD -MP -MF .deps/smtp-client-connection.Tpo -c -o smtp-client-connection.lo smtp-client-connection.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-master -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-dns -I../../src/lib-program-client -I../../src/lib-mail -DTEST_BIN_DIR=\"/usr/ports/mail/dovecot/work/dovecot-2.3.20/src/lib-smtp/test-bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT smtp-client-connection.lo -MD -MP -MF .deps/smtp-client-connection.Tpo -c smtp-client-connection.c  -fPIC -DPIC -o .libs/smtp-client-connection.o
--- smtp-command-parser.lo ---
mv -f .deps/smtp-command-parser.Tpo .deps/smtp-command-parser.Plo
--- smtp-client.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-dns  -I../../src/lib-program-client  -I../../src/lib-mail  -DTEST_BIN_DIR=\"/usr/ports/mail/dovecot/work/dovecot-2.3.20/src/lib-smtp/test-bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT smtp-client.lo -MD -MP -MF .deps/smtp-client.Tpo -c -o smtp-client.lo smtp-client.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-master -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-dns -I../../src/lib-program-client -I../../src/lib-mail -DTEST_BIN_DIR=\"/usr/ports/mail/dovecot/work/dovecot-2.3.20/src/lib-smtp/test-bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT smtp-client.lo -MD -MP -MF .deps/smtp-client.Tpo -c smtp-client.c  -fPIC -DPIC -o .libs/smtp-client.o
--- smtp-client-command.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-master -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-dns -I../../src/lib-program-client -I../../src/lib-mail -DTEST_BIN_DIR=\"/usr/ports/mail/dovecot/work/dovecot-2.3.20/src/lib-smtp/test-bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT smtp-client-command.lo -MD -MP -MF .deps/smtp-client-command.Tpo -c smtp-client-command.c -o smtp-client-command.o >/dev/null 2>&1
--- smtp-client.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-master -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-dns -I../../src/lib-program-client -I../../src/lib-mail -DTEST_BIN_DIR=\"/usr/ports/mail/dovecot/work/dovecot-2.3.20/src/lib-smtp/test-bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT smtp-client.lo -MD -MP -MF .deps/smtp-client.Tpo -c smtp-client.c -o smtp-client.o >/dev/null 2>&1
mv -f .deps/smtp-client.Tpo .deps/smtp-client.Plo
--- smtp-server-cmd-helo.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-dns  -I../../src/lib-program-client  -I../../src/lib-mail  -DTEST_BIN_DIR=\"/usr/ports/mail/dovecot/work/dovecot-2.3.20/src/lib-smtp/test-bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT smtp-server-cmd-helo.lo -MD -MP -MF .deps/smtp-server-cmd-helo.Tpo -c -o smtp-server-cmd-helo.lo smtp-server-cmd-helo.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-master -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-dns -I../../src/lib-program-client -I../../src/lib-mail -DTEST_BIN_DIR=\"/usr/ports/mail/dovecot/work/dovecot-2.3.20/src/lib-smtp/test-bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT smtp-server-cmd-helo.lo -MD -MP -MF .deps/smtp-server-cmd-helo.Tpo -c smtp-server-cmd-helo.c  -fPIC -DPIC -o .libs/smtp-server-cmd-helo.o
--- smtp-client-transaction.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-master -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-dns -I../../src/lib-program-client -I../../src/lib-mail -DTEST_BIN_DIR=\"/usr/ports/mail/dovecot/work/dovecot-2.3.20/src/lib-smtp/test-bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT smtp-client-transaction.lo -MD -MP -MF .deps/smtp-client-transaction.Tpo -c smtp-client-transaction.c -o smtp-client-transaction.o >/dev/null 2>&1
--- smtp-server-cmd-helo.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-master -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-dns -I../../src/lib-program-client -I../../src/lib-mail -DTEST_BIN_DIR=\"/usr/ports/mail/dovecot/work/dovecot-2.3.20/src/lib-smtp/test-bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT smtp-server-cmd-helo.lo -MD -MP -MF .deps/smtp-server-cmd-helo.Tpo -c smtp-server-cmd-helo.c -o smtp-server-cmd-helo.o >/dev/null 2>&1
mv -f .deps/smtp-server-cmd-helo.Tpo .deps/smtp-server-cmd-helo.Plo
--- smtp-server-cmd-starttls.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-dns  -I../../src/lib-program-client  -I../../src/lib-mail  -DTEST_BIN_DIR=\"/usr/ports/mail/dovecot/work/dovecot-2.3.20/src/lib-smtp/test-bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT smtp-server-cmd-starttls.lo -MD -MP -MF .deps/smtp-server-cmd-starttls.Tpo -c -o smtp-server-cmd-starttls.lo smtp-server-cmd-starttls.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-master -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-dns -I../../src/lib-program-client -I../../src/lib-mail -DTEST_BIN_DIR=\"/usr/ports/mail/dovecot/work/dovecot-2.3.20/src/lib-smtp/test-bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT smtp-server-cmd-starttls.lo -MD -MP -MF .deps/smtp-server-cmd-starttls.Tpo -c smtp-server-cmd-starttls.c  -fPIC -DPIC -o .libs/smtp-server-cmd-starttls.o
--- smtp-client-command.lo ---
mv -f .deps/smtp-client-command.Tpo .deps/smtp-client-command.Plo
--- smtp-server-cmd-auth.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-dns  -I../../src/lib-program-client  -I../../src/lib-mail  -DTEST_BIN_DIR=\"/usr/ports/mail/dovecot/work/dovecot-2.3.20/src/lib-smtp/test-bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT smtp-server-cmd-auth.lo -MD -MP -MF .deps/smtp-server-cmd-auth.Tpo -c -o smtp-server-cmd-auth.lo smtp-server-cmd-auth.c
--- smtp-server-cmd-starttls.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-master -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-dns -I../../src/lib-program-client -I../../src/lib-mail -DTEST_BIN_DIR=\"/usr/ports/mail/dovecot/work/dovecot-2.3.20/src/lib-smtp/test-bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT smtp-server-cmd-starttls.lo -MD -MP -MF .deps/smtp-server-cmd-starttls.Tpo -c smtp-server-cmd-starttls.c -o smtp-server-cmd-starttls.o >/dev/null 2>&1
--- smtp-server-cmd-auth.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-master -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-dns -I../../src/lib-program-client -I../../src/lib-mail -DTEST_BIN_DIR=\"/usr/ports/mail/dovecot/work/dovecot-2.3.20/src/lib-smtp/test-bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT smtp-server-cmd-auth.lo -MD -MP -MF .deps/smtp-server-cmd-auth.Tpo -c smtp-server-cmd-auth.c  -fPIC -DPIC -o .libs/smtp-server-cmd-auth.o
--- smtp-client-connection.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-master -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-dns -I../../src/lib-program-client -I../../src/lib-mail -DTEST_BIN_DIR=\"/usr/ports/mail/dovecot/work/dovecot-2.3.20/src/lib-smtp/test-bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT smtp-client-connection.lo -MD -MP -MF .deps/smtp-client-connection.Tpo -c smtp-client-connection.c -o smtp-client-connection.o >/dev/null 2>&1
--- smtp-server-cmd-starttls.lo ---
mv -f .deps/smtp-server-cmd-starttls.Tpo .deps/smtp-server-cmd-starttls.Plo
--- smtp-server-cmd-mail.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-dns  -I../../src/lib-program-client  -I../../src/lib-mail  -DTEST_BIN_DIR=\"/usr/ports/mail/dovecot/work/dovecot-2.3.20/src/lib-smtp/test-bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT smtp-server-cmd-mail.lo -MD -MP -MF .deps/smtp-server-cmd-mail.Tpo -c -o smtp-server-cmd-mail.lo smtp-server-cmd-mail.c
--- smtp-server-cmd-auth.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-master -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-dns -I../../src/lib-program-client -I../../src/lib-mail -DTEST_BIN_DIR=\"/usr/ports/mail/dovecot/work/dovecot-2.3.20/src/lib-smtp/test-bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT smtp-server-cmd-auth.lo -MD -MP -MF .deps/smtp-server-cmd-auth.Tpo -c smtp-server-cmd-auth.c -o smtp-server-cmd-auth.o >/dev/null 2>&1
--- smtp-server-cmd-mail.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-master -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-dns -I../../src/lib-program-client -I../../src/lib-mail -DTEST_BIN_DIR=\"/usr/ports/mail/dovecot/work/dovecot-2.3.20/src/lib-smtp/test-bin\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT smtp-server-cmd-mail.lo -MD -MP -MF .deps/smtp-server-cmd-mail.Tpo -c sm