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 14.0:
pot import -p mailhub-potluck-amd64-14_0 -t 0.12.1 -U https://potluck.honeyguide.net/mailhub-potluck

With Signify Verification:
fetch https://potluck.honeyguide.net/potluck.pub; pot import -p mailhub-potluck-amd64-14_0 -t 0.12.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-14_0 -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. 14.0) 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.12

  • Version bump for new base image
  • Fix node_exporter zfs issue
  • Update quarterlies git branch

0.11

  • Version bump for new base image
  • FBSD14 base image
  • Perl36, add net/p5-IO-Socket-INET6 and net/p5-Socket6 to ports pulled from git
  • Fix global-acls issue by creating necessary directory /usr/local/etc/dovecot/global-acls
  • Add necessary config line to dovecot.conf for ACL fix
  • Create file instead of directory for global-acls

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 Tue Apr 23 08:49:53 UTC 2024

Manual Image Download Links

mailhub-potluck-amd64-14_0_0.12.1.xz ( )
mailhub-potluck-amd64-14_0_0.12.1.xz.skein ( ) mailhub-potluck-amd64-14_0_0.12.1.xz.skein.sig ( ) mailhub-potluck-amd64-14_0_0.12.1.xz.meta ( )

Jenkins Pot Creation Logs

mailhub-potluck-amd64-14_0_0.12.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.36/ \
  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/p5-IO-Socket-INET6 \
  net/p5-Socket6 \
  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
#git pull --depth=1 origin 2024Q1
git pull --depth=1 origin 2024Q2

#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-14_0/conf)
=====>  Cloning freebsd-potluck-amd64-14_0_0_0_23 with snap 
=====>  clone zroot/srv/pot/jails/freebsd-potluck-amd64-14_0_0_0_23/m@1713115286 into zroot/srv/pot/jails/mailhub-potluck-amd64-14_0/m
=====>  Flavour: fbsd-update
=====>  Starting mailhub-potluck-amd64-14_0 pot for the initial bootstrap
=====>  mount /mnt/srv/pot/jails/mailhub-potluck-amd64-14_0/m/tmp
defaultrouter: 10.192.0.1 -> 10.192.0.1
===>  Starting the pot mailhub-potluck-amd64-14_0
=====>  Pot mailhub-potluck-amd64-14_0 jail params are: allow.set_hostname=false allow.raw_sockets allow.socket_af allow.chflags exec.clean mount.devfs enforce_statfs=2 sysvshm=new sysvsem=new sysvmsg=new children.max=0 devfs_ruleset=4 stop.timeout=10 name=mailhub-potluck-amd64-14_0 host.hostname=mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net osrelease=14.0-RELEASE-p6 path=/mnt/srv/pot/jails/mailhub-potluck-amd64-14_0/m persist vnet vnet.interface=epair0b
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=1008049<UP,LOOPBACK,RUNNING,MULTICAST,LOWER_UP> metric 0 mtu 16384
	options=680003<RXCSUM,TXCSUM,LINKSTATE,RXCSUM_IPV6,TXCSUM_IPV6>
	inet 127.0.0.1 netmask 0xff000000
	inet6 ::1 prefixlen 128
	inet6 fe80::1%lo0 prefixlen 64 scopeid 0x6
	groups: lo
	nd6 options=21<PERFORMNUD,AUTO_LINKLOCAL>
epair0b: flags=1008843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST,LOWER_UP> metric 0 mtu 1500
	options=8<VLAN_MTU>
	ether 02:b6:4d:f9:7e: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 /var/run/os-release done.
Creating and/or trimming log files.
Updating motd:.
Starting syslogd.
Starting sendmail_submit.
Starting cron.

Tue Apr 23 08:34:11 UTC 2024
/usr/local/etc/pot/flavours/fbsd-update.sh -> /mnt/srv/pot/jails/mailhub-potluck-amd64-14_0/m/tmp/fbsd-update.sh
=====>  Executing fbsd-update script on mailhub-potluck-amd64-14_0
src component not installed, skipped
Looking up update.FreeBSD.org mirrors... 3 mirrors found.
Fetching metadata signature for 14.0-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 14.0-RELEASE-p6.
No updates are available to install.
=====>  Stop the pot mailhub-potluck-amd64-14_0
=====>  Remove p466277281a66e epair network interfaces
=====>  unmount /mnt/srv/pot/jails/mailhub-potluck-amd64-14_0/m/tmp
=====>  unmount /mnt/srv/pot/jails/mailhub-potluck-amd64-14_0/m/dev
=====>  Flavour: mailhub-potluck
=====>  Executing mailhub-potluck pot commands on mailhub-potluck-amd64-14_0
=====>  mount /mnt/srv/pot/jails/mailhub-potluck-amd64-14_0/m/tmp
=====>  Source /usr/local/etc/pot/flavours/mailhub-potluck.d/local copied in the pot mailhub-potluck-amd64-14_0
=====>  unmount /mnt/srv/pot/jails/mailhub-potluck-amd64-14_0/m/tmp
=====>  /mnt/srv/pot/jails/mailhub-potluck-amd64-14_0/m/dev is already unmounted
=====>  Starting mailhub-potluck-amd64-14_0 pot for the initial bootstrap
=====>  mount /mnt/srv/pot/jails/mailhub-potluck-amd64-14_0/m/tmp
defaultrouter: 10.192.0.1 -> 10.192.0.1
===>  Starting the pot mailhub-potluck-amd64-14_0
=====>  Pot mailhub-potluck-amd64-14_0 jail params are: allow.set_hostname=false allow.raw_sockets allow.socket_af allow.chflags exec.clean mount.devfs enforce_statfs=2 sysvshm=new sysvsem=new sysvmsg=new children.max=0 devfs_ruleset=4 stop.timeout=10 name=mailhub-potluck-amd64-14_0 host.hostname=mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net osrelease=14.0-RELEASE-p6 path=/mnt/srv/pot/jails/mailhub-potluck-amd64-14_0/m persist vnet vnet.interface=epair0b
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=1008049<UP,LOOPBACK,RUNNING,MULTICAST,LOWER_UP> metric 0 mtu 16384
	options=680003<RXCSUM,TXCSUM,LINKSTATE,RXCSUM_IPV6,TXCSUM_IPV6>
	inet 127.0.0.1 netmask 0xff000000
	inet6 ::1 prefixlen 128
	inet6 fe80::1%lo0 prefixlen 64 scopeid 0x6
	groups: lo
	nd6 options=21<PERFORMNUD,AUTO_LINKLOCAL>
epair0b: flags=1008843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST,LOWER_UP> metric 0 mtu 1500
	options=8<VLAN_MTU>
	ether 02:87:7d:3e:64: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 /var/run/os-release done.
Creating and/or trimming log files.
Updating motd:.
Starting syslogd.
Starting sendmail_submit.
Starting cron.

Tue Apr 23 08:34:42 UTC 2024
/usr/local/etc/pot/flavours/mailhub-potluck.sh -> /mnt/srv/pot/jails/mailhub-potluck-amd64-14_0/m/tmp/mailhub-potluck.sh
=====>  Executing mailhub-potluck script on mailhub-potluck-amd64-14_0
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_submit 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...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] Fetching data.pkg: .......... done
Processing entries: .......... done
FreeBSD repository update completed. 34041 packages processed.
All repositories are up to date.
New version of pkg detected; it needs to be installed first.
The following 1 package(s) will be affected (of 0 checked):

Installed packages to be UPGRADED:
	pkg: 1.21.1 -> 1.21.2

Number of packages to be upgraded: 1

12 MiB to be downloaded.
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching pkg-1.21.2.pkg: .......... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Upgrading pkg from 1.21.1 to 1.21.2...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting pkg-1.21.2: .......... done
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.80.0,2
	ivykis: 0.43_1
	json-c: 0.17
	libffi: 3.4.4_1
	mpdecimal: 4.0.0
	pcre2: 10.43
	py39-packaging: 23.2
	python39: 3.9.18_2
	syslog-ng: 4.6.0_2

Number of packages to be installed: 10

The process will require 158 MiB more space.
25 MiB to be downloaded.
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/10] Fetching ivykis-0.43_1.pkg: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/10] Fetching mpdecimal-4.0.0.pkg: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/10] Fetching python39-3.9.18_2.pkg: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/10] Fetching glib-2.80.0,2.pkg: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/10] Fetching syslog-ng-4.6.0_2.pkg: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [6/10] Fetching pcre2-10.43.pkg: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [7/10] Fetching libffi-3.4.4_1.pkg: ........ done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [8/10] Fetching py39-packaging-23.2.pkg: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [9/10] Fetching json-c-0.17.pkg: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [10/10] Fetching e2fsprogs-libuuid-1.47.0.pkg: ..... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/10] Installing mpdecimal-4.0.0...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/10] Extracting mpdecimal-4.0.0: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/10] Installing libffi-3.4.4_1...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/10] Extracting libffi-3.4.4_1: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/10] Installing python39-3.9.18_2...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/10] Extracting python39-3.9.18_2: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/10] Installing pcre2-10.43...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/10] Extracting pcre2-10.43: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/10] Installing py39-packaging-23.2...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/10] Extracting py39-packaging-23.2: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [6/10] Installing ivykis-0.43_1...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [6/10] Extracting ivykis-0.43_1: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [7/10] Installing glib-2.80.0,2...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [7/10] Extracting glib-2.80.0,2: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [8/10] Installing json-c-0.17...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [8/10] Extracting json-c-0.17: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [9/10] Installing e2fsprogs-libuuid-1.47.0...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [9/10] Extracting e2fsprogs-libuuid-1.47.0: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [10/10] Installing syslog-ng-4.6.0_2...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [10/10] Extracting syslog-ng-4.6.0_2: .......... done
==> Running trigger: glib-schemas.ucl
Compiling glib schemas
No schema files found: doing nothing.
==> Running trigger: gio-modules.ucl
Generating GIO modules cache
=====
Message from python39-3.9.18_2:

--
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.6.0_2:

--
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.36.3_1

Number of packages to be installed: 1

The process will require 62 MiB more space.
15 MiB to be downloaded.
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching perl5-5.36.3_1.pkg: .......... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing perl5-5.36.3_1...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting perl5-5.36.3_1: .......... 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

81 KiB to be downloaded.
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching p5-Encode-Detect-1.01_1.pkg: ......... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing p5-Encode-Detect-1.01_1...
[mailhub-potluck-amd64-14_0.vsf00002.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.82
	p5-HTML-Tagset: 3.24
	p5-HTTP-Date: 6.06
	p5-HTTP-Message: 6.45
	p5-IO-HTML: 1.004
	p5-LWP-MediaTypes: 6.04
	p5-TimeDate: 2.33,1
	p5-URI: 5.28

Number of packages to be installed: 10

377 KiB to be downloaded.
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/10] Fetching p5-HTTP-Date-6.06.pkg: .. done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/10] Fetching p5-URI-5.28.pkg: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/10] Fetching p5-Encode-Locale-1.05.pkg: ... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/10] Fetching p5-HTML-Parser-3.82.pkg: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/10] Fetching p5-LWP-MediaTypes-6.04.pkg: ...... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [6/10] Fetching p5-TimeDate-2.33,1.pkg: ...... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [7/10] Fetching p5-IO-HTML-1.004.pkg: .... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [8/10] Fetching p5-Clone-0.46.pkg: .. done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [9/10] Fetching p5-HTML-Tagset-3.24.pkg: ... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [10/10] Fetching p5-HTTP-Message-6.45.pkg: .......... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/10] Installing p5-TimeDate-2.33,1...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/10] Extracting p5-TimeDate-2.33,1: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/10] Installing p5-HTTP-Date-6.06...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/10] Extracting p5-HTTP-Date-6.06: ....... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/10] Installing p5-URI-5.28...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/10] Extracting p5-URI-5.28: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/10] Installing p5-Encode-Locale-1.05...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/10] Extracting p5-Encode-Locale-1.05: ....... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/10] Installing p5-LWP-MediaTypes-6.04...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/10] Extracting p5-LWP-MediaTypes-6.04: ........ done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [6/10] Installing p5-IO-HTML-1.004...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [6/10] Extracting p5-IO-HTML-1.004: ....... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [7/10] Installing p5-Clone-0.46...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [7/10] Extracting p5-Clone-0.46: ......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [8/10] Installing p5-HTML-Tagset-3.24...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [8/10] Extracting p5-HTML-Tagset-3.24: ....... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [9/10] Installing p5-HTTP-Message-6.45...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [9/10] Extracting p5-HTTP-Message-6.45: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [10/10] Installing p5-HTML-Parser-3.82...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [10/10] Extracting p5-HTML-Parser-3.82: .......... 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.44,1

Number of packages to be installed: 2

341 KiB to be downloaded.
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Fetching p5-Net-DNS-1.44,1.pkg: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Fetching p5-Digest-HMAC-1.04.pkg: ... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Installing p5-Digest-HMAC-1.04...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Extracting p5-Digest-HMAC-1.04: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Installing p5-Net-DNS-1.44,1...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Extracting p5-Net-DNS-1.44,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

86 KiB to be downloaded.
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching p5-NetAddr-IP-4.079.pkg: .......... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing p5-NetAddr-IP-4.079...
[mailhub-potluck-amd64-14_0.vsf00002.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-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching p5-Net-CIDR-Lite-0.22.pkg: .. done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing p5-Net-CIDR-Lite-0.22...
[mailhub-potluck-amd64-14_0.vsf00002.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

89 KiB to be downloaded.
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching p5-Net-IDN-Encode-2.500.pkg: .......... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing p5-Net-IDN-Encode-2.500...
[mailhub-potluck-amd64-14_0.vsf00002.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_1
	p5-Net-LibIDN: 0.12_5

Number of packages to be installed: 2

The process will require 1 MiB more space.
249 KiB to be downloaded.
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Fetching p5-Net-LibIDN-0.12_5.pkg: ... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Fetching libidn-1.38_1.pkg: .......... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Installing libidn-1.38_1...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Extracting libidn-1.38_1: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Installing p5-Net-LibIDN-0.12_5...
[mailhub-potluck-amd64-14_0.vsf00002.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.42
	p5-IO-Socket-SSL: 2.085
	p5-Mozilla-CA: 20240313
	p5-Net-SSLeay: 1.94

Number of packages to be installed: 4

The process will require 2 MiB more space.
624 KiB to be downloaded.
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/4] Fetching p5-Net-SSLeay-1.94.pkg: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/4] Fetching p5-IO-Socket-SSL-2.085.pkg: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/4] Fetching p5-IO-Socket-IP-0.42.pkg: ..... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/4] Fetching p5-Mozilla-CA-20240313.pkg: .......... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/4] Installing p5-Net-SSLeay-1.94...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/4] Extracting p5-Net-SSLeay-1.94: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/4] Installing p5-IO-Socket-IP-0.42...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/4] Extracting p5-IO-Socket-IP-0.42: ....... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/4] Installing p5-Mozilla-CA-20240313...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/4] Extracting p5-Mozilla-CA-20240313: ....... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/4] Installing p5-IO-Socket-SSL-2.085...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/4] Extracting p5-IO-Socket-SSL-2.085: .......... 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 8 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-CryptX: 0.080
	p5-JSON: 4.10
	p5-Mail-AuthenticationResults: 2.20231031
	p5-Mail-DKIM: 1.20240124
	p5-Mail-Tools: 2.21

Number of packages to be installed: 8

The process will require 3 MiB more space.
1 MiB to be downloaded.
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/8] Fetching p5-Mail-AuthenticationResults-2.20231031.pkg: ....... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/8] Fetching p5-Mail-DKIM-1.20240124.pkg: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/8] Fetching p5-Crypt-OpenSSL-RSA-0.33.pkg: ..... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/8] Fetching p5-Crypt-OpenSSL-Random-0.15.pkg: .. done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/8] Fetching p5-JSON-4.10.pkg: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [6/8] Fetching p5-CryptX-0.080.pkg: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [7/8] Fetching p5-Mail-Tools-2.21.pkg: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [8/8] Fetching p5-Crypt-OpenSSL-Bignum-0.09.pkg: .... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/8] Installing p5-Crypt-OpenSSL-Random-0.15...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/8] Extracting p5-Crypt-OpenSSL-Random-0.15: ........ done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/8] Installing p5-JSON-4.10...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/8] Extracting p5-JSON-4.10: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/8] Installing p5-Crypt-OpenSSL-Bignum-0.09...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/8] Extracting p5-Crypt-OpenSSL-Bignum-0.09: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/8] Installing p5-Mail-AuthenticationResults-2.20231031...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/8] Extracting p5-Mail-AuthenticationResults-2.20231031: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/8] Installing p5-Crypt-OpenSSL-RSA-0.33...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/8] Extracting p5-Crypt-OpenSSL-RSA-0.33: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [6/8] Installing p5-CryptX-0.080...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [6/8] Extracting p5-CryptX-0.080: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [7/8] Installing p5-Mail-Tools-2.21...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [7/8] Extracting p5-Mail-Tools-2.21: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [8/8] Installing p5-Mail-DKIM-1.20240124...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [8/8] Extracting p5-Mail-DKIM-1.20240124: .......... 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

169 KiB to be downloaded.
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/3] Fetching p5-Net-DNS-Resolver-Programmable-0.009.pkg: .... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/3] Fetching p5-Mail-SPF-2.9.0_5.pkg: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/3] Fetching p5-Error-0.17029.pkg: ........ done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/3] Installing p5-Net-DNS-Resolver-Programmable-0.009...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/3] Extracting p5-Net-DNS-Resolver-Programmable-0.009: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/3] Installing p5-Error-0.17029...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/3] Extracting p5-Error-0.17029: ......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/3] Installing p5-Mail-SPF-2.9.0_5...
[mailhub-potluck-amd64-14_0.vsf00002.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

34 KiB to be downloaded.
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching p5-Class-XSAccessor-1.19_2,1.pkg: ..... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing p5-Class-XSAccessor-1.19_2,1...
[mailhub-potluck-amd64-14_0.vsf00002.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

13 KiB to be downloaded.
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching p5-XString-0.005.pkg: . done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing p5-XString-0.005...
[mailhub-potluck-amd64-14_0.vsf00002.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.
428 KiB to be downloaded.
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching re2c-3.0.pkg: .......... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing re2c-3.0...
[mailhub-potluck-amd64-14_0.vsf00002.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_4

Number of packages to be installed: 1

The process will require 5 MiB more space.
1 MiB to be downloaded.
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching gnupg1-1.4.23_4.pkg: .......... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing gnupg1-1.4.23_4...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting gnupg1-1.4.23_4: .......... 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_4
	icu: 74.2_1,1
	openldap26-client: 2.6.7
	postfix-ldap: 3.9.0,1

Number of packages to be installed: 4

The process will require 73 MiB more space.
16 MiB to be downloaded.
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/4] Fetching postfix-ldap-3.9.0,1.pkg: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/4] Fetching cyrus-sasl-2.1.28_4.pkg: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/4] Fetching icu-74.2_1,1.pkg: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/4] Fetching openldap26-client-2.6.7.pkg: .......... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/4] Installing cyrus-sasl-2.1.28_4...
*** Added group `cyrus' (id 60)
*** Added user `cyrus' (id 60)
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/4] Extracting cyrus-sasl-2.1.28_4: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/4] Installing icu-74.2_1,1...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/4] Extracting icu-74.2_1,1: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/4] Installing openldap26-client-2.6.7...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/4] Extracting openldap26-client-2.6.7: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/4] Installing postfix-ldap-3.9.0,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-14_0.vsf00002.cpt.za.honeyguide.net] [4/4] Extracting postfix-ldap-3.9.0,1: .......... done
chown: /usr/local/share/man/man5/mongodb_table.5.gz: No such file or directory

===============================================================
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_4:

--
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.7:

--
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.9.0,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: 2.2.0,1

Number of packages to be installed: 1

82 KiB to be downloaded.
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching pkgconf-2.2.0,1.pkg: .......... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing pkgconf-2.2.0,1...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting pkgconf-2.2.0,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.7_1
	socat: 1.8.0.0_3

Number of packages to be installed: 2

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

--
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 6 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	arc: 5.21q_1
	arj: 3.10.22_12
	clamav: 1.3.1,1
	libmspack: 0.11alpha
	libxml2: 2.11.7
	unzoo: 4.4_2

Number of packages to be installed: 6

The process will require 67 MiB more space.
13 MiB to be downloaded.
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/6] Fetching libmspack-0.11alpha.pkg: ......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/6] Fetching libxml2-2.11.7.pkg: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/6] Fetching unzoo-4.4_2.pkg: ... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/6] Fetching clamav-1.3.1,1.pkg: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/6] Fetching arj-3.10.22_12.pkg: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [6/6] Fetching arc-5.21q_1.pkg: .......... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/6] Installing libmspack-0.11alpha...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/6] Extracting libmspack-0.11alpha: ......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/6] Installing libxml2-2.11.7...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/6] Extracting libxml2-2.11.7: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/6] Installing unzoo-4.4_2...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/6] Extracting unzoo-4.4_2: ..... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/6] Installing arj-3.10.22_12...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/6] Extracting arj-3.10.22_12: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/6] Installing arc-5.21q_1...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/6] Extracting arc-5.21q_1: ....... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [6/6] Installing clamav-1.3.1,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-14_0.vsf00002.cpt.za.honeyguide.net] [6/6] Extracting clamav-1.3.1,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.6.2
	libedit: 3.1.20230828_1,1
	libevent: 2.1.12
	libsodium: 1.0.18
	lua54: 5.4.6_1
	opendkim: 2.10.3_19
	unbound: 1.19.3

Number of packages to be installed: 7

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

--
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 16 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	groff: 1.23.0_3
	hidapi: 0.14.0
	libcbor: 0.11.0
	libcjson: 1.7.17
	libfido2: 1.14.0
	libpaper: 1.1.28_1
	libspf2: 1.2.11_1
	libunwind: 20240221
	mysql80-client: 8.0.35
	opendmarc: 1.4.2_2
	p5-DBD-mysql: 5.004
	p5-DBI: 1.643
	p5-Filter: 1.64
	p5-Switch: 2.17_1
	psutils: 1.17_6
	uchardet: 0.0.8_1

Number of packages to be installed: 16

The process will require 144 MiB more space.
11 MiB to be downloaded.
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/16] Fetching libcjson-1.7.17.pkg: ....... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/16] Fetching p5-Filter-1.64.pkg: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/16] Fetching groff-1.23.0_3.pkg: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/16] Fetching hidapi-0.14.0.pkg: ....... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/16] Fetching libunwind-20240221.pkg: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [6/16] Fetching p5-DBD-mysql-5.004.pkg: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [7/16] Fetching mysql80-client-8.0.35.pkg: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [8/16] Fetching libspf2-1.2.11_1.pkg: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [9/16] Fetching libcbor-0.11.0.pkg: ........ done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [10/16] Fetching p5-DBI-1.643.pkg: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [11/16] Fetching uchardet-0.0.8_1.pkg: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [12/16] Fetching psutils-1.17_6.pkg: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [13/16] Fetching libpaper-1.1.28_1.pkg: ..... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [14/16] Fetching opendmarc-1.4.2_2.pkg: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [15/16] Fetching libfido2-1.14.0.pkg: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [16/16] Fetching p5-Switch-2.17_1.pkg: ..... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/16] Installing libcjson-1.7.17...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/16] Extracting libcjson-1.7.17: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/16] Installing libpaper-1.1.28_1...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/16] Extracting libpaper-1.1.28_1: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/16] Installing libcbor-0.11.0...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/16] Extracting libcbor-0.11.0: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/16] Installing uchardet-0.0.8_1...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/16] Extracting uchardet-0.0.8_1: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/16] Installing psutils-1.17_6...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/16] Extracting psutils-1.17_6: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [6/16] Installing groff-1.23.0_3...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [6/16] Extracting groff-1.23.0_3: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [7/16] Installing hidapi-0.14.0...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [7/16] Extracting hidapi-0.14.0: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [8/16] Installing libunwind-20240221...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [8/16] Extracting libunwind-20240221: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [9/16] Installing libfido2-1.14.0...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [9/16] Extracting libfido2-1.14.0: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [10/16] Installing p5-Filter-1.64...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [10/16] Extracting p5-Filter-1.64: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [11/16] Installing mysql80-client-8.0.35...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [11/16] Extracting mysql80-client-8.0.35: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [12/16] Installing p5-DBI-1.643...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [12/16] Extracting p5-DBI-1.643: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [13/16] Installing p5-DBD-mysql-5.004...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [13/16] Extracting p5-DBD-mysql-5.004: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [14/16] Installing libspf2-1.2.11_1...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [14/16] Extracting libspf2-1.2.11_1: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [15/16] Installing p5-Switch-2.17_1...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [15/16] Extracting p5-Switch-2.17_1: ....... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [16/16] Installing opendmarc-1.4.2_2...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [16/16] Extracting opendmarc-1.4.2_2: .......... done
=====
Message from groff-1.23.0_3:

--
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.35:

--
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 33 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	py39-aioquic: 0.9.25
	py39-anyio: 4.3.0
	py39-async_generator: 1.10
	py39-attrs: 23.2.0
	py39-authres: 1.2.0
	py39-certifi: 2024.2.2
	py39-cffi: 1.16.0
	py39-cryptography: 42.0.5_1,1
	py39-dnspython: 2.6.1,1
	py39-exceptiongroup: 1.2.0
	py39-h11: 0.14.0
	py39-h2: 4.1.0
	py39-hpack: 4.0.0
	py39-httpcore: 1.0.5
	py39-httpx: 0.27.0_1
	py39-hyperframe: 6.0.0
	py39-idna: 3.7
	py39-milter: 1.0.5
	py39-openssl: 23.2.0,1
	py39-outcome: 1.3.0_1
	py39-pyasn1: 0.6.0
	py39-pyasn1-modules: 0.3.0
	py39-pycparser: 2.22
	py39-pylsqpack: 0.3.18
	py39-pyspf: 2.0.14_1
	py39-service-identity: 23.1.0
	py39-setuptools: 63.1.0_1
	py39-sniffio: 1.3.1
	py39-socksio: 1.0.0
	py39-sortedcontainers: 2.4.0
	py39-spf-engine: 3.0.4
	py39-trio: 0.25.0
	py39-typing-extensions: 4.11.0

Number of packages to be installed: 33

The process will require 34 MiB more space.
5 MiB to be downloaded.
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/33] Fetching py39-attrs-23.2.0.pkg: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/33] Fetching py39-socksio-1.0.0.pkg: .... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/33] Fetching py39-httpx-0.27.0_1.pkg: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/33] Fetching py39-pyasn1-0.6.0.pkg: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/33] Fetching py39-exceptiongroup-1.2.0.pkg: ..... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [6/33] Fetching py39-httpcore-1.0.5.pkg: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [7/33] Fetching py39-cryptography-42.0.5_1,1.pkg: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [8/33] Fetching py39-service-identity-23.1.0.pkg: ... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [9/33] Fetching py39-pyasn1-modules-0.3.0.pkg: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [10/33] Fetching py39-outcome-1.3.0_1.pkg: . done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [11/33] Fetching py39-async_generator-1.10.pkg: ....... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [12/33] Fetching py39-openssl-23.2.0,1.pkg: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [13/33] Fetching py39-hpack-4.0.0.pkg: ...... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [14/33] Fetching py39-dnspython-2.6.1,1.pkg: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [15/33] Fetching py39-aioquic-0.9.25.pkg: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [16/33] Fetching py39-sortedcontainers-2.4.0.pkg: ........ done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [17/33] Fetching py39-anyio-4.3.0.pkg: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [18/33] Fetching py39-pylsqpack-0.3.18.pkg: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [19/33] Fetching py39-hyperframe-6.0.0.pkg: ..... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [20/33] Fetching py39-authres-1.2.0.pkg: ....... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [21/33] Fetching py39-h11-0.14.0.pkg: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [22/33] Fetching py39-trio-0.25.0.pkg: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [23/33] Fetching py39-spf-engine-3.0.4.pkg: ....... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [24/33] Fetching py39-pycparser-2.22.pkg: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [25/33] Fetching py39-cffi-1.16.0.pkg: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [26/33] Fetching py39-setuptools-63.1.0_1.pkg: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [27/33] Fetching py39-pyspf-2.0.14_1.pkg: ........ done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [28/33] Fetching py39-certifi-2024.2.2.pkg: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [29/33] Fetching py39-milter-1.0.5.pkg: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [30/33] Fetching py39-sniffio-1.3.1.pkg: ... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [31/33] Fetching py39-idna-3.7.pkg: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [32/33] Fetching py39-typing-extensions-4.11.0.pkg: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [33/33] Fetching py39-h2-4.1.0.pkg: .......... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/33] Installing py39-pycparser-2.22...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/33] Extracting py39-pycparser-2.22: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/33] Installing py39-setuptools-63.1.0_1...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/33] Extracting py39-setuptools-63.1.0_1: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/33] Installing py39-pyasn1-0.6.0...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/33] Extracting py39-pyasn1-0.6.0: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/33] Installing py39-exceptiongroup-1.2.0...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/33] Extracting py39-exceptiongroup-1.2.0: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/33] Installing py39-hpack-4.0.0...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/33] Extracting py39-hpack-4.0.0: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [6/33] Installing py39-hyperframe-6.0.0...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [6/33] Extracting py39-hyperframe-6.0.0: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [7/33] Installing py39-cffi-1.16.0...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [7/33] Extracting py39-cffi-1.16.0: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [8/33] Installing py39-sniffio-1.3.1...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [8/33] Extracting py39-sniffio-1.3.1: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [9/33] Installing py39-idna-3.7...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [9/33] Extracting py39-idna-3.7: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [10/33] Installing py39-typing-extensions-4.11.0...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [10/33] Extracting py39-typing-extensions-4.11.0: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [11/33] Installing py39-attrs-23.2.0...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [11/33] Extracting py39-attrs-23.2.0: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [12/33] Installing py39-cryptography-42.0.5_1,1...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [12/33] Extracting py39-cryptography-42.0.5_1,1: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [13/33] Installing py39-pyasn1-modules-0.3.0...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [13/33] Extracting py39-pyasn1-modules-0.3.0: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [14/33] Installing py39-anyio-4.3.0...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [14/33] Extracting py39-anyio-4.3.0: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [15/33] Installing py39-h11-0.14.0...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [15/33] Extracting py39-h11-0.14.0: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [16/33] Installing py39-certifi-2024.2.2...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [16/33] Extracting py39-certifi-2024.2.2: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [17/33] Installing py39-h2-4.1.0...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [17/33] Extracting py39-h2-4.1.0: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [18/33] Installing py39-socksio-1.0.0...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [18/33] Extracting py39-socksio-1.0.0: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [19/33] Installing py39-httpcore-1.0.5...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [19/33] Extracting py39-httpcore-1.0.5: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [20/33] Installing py39-service-identity-23.1.0...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [20/33] Extracting py39-service-identity-23.1.0: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [21/33] Installing py39-outcome-1.3.0_1...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [21/33] Extracting py39-outcome-1.3.0_1: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [22/33] Installing py39-async_generator-1.10...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [22/33] Extracting py39-async_generator-1.10: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [23/33] Installing py39-openssl-23.2.0,1...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [23/33] Extracting py39-openssl-23.2.0,1: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [24/33] Installing py39-sortedcontainers-2.4.0...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [24/33] Extracting py39-sortedcontainers-2.4.0: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [25/33] Installing py39-pylsqpack-0.3.18...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [25/33] Extracting py39-pylsqpack-0.3.18: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [26/33] Installing py39-httpx-0.27.0_1...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [26/33] Extracting py39-httpx-0.27.0_1: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [27/33] Installing py39-aioquic-0.9.25...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [27/33] Extracting py39-aioquic-0.9.25: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [28/33] Installing py39-trio-0.25.0...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [28/33] Extracting py39-trio-0.25.0: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [29/33] Installing py39-dnspython-2.6.1,1...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [29/33] Extracting py39-dnspython-2.6.1,1: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [30/33] Installing py39-authres-1.2.0...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [30/33] Extracting py39-authres-1.2.0: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [31/33] Installing py39-pyspf-2.0.14_1...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [31/33] Extracting py39-pyspf-2.0.14_1: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [32/33] Installing py39-milter-1.0.5...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [32/33] Extracting py39-milter-1.0.5: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [33/33] 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-14_0.vsf00002.cpt.za.honeyguide.net] [33/33] 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.18.1_1

Number of packages to be installed: 1

The process will require 121 MiB more space.
24 MiB to be downloaded.
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching consul-1.18.1_1.pkg: .......... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing consul-1.18.1_1...
===> Creating groups.
Creating group 'consul' with gid '469'.
===> Creating users
Creating user 'consul' with uid '469'.
===> Creating homedir(s)
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting consul-1.18.1_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.6.1_4

Number of packages to be installed: 1

The process will require 11 MiB more space.
4 MiB to be downloaded.
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching node_exporter-1.6.1_4.pkg: .......... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing node_exporter-1.6.1_4...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting node_exporter-1.6.1_4: .......... done
=====
Message from node_exporter-1.6.1_4:

--
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.44.0

Number of packages to be installed: 1

The process will require 34 MiB more space.
6 MiB to be downloaded.
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching git-lite-2.44.0.pkg: .......... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing git-lite-2.44.0...
===> Creating groups.
Creating group 'git_daemon' with gid '964'.
===> Creating users
Creating user 'git_daemon' with uid '964'.
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting git-lite-2.44.0: .......... done
=====
Message from git-lite-2.44.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.21_1,2
	go121: 1.21.9

Number of packages to be installed: 2

The process will require 206 MiB more space.
42 MiB to be downloaded.
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Fetching go-1.21_1,2.pkg: . done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Fetching go121-1.21.9.pkg: .......... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Installing go121-1.21.9...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Extracting go121-1.21.9: .......... done
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Installing go-1.21_1,2...
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Extracting go-1.21_1,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                2024Q2     -> FETCH_HEAD
 * [new branch]          2024Q2     -> origin/2024Q2
Step 56: Port build dovecot
===>  License LGPL21 MIT accepted by the user
===>   dovecot-2.3.21_4 depends on file: /usr/local/sbin/pkg - found
=> dovecot-2.3.21.tar.gz doesn't seem to exist in /usr/ports/distfiles/.
=> Attempting to fetch https://dovecot.org/releases/2.3/dovecot-2.3.21.tar.gz
dovecot-2.3.21.tar.gz                                 7653 kB 3000 kBps    03s
===> Fetching all distfiles required by dovecot-2.3.21_4 for building
===>  Extracting for dovecot-2.3.21_4
=> SHA256 Checksum OK for dovecot-2.3.21.tar.gz.
===>  Patching for dovecot-2.3.21_4
===>  Applying FreeBSD patches for dovecot-2.3.21_4 from /usr/ports/mail/dovecot/files
===>   dovecot-2.3.21_4 depends on package: libiconv>=1.14_11 - found
===>   dovecot-2.3.21_4 depends on package: pkgconf>=1.3.0_1 - found
===>   dovecot-2.3.21_4 depends on file: /usr/local/lib/libcrypto.so.12 - found
===>   dovecot-2.3.21_4 depends on shared library: libzstd.so - found (/usr/local/lib/libzstd.so)
===>   dovecot-2.3.21_4 depends on shared library: libldap.so.2 - found (/usr/local/lib/libldap.so.2)
===>   dovecot-2.3.21_4 depends on shared library: libmysqlclient.so.21 - found (/usr/local/lib/mysql/libmysqlclient.so.21)
===>  Configuring for dovecot-2.3.21_4
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-freebsd14.0
checking host system type... amd64-portbld-freebsd14.0
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-freebsd14.0 file names to amd64-portbld-freebsd14.0 format... func_convert_file_noop
checking how to convert amd64-portbld-freebsd14.0 file names to toolchain format... func_convert_file_noop
checking for /usr/bin/ld option to reload object files... -r
checking for objdump... objdump
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... freebsd14.0 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... freebsd14.0 ld.so
checking how to hardcode library paths into programs... immediate
checking for ld... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for shared library run path origin... done
checking 32-bit host C ABI... unknown
checking for ELF binary format... yes
checking for the common suffixes of directories in the library search path... lib,lib32,lib
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... yes
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... yes
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 -mfunction-return=keep -Wall -W -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.21_4
--- 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 ---
--- ostream-final-trickle.lo ---
--- test-common.lo ---
--- test-istream.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 -mfunction-return=keep -Wall -W -Wmissing-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--- ostream-final-trickle.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 -mfunction-return=keep -Wall -W -Wmissing-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-final-trickle.lo -MD -MP -MF .deps/ostream-final-trickle.Tpo -c -o ostream-final-trickle.lo ostream-final-trickle.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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-char--- ostream-final-trickle.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 -mfunction-return=keep -Wall -W -Wmissing-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-final-trickle.lo -MD -MP -MF .deps/ostream-final-trickle.Tpo -c ostream-final-trickle.c  -fPIC -DPIC -o .libs/ostream-final-trickle.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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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--- ostream-final-trickle.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 -mfunction-return=keep -Wall -W -Wmissing-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-final-trickle.lo -MD -MP -MF .deps/ostream-final-trickle.Tpo -c ostream-final-trickle.c -o ostream-final-trickle.o >/dev/null 2>&1
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 -mfunction-return=keep -Wall -W -Wmissing-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--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
mv -f .deps/fuzzer.Tpo .deps/fuzzer.Plo
--- test-ostream.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 -mfunction-return=keep -Wall -W -Wmissing-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
--- ostream-final-trickle.lo ---
mv -f .deps/ostream-final-trickle.Tpo .deps/ostream-final-trickle.Plo
--- test-subprocess.lo ---
--- test-istream.lo ---
mv -f .deps/test-istream.Tpo .deps/test-istream.Plo
/bin/sh ../../libtool  --tag=CC    --mode=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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
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 -mfunction-return=keep -Wall -W -Wmissing-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
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 -mfunction-return=keep -Wall -W -Wmissing-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--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- test-ostream.lo ---
mv -f .deps/test-ostream.Tpo .deps/test-ostream.Plo
--- test-common.lo ---
mv -f .deps/test-common.Tpo .deps/test-common.Plo
--- test-subprocess.lo ---
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 -mfunction-return=keep -Wall -W -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 ostream-final-trickle.lo  test-common.lo test-istream.lo test-ostream.lo  test-subprocess.lo  
libtool: link: ar cr .libs/libtest.a .libs/fuzzer.o .libs/ostream-final-trickle.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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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-cpu-limit.o ---
mv -f .deps/test_lib-test-cpu-limit.Tpo .deps/test_lib-test-cpu-limit.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 -mfunction-return=keep -Wall -W -Wmissing-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-env-util.o ---
mv -f .deps/test_lib-test-env-util.Tpo .deps/test_lib-test-env-util.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 -mfunction-return=keep -Wall -W -Wmissing-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-connection.o ---
mv -f .deps/test_lib-test-connection.Tpo .deps/test_lib-test-connection.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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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-guid.o ---
mv -f .deps/test_lib-test-guid.Tpo .deps/test_lib-test-guid.Po
--- test_lib-test-hmac.o ---
--- test_lib-test-hex-binary.o ---
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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
mv -f .deps/test_lib-test-hex-binary.Tpo .deps/test_lib-test-hex-binary.Po
--- test_lib-test-imem.o ---
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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-hmac.o ---
mv -f .deps/test_lib-test-hmac.Tpo .deps/test_lib-test-hmac.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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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-proxy.o ---
mv -f .deps/test_lib-test-iostream-proxy.Tpo .deps/test_lib-test-iostream-proxy.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 -mfunction-return=keep -Wall -W -Wmissing-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-pump.o ---
mv -f .deps/test_lib-test-iostream-pump.Tpo .deps/test_lib-test-iostream-pump.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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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-concat.o ---
mv -f .deps/test_lib-test-istream-concat.Tpo .deps/test_lib-test-istream-concat.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 -mfunction-return=keep -Wall -W -Wmissing-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-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-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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-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 -mfunction-return=keep -Wall -W -Wmissing-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-sized.o ---
mv -f .deps/test_lib-test-istream-sized.Tpo .deps/test_lib-test-istream-sized.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 -mfunction-return=keep -Wall -W -Wmissing-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-multiplex.o ---
mv -f .deps/test_lib-test-istream-multiplex.Tpo .deps/test_lib-test-istream-multiplex.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 -mfunction-return=keep -Wall -W -Wmissing-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-istream-seekable.o ---
mv -f .deps/test_lib-test-istream-seekable.Tpo .deps/test_lib-test-istream-seekable.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 -mfunction-return=keep -Wall -W -Wmissing-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-tee.o ---
mv -f .deps/test_lib-test-istream-tee.Tpo .deps/test_lib-test-istream-tee.Po
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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-istream-unix.o ---
mv -f .deps/test_lib-test-istream-unix.Tpo .deps/test_lib-test-istream-unix.Po
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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-try.o ---
mv -f .deps/test_lib-test-istream-try.Tpo .deps/test_lib-test-istream-try.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 -mfunction-return=keep -Wall -W -Wmissing-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-json-tree.o ---
mv -f .deps/test_lib-test-json-tree.Tpo .deps/test_lib-test-json-tree.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 -mfunction-return=keep -Wall -W -Wmissing-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-lib-event.o ---
mv -f .deps/test_lib-test-lib-event.Tpo .deps/test_lib-test-lib-event.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 -mfunction-return=keep -Wall -W -Wmissing-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-json-parser.o ---
mv -f .deps/test_lib-test-json-parser.Tpo .deps/test_lib-test-json-parser.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 -mfunction-return=keep -Wall -W -Wmissing-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-lib-signals.o ---
mv -f .deps/test_lib-test-lib-signals.Tpo .deps/test_lib-test-lib-signals.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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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-llist.o ---
mv -f .deps/test_lib-test-llist.Tpo .deps/test_lib-test-llist.Po
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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-memarea.o ---
mv -f .deps/test_lib-test-memarea.Tpo .deps/test_lib-test-memarea.Po
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 ---
--- 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-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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 ---
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 -mfunction-return=keep -Wall -W -Wmissing-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-net.o ---
mv -f .deps/test_lib-test-net.Tpo .deps/test_lib-test-net.Po
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 ---
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 -mfunction-return=keep -Wall -W -Wmissing-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-ostream-file.o ---
mv -f .deps/test_lib-test-ostream-file.Tpo .deps/test_lib-test-ostream-file.Po
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 ---
--- 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-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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 ---
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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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-str-table.o ---
mv -f .deps/test_lib-test-str-table.Tpo .deps/test_lib-test-str-table.Po
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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-time-util.o ---
mv -f .deps/test_lib-test-time-util.Tpo .deps/test_lib-test-time-util.Po
--- 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 ---
--- array.lo ---
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 ---
/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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- array.lo ---
mv -f .deps/array.Tpo .deps/array.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 -mfunction-return=keep -Wall -W -Wmissing-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
--- backtrace-string.lo ---
mv -f .deps/backtrace-string.Tpo .deps/backtrace-string.Plo
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- aqueue.lo ---
mv -f .deps/aqueue.Tpo .deps/aqueue.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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- bits.lo ---
mv -f .deps/bits.Tpo .deps/bits.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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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 ---
mv -f .deps/base32.Tpo .deps/base32.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 -mfunction-return=keep -Wall -W -Wmissing-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
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 ---
/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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
mv -f .deps/askpass.Tpo .deps/askpass.Plo
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
--- base64.lo ---
mv -f .deps/base64.Tpo .deps/base64.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 -mfunction-return=keep -Wall -W -Wmissing-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
--- buffer.lo ---
mv -f .deps/buffer.Tpo .deps/buffer.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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- child-wait.lo ---
mv -f .deps/child-wait.Tpo .deps/child-wait.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 -mfunction-return=keep -Wall -W -Wmissing-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
--- compat.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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- compat.lo ---
mv -f .deps/compat.Tpo .deps/compat.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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 ---
mv -f .deps/cpu-limit.Tpo .deps/cpu-limit.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 -mfunction-return=keep -Wall -W -Wmissing-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
--- crc32.lo ---
mv -f .deps/crc32.Tpo .deps/crc32.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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 ---
mv -f .deps/env-util.Tpo .deps/env-util.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 -mfunction-return=keep -Wall -W -Wmissing-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
--- data-stack.lo ---
mv -f .deps/data-stack.Tpo .deps/data-stack.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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- eacces-error.lo ---
mv -f .deps/eacces-error.Tpo .deps/eacces-error.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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- connection.lo ---
mv -f .deps/connection.Tpo .deps/connection.Plo
--- execv-const.lo ---
mv -f .deps/execv-const.Tpo .deps/execv-const.Plo
--- failures.lo ---
--- fd-util.lo ---
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- fdatasync-path.lo ---
mv -f .deps/fdatasync-path.Tpo .deps/fdatasync-path.Plo
--- file-cache.lo ---
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- file-copy.lo ---
mv -f .deps/file-copy.Tpo .deps/file-copy.Plo
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
--- file-cache.lo ---
mv -f .deps/file-cache.Tpo .deps/file-cache.Plo
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- file-create-locked.lo ---
mv -f .deps/file-create-locked.Tpo .deps/file-create-locked.Plo
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 ---
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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- hash-format.lo ---
mv -f .deps/hash-format.Tpo .deps/hash-format.Plo
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 ---
mv -f .deps/hex-binary.Tpo .deps/hex-binary.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 -mfunction-return=keep -Wall -W -Wmissing-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
--- hex-dec.lo ---
mv -f .deps/hex-dec.Tpo .deps/hex-dec.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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- hash2.lo ---
mv -f .deps/hash2.Tpo .deps/hash2.Plo
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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.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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 ---
mv -f .deps/home-expand.Tpo .deps/home-expand.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 -mfunction-return=keep -Wall -W -Wmissing-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
--- hmac.lo ---
mv -f .deps/hmac.Tpo .deps/hmac.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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 ---
/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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- imem.lo ---
mv -f .deps/imem.Tpo .deps/imem.Plo
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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.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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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.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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
--- iostream-pump.lo ---
mv -f .deps/iostream-pump.Tpo .deps/iostream-pump.Plo
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- istream-base64-decoder.lo ---
mv -f .deps/istream-base64-decoder.Tpo .deps/istream-base64-decoder.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 -mfunction-return=keep -Wall -W -Wmissing-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
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
--- iso8601-date.lo ---
mv -f .deps/iso8601-date.Tpo .deps/iso8601-date.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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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-base64-encoder.lo ---
mv -f .deps/istream-base64-encoder.Tpo .deps/istream-base64-encoder.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 -mfunction-return=keep -Wall -W -Wmissing-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-callback.lo ---
mv -f .deps/istream-callback.Tpo .deps/istream-callback.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 -mfunction-return=keep -Wall -W -Wmissing-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.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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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-failure-at.lo ---
mv -f .deps/istream-failure-at.Tpo .deps/istream-failure-at.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 -mfunction-return=keep -Wall -W -Wmissing-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
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- istream.lo ---
mv -f .deps/istream.Tpo .deps/istream.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 -mfunction-return=keep -Wall -W -Wmissing-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
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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 ---
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 -mfunction-return=keep -Wall -W -Wmissing-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
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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 ---
--- istream-jsonstr.lo ---
mv -f .deps/istream-jsonstr.Tpo .deps/istream-jsonstr.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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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-tee.lo ---
mv -f .deps/istream-tee.Tpo .deps/istream-tee.Plo
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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-try.lo ---
mv -f .deps/istream-try.Tpo .deps/istream-try.Plo
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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-poll.lo ---
mv -f .deps/ioloop-poll.Tpo .deps/ioloop-poll.Plo
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 ---
mv -f .deps/mempool.Tpo .deps/mempool.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 -mfunction-return=keep -Wall -W -Wmissing-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
--- md5.lo ---
mv -f .deps/md5.Tpo .deps/md5.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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 ---
/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 -mfunction-return=keep -Wall -W -Wmissing-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
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-allocfree.lo ---
mv -f .deps/mempool-allocfree.Tpo .deps/mempool-allocfree.Plo
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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-system.lo ---
mv -f .deps/mempool-system.Tpo .deps/mempool-system.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 -mfunction-return=keep -Wall -W -Wmissing-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-unsafe-datastack.lo ---
mv -f .deps/mempool-unsafe-datastack.Tpo .deps/mempool-unsafe-datastack.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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
--- mmap-util.lo ---
mv -f .deps/mmap-util.Tpo .deps/mmap-util.Plo
--- mmap-anon.lo ---
mv -f .deps/mmap-anon.Tpo .deps/mmap-anon.Plo
--- net.lo ---
--- nfs-workarounds.lo ---
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- numpack.lo ---
mv -f .deps/numpack.Tpo .deps/numpack.Plo
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 ---
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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
mv -f .deps/ostream-failure-at.Tpo .deps/ostream-failure-at.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 -mfunction-return=keep -Wall -W -Wmissing-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
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
--- net.lo ---
mv -f .deps/net.Tpo .deps/net.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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 ---
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 -mfunction-return=keep -Wall -W -Wmissing-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
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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.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 -mfunction-return=keep -Wall -W -Wmissing-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
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-rawlog.lo ---
mv -f .deps/ostream-rawlog.Tpo .deps/ostream-rawlog.Plo
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- ostream-unix.lo ---
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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 ---
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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
mv -f .deps/primes.Tpo .deps/primes.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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- path-util.lo ---
mv -f .deps/path-util.Tpo .deps/path-util.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 -mfunction-return=keep -Wall -W -Wmissing-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
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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 ---
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 -mfunction-return=keep -Wall -W -Wmissing-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
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- priorityq.lo ---
mv -f .deps/priorityq.Tpo .deps/priorityq.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 -mfunction-return=keep -Wall -W -Wmissing-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
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
--- randgen.lo ---
mv -f .deps/randgen.Tpo .deps/randgen.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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- sleep.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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
mv -f .deps/sleep.Tpo .deps/sleep.Plo
--- sort.lo ---
--- sha3.lo ---
mv -f .deps/sha3.Tpo .deps/sha3.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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- seq-range-array.lo ---
mv -f .deps/seq-range-array.Tpo .deps/seq-range-array.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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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-table.lo ---
mv -f .deps/str-table.Tpo .deps/str-table.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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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-find.lo ---
mv -f .deps/str-find.Tpo .deps/str-find.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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 ---
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- utc-offset.lo ---
mv -f .deps/utc-offset.Tpo .deps/utc-offset.Plo
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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.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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- uri-util.lo ---
mv -f .deps/uri-util.Tpo .deps/uri-util.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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- var-expand.lo ---
mv -f .deps/var-expand.Tpo .deps/var-expand.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 -mfunction-return=keep -Wall -W -Wmissing-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
--- var-expand-if.lo ---
mv -f .deps/var-expand-if.Tpo .deps/var-expand-if.Plo
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -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 cr .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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -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 cr .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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -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 cr .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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -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 cr .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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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-ssl.lo ---
mv -f .deps/master-service-ssl.Tpo .deps/master-service-ssl.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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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-settings.lo ---
mv -f .deps/master-service-settings.Tpo .deps/master-service-settings.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 -mfunction-return=keep -Wall -W -Wmissing-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.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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -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 cr .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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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
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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -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 cr .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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- dovecot-openssl-common.lo ---
dovecot-openssl-common.c:79:3: warning: 'ENGINE_finish' is deprecated [-Wdeprecated-declarations]
                ENGINE_finish(dovecot_openssl_engine);
                ^
/usr/local/include/openssl/engine.h:628:1: note: 'ENGINE_finish' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 int ENGINE_finish(ENGINE *e);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dovecot-openssl-common.c:113:2: warning: 'ENGINE_load_builtin_engines' is deprecated [-Wdeprecated-declarations]
        ENGINE_load_builtin_engines();
        ^
/usr/local/include/openssl/engine.h:358:1: note: 'ENGINE_load_builtin_engines' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 void ENGINE_load_builtin_engines(void);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dovecot-openssl-common.c:114:27: warning: 'ENGINE_by_id' is deprecated [-Wdeprecated-declarations]
        dovecot_openssl_engine = ENGINE_by_id(engine);
                                 ^
/usr/local/include/openssl/engine.h:336:1: note: 'ENGINE_by_id' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 ENGINE *ENGINE_by_id(const char *id);
^
--- iostream-openssl-common.lo ---
iostream-openssl-common.c:273:16: warning: 'ERR_get_error_line_data' is deprecated [-Wdeprecated-declarations]
        while ((err = ERR_get_error_line_data(NULL, NULL, &data, &flags)) != 0) {
                      ^
/usr/local/include/openssl/err.h:424:1: note: 'ERR_get_error_line_data' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
--- dovecot-openssl-common.lo ---
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dovecot-openssl-common.c:119:6: warning: 'ENGINE_init' is deprecated [-Wdeprecated-declarations]
        if (ENGINE_init(dovecot_openssl_engine) == 0) {
            ^
/usr/local/include/openssl/engine.h:620:1: note: 'ENGINE_init' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 int ENGINE_init(ENGINE *e);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dovecot-openssl-common.c:121:3: warning: 'ENGINE_free' is deprecated [-Wdeprecated-declarations]
                ENGINE_free(dovecot_openssl_engine);
                ^
/usr/local/include/openssl/engine.h:493:1: note: 'ENGINE_free' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 int ENGINE_free(ENGINE *e);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dovecot-openssl-common.c:125:6: warning: 'ENGINE_set_default' is deprecated [-Wdeprecated-declarations]
        if (ENGINE_set_default(dovecot_openssl_engine, ENGINE_METHOD_ALL) == 0) {
            ^
/usr/local/include/openssl/engine.h:708:1: note: 'ENGINE_set_default' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 int ENGINE_set_default(ENGINE *e, unsigned int flags);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dovecot-openssl-common.c:127:3: warning: 'ENGINE_free' is deprecated [-Wdeprecated-declarations]
                ENGINE_free(dovecot_openssl_engine);
                ^
/usr/local/include/openssl/engine.h:493:1: note: 'ENGINE_free' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 int ENGINE_free(ENGINE *e);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
7 warnings generated.
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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- iostream-openssl-common.lo ---
1 warning generated.
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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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.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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- iostream-openssl-context.lo ---
iostream-openssl-context.c:34:13: warning: 'RSA_new' is deprecated [-Wdeprecated-declarations]
        RSA *rsa = RSA_new();
                   ^
/usr/local/include/openssl/rsa.h:201:1: note: 'RSA_new' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 RSA *RSA_new(void);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
iostream-openssl-context.c:37:6: warning: 'RSA_generate_key_ex' is deprecated [-Wdeprecated-declarations]
            RSA_generate_key_ex(rsa, keylength, bn, NULL) != 0) {
            ^
/usr/local/include/openssl/rsa.h:260:1: note: 'RSA_generate_key_ex' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 int RSA_generate_key_ex(RSA *rsa, int bits, BIGNUM *e,
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
iostream-openssl-context.c:45:3: warning: 'RSA_free' is deprecated [-Wdeprecated-declarations]
                RSA_free(rsa);
                ^
/usr/local/include/openssl/rsa.h:293:1: note: 'RSA_free' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 void RSA_free(RSA *r);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
iostream-openssl-context.c:136:7: warning: 'PEM_read_bio_DHparams' is deprecated [-Wdeprecated-declarations]
        dh = PEM_read_bio_DHparams(bio, &dh, NULL, NULL);
             ^
/usr/local/include/openssl/pem.h:469:21: note: 'PEM_read_bio_DHparams' has been explicitly marked deprecated here
DECLARE_PEM_rw_attr(OSSL_DEPRECATEDIN_3_0, DHparams, DH)
                    ^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
iostream-openssl-context.c:185:2: warning: 'DH_free' is deprecated [-Wdeprecated-declarations]
        DH_free(dh);
        ^
/usr/local/include/openssl/dh.h:204:1: note: 'DH_free' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 void DH_free(DH *dh);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
iostream-openssl-context.c:564:3: warning: 'SSL_CTX_set_tmp_dh_callback' is deprecated [-Wdeprecated-declarations]
                SSL_CTX_set_tmp_dh_callback(ssl_ctx, ssl_tmp_dh_callback);
                ^
/usr/local/include/openssl/ssl.h:2226:1: note: 'SSL_CTX_set_tmp_dh_callback' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
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 -mfunction-return=keep -Wall -W -Wmissing-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
--- iostream-openssl-context.lo ---
6 warnings generated.
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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -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 
--- 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 -mfunction-return=keep -Wall -W -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  
--- 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 -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,libssl_iostream_openssl.so -o .libs/libssl_iostream_openssl.so
--- libssl_iostream.la ---
libtool: link: ar cr .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: ar cr .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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- libdcrypt_la-dcrypt.lo ---
mv -f .deps/libdcrypt_la-dcrypt.Tpo .deps/libdcrypt_la-dcrypt.Plo
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- test_crypto-dcrypt.o ---
mv -f .deps/test_crypto-dcrypt.Tpo .deps/test_crypto-dcrypt.Po
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -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  
--- test_stream-test-stream.o ---
mv -f .deps/test_stream-test-stream.Tpo .deps/test_stream-test-stream.Po
--- 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 -mfunction-return=keep -Wall -W -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 
--- 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 -mfunction-return=keep -Wall -W -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 
--- libdcrypt.la ---
libtool: link: ar cr .libs/libdcrypt.a .libs/libdcrypt_la-dcrypt.o .libs/libdcrypt_la-istream-decrypt.o .libs/libdcrypt_la-ostream-encrypt.o 
libtool: link: ranlib .libs/libdcrypt.a
libtool: link: ( cd ".libs" && rm -f "libdcrypt.la" && ln -s "../libdcrypt.la" "libdcrypt.la" )
--- libdcrypt_openssl_la-dcrypt-openssl.lo ---
dcrypt-openssl.c:255:6: warning: 'EC_KEY_get0_public_key' is deprecated [-Wdeprecated-declarations]
        p = EC_KEY_get0_public_key(key);
            ^
/usr/local/include/openssl/ec.h:1062:1: note: 'EC_KEY_get0_public_key' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 const EC_POINT *EC_KEY_get0_public_key(const EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:256:6: warning: 'EC_KEY_get0_group' is deprecated [-Wdeprecated-declarations]
        g = EC_KEY_get0_group(key);
            ^
/usr/local/include/openssl/ec.h:1034:1: note: 'EC_KEY_get0_group' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 const EC_GROUP *EC_KEY_get0_group(const EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:583:2: warning: 'HMAC_CTX_free' is deprecated [-Wdeprecated-declarations]
        HMAC_CTX_free((*ctx)->ctx);
        ^
dcrypt-openssl.c:98:15: note: expanded from macro 'HMAC_CTX_free'
        STMT_START { HMAC_CTX_free(ctx); (ctx) = NULL; } STMT_END
                     ^
/usr/local/include/openssl/hmac.h:35:1: note: 'HMAC_CTX_free' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 void HMAC_CTX_free(HMAC_CTX *ctx);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:631:13: warning: 'HMAC_CTX_new' is deprecated [-Wdeprecated-declarations]
        ctx->ctx = HMAC_CTX_new();
                   ^
/usr/local/include/openssl/hmac.h:33:1: note: 'HMAC_CTX_new' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 HMAC_CTX *HMAC_CTX_new(void);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:635:7: warning: 'HMAC_Init_ex' is deprecated [-Wdeprecated-declarations]
        ec = HMAC_Init_ex(ctx->ctx, ctx->key, ctx->klen, ctx->md, NULL);
             ^
/usr/local/include/openssl/hmac.h:43:1: note: 'HMAC_Init_ex' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 int HMAC_Init_ex(HMAC_CTX *ctx, const void *key, int len,
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:648:7: warning: 'HMAC_Update' is deprecated [-Wdeprecated-declarations]
        ec = HMAC_Update(ctx->ctx, data, data_len);
             ^
/usr/local/include/openssl/hmac.h:45:1: note: 'HMAC_Update' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 int HMAC_Update(HMAC_CTX *ctx, const unsigned char *data,
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:662:7: warning: 'HMAC_Final' is deprecated [-Wdeprecated-declarations]
        ec = HMAC_Final(ctx->ctx, buf, &outl);
             ^
/usr/local/include/openssl/hmac.h:47:1: note: 'HMAC_Final' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 int HMAC_Final(HMAC_CTX *ctx, unsigned char *md,
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:663:2: warning: 'HMAC_CTX_free' is deprecated [-Wdeprecated-declarations]
        HMAC_CTX_free(ctx->ctx);
        ^
dcrypt-openssl.c:98:15: note: expanded from macro 'HMAC_CTX_free'
        STMT_START { HMAC_CTX_free(ctx); (ctx) = NULL; } STMT_END
                     ^
/usr/local/include/openssl/hmac.h:35:1: note: 'HMAC_CTX_free' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 void HMAC_CTX_free(HMAC_CTX *ctx);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:706:2: warning: 'EC_KEY_set_asn1_flag' is deprecated [-Wdeprecated-declarations]
        EC_KEY_set_asn1_flag(EVP_PKEY_get0_EC_KEY((*key)),
        ^
/usr/local/include/openssl/ec.h:1087:1: note: 'EC_KEY_set_asn1_flag' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 void EC_KEY_set_asn1_flag(EC_KEY *eckey, int asn1_flag);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:706:23: warning: 'EVP_PKEY_get0_EC_KEY' is deprecated [-Wdeprecated-declarations]
        EC_KEY_set_asn1_flag(EVP_PKEY_get0_EC_KEY((*key)),
                             ^
/usr/local/include/openssl/evp.h:1373:1: note: 'EVP_PKEY_get0_EC_KEY' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:706:23: warning: passing 'const struct ec_key_st *' to parameter of type 'EC_KEY *' (aka 'struct ec_key_st *') discards qualifiers [-Wincompatible-pointer-types-discards-qualifiers]
        EC_KEY_set_asn1_flag(EVP_PKEY_get0_EC_KEY((*key)),
                             ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/usr/local/include/openssl/ec.h:1087:57: note: passing argument to parameter 'eckey' here
OSSL_DEPRECATEDIN_3_0 void EC_KEY_set_asn1_flag(EC_KEY *eckey, int asn1_flag);
                                                        ^
dcrypt-openssl.c:777:24: warning: 'EC_KEY_get0_group' is deprecated [-Wdeprecated-declarations]
        const EC_GROUP *grp = EC_KEY_get0_group(EVP_PKEY_get0_EC_KEY(local));
                              ^
/usr/local/include/openssl/ec.h:1034:1: note: 'EC_KEY_get0_group' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 const EC_GROUP *EC_KEY_get0_group(const EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:777:42: warning: 'EVP_PKEY_get0_EC_KEY' is deprecated [-Wdeprecated-declarations]
        const EC_GROUP *grp = EC_KEY_get0_group(EVP_PKEY_get0_EC_KEY(local));
                                                ^
/usr/local/include/openssl/evp.h:1373:1: note: 'EVP_PKEY_get0_EC_KEY' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:788:19: warning: 'EC_KEY_new' is deprecated [-Wdeprecated-declarations]
        EC_KEY *ec_key = EC_KEY_new();
                         ^
/usr/local/include/openssl/ec.h:968:1: note: 'EC_KEY_new' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 EC_KEY *EC_KEY_new(void);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:793:6: warning: 'EC_KEY_set_group' is deprecated [-Wdeprecated-declarations]
            EC_KEY_set_group(ec_key, grp) != 1 ||
            ^
/usr/local/include/openssl/ec.h:1042:1: note: 'EC_KEY_set_group' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 int EC_KEY_set_group(EC_KEY *key, const EC_GROUP *group);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:794:6: warning: 'EC_KEY_set_public_key' is deprecated [-Wdeprecated-declarations]
            EC_KEY_set_public_key(ec_key, pub) != 1)
            ^
/usr/local/include/openssl/ec.h:1070:1: note: 'EC_KEY_set_public_key' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 int EC_KEY_set_public_key(EC_KEY *key, const EC_POINT *pub);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:801:18: warning: 'EC_KEY_check_key' is deprecated [-Wdeprecated-declarations]
        if (ec == -1 || EC_KEY_check_key(ec_key) != 1) {
                        ^
/usr/local/include/openssl/ec.h:1107:1: note: 'EC_KEY_check_key' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 int EC_KEY_check_key(const EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:802:3: warning: 'EC_KEY_free' is deprecated [-Wdeprecated-declarations]
                EC_KEY_free(ec_key);
                ^
/usr/local/include/openssl/ec.h:1003:1: note: 'EC_KEY_free' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 void EC_KEY_free(EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:808:3: warning: 'EC_KEY_free' is deprecated [-Wdeprecated-declarations]
                EC_KEY_free(ec_key);
                ^
/usr/local/include/openssl/ec.h:1003:1: note: 'EC_KEY_free' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 void EC_KEY_free(EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:811:2: warning: 'EVP_PKEY_set1_EC_KEY' is deprecated [-Wdeprecated-declarations]
        EVP_PKEY_set1_EC_KEY(peer, ec_key);
        ^
/usr/local/include/openssl/evp.h:1371:1: note: 'EVP_PKEY_set1_EC_KEY' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:812:2: warning: 'EC_KEY_free' is deprecated [-Wdeprecated-declarations]
        EC_KEY_free(ec_key);
        ^
/usr/local/include/openssl/ec.h:1003:1: note: 'EC_KEY_free' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 void EC_KEY_free(EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:842:3: warning: 'EC_KEY_get0_group' is deprecated [-Wdeprecated-declarations]
                EC_KEY_get0_group(EVP_PKEY_get0_EC_KEY(peer)));
                ^
/usr/local/include/openssl/ec.h:1034:1: note: 'EC_KEY_get0_group' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 const EC_GROUP *EC_KEY_get0_group(const EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:842:21: warning: 'EVP_PKEY_get0_EC_KEY' is deprecated [-Wdeprecated-declarations]
                EC_KEY_get0_group(EVP_PKEY_get0_EC_KEY(peer)));
                                  ^
/usr/local/include/openssl/evp.h:1373:1: note: 'EVP_PKEY_get0_EC_KEY' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:858:24: warning: 'EC_KEY_get0_public_key' is deprecated [-Wdeprecated-declarations]
        const EC_POINT *pub = EC_KEY_get0_public_key(EVP_PKEY_get0_EC_KEY(local));
                              ^
/usr/local/include/openssl/ec.h:1062:1: note: 'EC_KEY_get0_public_key' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 const EC_POINT *EC_KEY_get0_public_key(const EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:858:47: warning: 'EVP_PKEY_get0_EC_KEY' is deprecated [-Wdeprecated-declarations]
        const EC_POINT *pub = EC_KEY_get0_public_key(EVP_PKEY_get0_EC_KEY(local));
                                                     ^
/usr/local/include/openssl/evp.h:1373:1: note: 'EVP_PKEY_get0_EC_KEY' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:859:24: warning: 'EC_KEY_get0_group' is deprecated [-Wdeprecated-declarations]
        const EC_GROUP *grp = EC_KEY_get0_group(EVP_PKEY_get0_EC_KEY(local));
                              ^
/usr/local/include/openssl/ec.h:1034:1: note: 'EC_KEY_get0_group' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 const EC_GROUP *EC_KEY_get0_group(const EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:859:42: warning: 'EVP_PKEY_get0_EC_KEY' is deprecated [-Wdeprecated-declarations]
        const EC_GROUP *grp = EC_KEY_get0_group(EVP_PKEY_get0_EC_KEY(local));
                                                ^
/usr/local/include/openssl/evp.h:1373:1: note: 'EVP_PKEY_get0_EC_KEY' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:1099:18: warning: 'EC_KEY_new_by_curve_name' is deprecated [-Wdeprecated-declarations]
        EC_KEY *eckey = EC_KEY_new_by_curve_name(nid);
                        ^
/usr/local/include/openssl/ec.h:998:1: note: 'EC_KEY_new_by_curve_name' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 EC_KEY *EC_KEY_new_by_curve_name(int nid);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:1105:3: warning: 'EC_KEY_free' is deprecated [-Wdeprecated-declarations]
                EC_KEY_free(eckey);
                ^
/usr/local/include/openssl/ec.h:1003:1: note: 'EC_KEY_free' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 void EC_KEY_free(EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:1108:2: warning: 'EC_KEY_set_private_key' is deprecated [-Wdeprecated-declarations]
        EC_KEY_set_private_key(eckey, point);
        ^
/usr/local/include/openssl/ec.h:1056:1: note: 'EC_KEY_set_private_key' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 int EC_KEY_set_private_key(EC_KEY *key, const BIGNUM *prv);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:1109:2: warning: 'EC_KEY_precompute_mult' is deprecated [-Wdeprecated-declarations]
        EC_KEY_precompute_mult(eckey, bnctx);
        ^
/usr/local/include/openssl/ec.h:1095:1: note: 'EC_KEY_precompute_mult' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 int EC_KEY_precompute_mult(EC_KEY *key, BN_CTX *ctx);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:1110:2: warning: 'EC_KEY_set_asn1_flag' is deprecated [-Wdeprecated-declarations]
        EC_KEY_set_asn1_flag(eckey, OPENSSL_EC_NAMED_CURVE);
        ^
/usr/local/include/openssl/ec.h:1087:1: note: 'EC_KEY_set_asn1_flag' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 void EC_KEY_set_asn1_flag(EC_KEY *eckey, int asn1_flag);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:1111:31: warning: 'EC_KEY_get0_group' is deprecated [-Wdeprecated-declarations]
        EC_POINT *pub = EC_POINT_new(EC_KEY_get0_group(eckey));
                                     ^
/usr/local/include/openssl/ec.h:1034:1: note: 'EC_KEY_get0_group' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 const EC_GROUP *EC_KEY_get0_group(const EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:1113:3: warning: 'EC_KEY_free' is deprecated [-Wdeprecated-declarations]
                EC_KEY_free(eckey);
                ^
/usr/local/include/openssl/ec.h:1003:1: note: 'EC_KEY_free' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 void EC_KEY_free(EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:1118:20: warning: 'EC_KEY_get0_group' is deprecated [-Wdeprecated-declarations]
        ec = EC_POINT_mul(EC_KEY_get0_group(eckey), pub, point,
                          ^
/usr/local/include/openssl/ec.h:1034:1: note: 'EC_KEY_get0_group' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 const EC_GROUP *EC_KEY_get0_group(const EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:1120:2: warning: 'EC_KEY_set_public_key' is deprecated [-Wdeprecated-declarations]
        EC_KEY_set_public_key(eckey, pub);
        ^
/usr/local/include/openssl/ec.h:1070:1: note: 'EC_KEY_set_public_key' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 int EC_KEY_set_public_key(EC_KEY *key, const EC_POINT *pub);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:1126:17: warning: 'EC_KEY_check_key' is deprecated [-Wdeprecated-declarations]
        if (ec == 1 && EC_KEY_check_key(eckey) == 1) {
                       ^
/usr/local/include/openssl/ec.h:1107:1: note: 'EC_KEY_check_key' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 int EC_KEY_check_key(const EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:1131:4: warning: 'EC_KEY_free' is deprecated [-Wdeprecated-declarations]
                        EC_KEY_free(eckey);
                        ^
/usr/local/include/openssl/ec.h:1003:1: note: 'EC_KEY_free' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 void EC_KEY_free(EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:1140:4: warning: 'EC_KEY_free' is deprecated [-Wdeprecated-declarations]
                        EC_KEY_free(eckey);
                        ^
/usr/local/include/openssl/ec.h:1003:1: note: 'EC_KEY_free' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 void EC_KEY_free(EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:1145:4: warning: 'EC_KEY_free' is deprecated [-Wdeprecated-declarations]
                        EC_KEY_free(eckey);
                        ^
/usr/local/include/openssl/ec.h:1003:1: note: 'EC_KEY_free' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 void EC_KEY_free(EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:1148:3: warning: 'EVP_PKEY_set1_EC_KEY' is deprecated [-Wdeprecated-declarations]
                EVP_PKEY_set1_EC_KEY(key, eckey);
                ^
/usr/local/include/openssl/evp.h:1371:1: note: 'EVP_PKEY_set1_EC_KEY' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:1149:3: warning: 'EC_KEY_free' is deprecated [-Wdeprecated-declarations]
                EC_KEY_free(eckey);
                ^
/usr/local/include/openssl/ec.h:1003:1: note: 'EC_KEY_free' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 void EC_KEY_free(EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:1156:2: warning: 'EC_KEY_free' is deprecated [-Wdeprecated-declarations]
        EC_KEY_free(eckey);
        ^
/usr/local/include/openssl/ec.h:1003:1: note: 'EC_KEY_free' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 void EC_KEY_free(EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:1346:14: warning: 'RSA_new' is deprecated [-Wdeprecated-declarations]
                RSA *rsa = RSA_new();
                           ^
/usr/local/include/openssl/rsa.h:201:1: note: 'RSA_new' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 RSA *RSA_new(void);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:1349:7: warning: 'd2i_RSAPrivateKey' is deprecated [-Wdeprecated-declarations]
                    d2i_RSAPrivateKey(&rsa, &ptr, key_data->used) == NULL ||
                    ^
/usr/local/include/openssl/rsa.h:309:41: note: 'd2i_RSAPrivateKey' has been explicitly marked deprecated here
DECLARE_ASN1_ENCODE_FUNCTIONS_name_attr(OSSL_DEPRECATEDIN_3_0,
                                        ^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:1350:7: warning: 'RSA_check_key' is deprecated [-Wdeprecated-declarations]
                    RSA_check_key(rsa) != 1) {
                    ^
/usr/local/include/openssl/rsa.h:278:1: note: 'RSA_check_key' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 int RSA_check_key(const RSA *);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:1353:4: warning: 'RSA_free' is deprecated [-Wdeprecated-declarations]
                        RSA_free(rsa);
                        ^
/usr/local/include/openssl/rsa.h:293:1: note: 'RSA_free' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 void RSA_free(RSA *r);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:1361:4: warning: 'RSA_free' is deprecated [-Wdeprecated-declarations]
                        RSA_free(rsa);
                        ^
/usr/local/include/openssl/rsa.h:293:1: note: 'RSA_free' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 void RSA_free(RSA *r);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:1364:3: warning: 'EVP_PKEY_set1_RSA' is deprecated [-Wdeprecated-declarations]
                EVP_PKEY_set1_RSA(pkey, rsa);
                ^
/usr/local/include/openssl/evp.h:1345:1: note: 'EVP_PKEY_set1_RSA' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:1365:3: warning: 'RSA_free' is deprecated [-Wdeprecated-declarations]
                RSA_free(rsa);
                ^
/usr/local/include/openssl/rsa.h:293:1: note: 'RSA_free' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 void RSA_free(RSA *r);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:1379:19: warning: 'EC_KEY_new_by_curve_name' is deprecated [-Wdeprecated-declarations]
                EC_KEY *eckey = EC_KEY_new_by_curve_name(nid);
                                ^
/usr/local/include/openssl/ec.h:998:1: note: 'EC_KEY_new_by_curve_name' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 EC_KEY *EC_KEY_new_by_curve_name(int nid);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:1386:4: warning: 'EC_KEY_free' is deprecated [-Wdeprecated-declarations]
                        EC_KEY_free(eckey);
                        ^
/usr/local/include/openssl/ec.h:1003:1: note: 'EC_KEY_free' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 void EC_KEY_free(EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:1390:3: warning: 'EC_KEY_set_private_key' is deprecated [-Wdeprecated-declarations]
                EC_KEY_set_private_key(eckey, point);
                ^
/usr/local/include/openssl/ec.h:1056:1: note: 'EC_KEY_set_private_key' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 int EC_KEY_set_private_key(EC_KEY *key, const BIGNUM *prv);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:1391:3: warning: 'EC_KEY_precompute_mult' is deprecated [-Wdeprecated-declarations]
                EC_KEY_precompute_mult(eckey, bnctx);
                ^
/usr/local/include/openssl/ec.h:1095:1: note: 'EC_KEY_precompute_mult' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 int EC_KEY_precompute_mult(EC_KEY *key, BN_CTX *ctx);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:1392:3: warning: 'EC_KEY_set_asn1_flag' is deprecated [-Wdeprecated-declarations]
                EC_KEY_set_asn1_flag(eckey, OPENSSL_EC_NAMED_CURVE);
                ^
/usr/local/include/openssl/ec.h:1087:1: note: 'EC_KEY_set_asn1_flag' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 void EC_KEY_set_asn1_flag(EC_KEY *eckey, int asn1_flag);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:1393:32: warning: 'EC_KEY_get0_group' is deprecated [-Wdeprecated-declarations]
                EC_POINT *pub = EC_POINT_new(EC_KEY_get0_group(eckey));
                                             ^
/usr/local/include/openssl/ec.h:1034:1: note: 'EC_KEY_get0_group' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 const EC_GROUP *EC_KEY_get0_group(const EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:1398:22: warning: 'EC_KEY_get0_group' is deprecated [-Wdeprecated-declarations]
                        ec = EC_POINT_mul(EC_KEY_get0_group(eckey), pub, point,
                                          ^
/usr/local/include/openssl/ec.h:1034:1: note: 'EC_KEY_get0_group' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 const EC_GROUP *EC_KEY_get0_group(const EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:1400:4: warning: 'EC_KEY_set_public_key' is deprecated [-Wdeprecated-declarations]
                        EC_KEY_set_public_key(eckey, pub);
                        ^
/usr/local/include/openssl/ec.h:1070:1: note: 'EC_KEY_set_public_key' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 int EC_KEY_set_public_key(EC_KEY *key, const EC_POINT *pub);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:1407:33: warning: 'EC_KEY_check_key' is deprecated [-Wdeprecated-declarations]
                if (ec == 1 && key != NULL && EC_KEY_check_key(eckey) == 1) {
                                              ^
/usr/local/include/openssl/ec.h:1107:1: note: 'EC_KEY_check_key' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 int EC_KEY_check_key(const EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:1408:4: warning: 'EVP_PKEY_set1_EC_KEY' is deprecated [-Wdeprecated-declarations]
                        EVP_PKEY_set1_EC_KEY(key, eckey);
                        ^
/usr/local/include/openssl/evp.h:1371:1: note: 'EVP_PKEY_set1_EC_KEY' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:1409:4: warning: 'EC_KEY_free' is deprecated [-Wdeprecated-declarations]
                        EC_KEY_free(eckey);
                        ^
/usr/local/include/openssl/ec.h:1003:1: note: 'EC_KEY_free' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 void EC_KEY_free(EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:1415:4: warning: 'EC_KEY_free' is deprecated [-Wdeprecated-declarations]
                        EC_KEY_free(eckey);
                        ^
/usr/local/include/openssl/ec.h:1003:1: note: 'EC_KEY_free' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 void EC_KEY_free(EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:1536:19: warning: 'EC_KEY_new_by_curve_name' is deprecated [-Wdeprecated-declarations]
        EC_KEY *ec_key = EC_KEY_new_by_curve_name(nid);
                         ^
/usr/local/include/openssl/ec.h:998:1: note: 'EC_KEY_new_by_curve_name' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 EC_KEY *EC_KEY_new_by_curve_name(int nid);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:1547:3: warning: 'EC_KEY_free' is deprecated [-Wdeprecated-declarations]
                EC_KEY_free(ec_key);
                ^
/usr/local/include/openssl/ec.h:1003:1: note: 'EC_KEY_free' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 void EC_KEY_free(EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:1553:12: warning: 'EC_KEY_set_public_key_affine_coordinates' is deprecated [-Wdeprecated-declarations]
        int ret = EC_KEY_set_public_key_affine_coordinates(ec_key, px, py);
                  ^
/usr/local/include/openssl/ec.h:1122:1: note: 'EC_KEY_set_public_key_affine_coordinates' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 int EC_KEY_set_public_key_affine_coordinates(EC_KEY *key,
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:1558:3: warning: 'EC_KEY_free' is deprecated [-Wdeprecated-declarations]
                EC_KEY_free(ec_key);
                ^
/usr/local/include/openssl/ec.h:1003:1: note: 'EC_KEY_free' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 void EC_KEY_free(EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:1567:4: warning: 'EC_KEY_free' is deprecated [-Wdeprecated-declarations]
                        EC_KEY_free(ec_key);
                        ^
/usr/local/include/openssl/ec.h:1003:1: note: 'EC_KEY_free' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 void EC_KEY_free(EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:1570:9: warning: 'EC_KEY_set_private_key' is deprecated [-Wdeprecated-declarations]
                ret = EC_KEY_set_private_key(ec_key, pd);
                      ^
/usr/local/include/openssl/ec.h:1056:1: note: 'EC_KEY_set_private_key' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 int EC_KEY_set_private_key(EC_KEY *key, const BIGNUM *prv);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:1573:4: warning: 'EC_KEY_free' is deprecated [-Wdeprecated-declarations]
                        EC_KEY_free(ec_key);
                        ^
/usr/local/include/openssl/ec.h:1003:1: note: 'EC_KEY_free' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 void EC_KEY_free(EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:1578:6: warning: 'EC_KEY_check_key' is deprecated [-Wdeprecated-declarations]
        if (EC_KEY_check_key(ec_key) != 1) {
            ^
/usr/local/include/openssl/ec.h:1107:1: note: 'EC_KEY_check_key' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 int EC_KEY_check_key(const EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:1579:3: warning: 'EC_KEY_free' is deprecated [-Wdeprecated-declarations]
                EC_KEY_free(ec_key);
                ^
/usr/local/include/openssl/ec.h:1003:1: note: 'EC_KEY_free' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 void EC_KEY_free(EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:1583:2: warning: 'EC_KEY_precompute_mult' is deprecated [-Wdeprecated-declarations]
        EC_KEY_precompute_mult(ec_key, NULL);
        ^
/usr/local/include/openssl/ec.h:1095:1: note: 'EC_KEY_precompute_mult' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 int EC_KEY_precompute_mult(EC_KEY *key, BN_CTX *ctx);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:1584:2: warning: 'EC_KEY_set_asn1_flag' is deprecated [-Wdeprecated-declarations]
        EC_KEY_set_asn1_flag(ec_key, OPENSSL_EC_NAMED_CURVE);
        ^
/usr/local/include/openssl/ec.h:1087:1: note: 'EC_KEY_set_asn1_flag' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 void EC_KEY_set_asn1_flag(EC_KEY *eckey, int asn1_flag);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:1588:2: warning: 'EVP_PKEY_set1_EC_KEY' is deprecated [-Wdeprecated-declarations]
        EVP_PKEY_set1_EC_KEY(pkey, ec_key);
        ^
/usr/local/include/openssl/evp.h:1371:1: note: 'EVP_PKEY_set1_EC_KEY' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:1589:2: warning: 'EC_KEY_free' is deprecated [-Wdeprecated-declarations]
        EC_KEY_free(ec_key);
        ^
/usr/local/include/openssl/ec.h:1003:1: note: 'EC_KEY_free' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 void EC_KEY_free(EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:1732:17: warning: 'RSA_new' is deprecated [-Wdeprecated-declarations]
        RSA *rsa_key = RSA_new();
                       ^
/usr/local/include/openssl/rsa.h:201:1: note: 'RSA_new' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 RSA *RSA_new(void);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:1741:6: warning: 'RSA_set0_key' is deprecated [-Wdeprecated-declarations]
        if (RSA_set0_key(rsa_key, pn, pe, pd) != 1) {
            ^
/usr/local/include/openssl/rsa.h:207:1: note: 'RSA_set0_key' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 int RSA_set0_key(RSA *r, BIGNUM *n, BIGNUM *e, BIGNUM *d);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:1746:3: warning: 'RSA_free' is deprecated [-Wdeprecated-declarations]
                RSA_free(rsa_key);
                ^
/usr/local/include/openssl/rsa.h:293:1: note: 'RSA_free' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 void RSA_free(RSA *r);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:1768:7: warning: 'RSA_set0_factors' is deprecated [-Wdeprecated-declarations]
                    RSA_set0_factors(rsa_key, pp, pq) != 1) {
                    ^
/usr/local/include/openssl/rsa.h:208:1: note: 'RSA_set0_factors' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 int RSA_set0_factors(RSA *r, BIGNUM *p, BIGNUM *q);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:1769:4: warning: 'RSA_free' is deprecated [-Wdeprecated-declarations]
                        RSA_free(rsa_key);
                        ^
/usr/local/include/openssl/rsa.h:293:1: note: 'RSA_free' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 void RSA_free(RSA *r);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:1776:14: warning: 'RSA_set0_crt_params' is deprecated [-Wdeprecated-declarations]
                } else if (RSA_set0_crt_params(rsa_key, pdp, pdq, pqi) != 1) {
                           ^
/usr/local/include/openssl/rsa.h:209:1: note: 'RSA_set0_crt_params' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 int RSA_set0_crt_params(RSA *r,
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:1777:4: warning: 'RSA_free' is deprecated [-Wdeprecated-declarations]
                        RSA_free(rsa_key);
                        ^
/usr/local/include/openssl/rsa.h:293:1: note: 'RSA_free' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 void RSA_free(RSA *r);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:1787:2: warning: 'EVP_PKEY_set1_RSA' is deprecated [-Wdeprecated-declarations]
        EVP_PKEY_set1_RSA(pkey, rsa_key);
        ^
/usr/local/include/openssl/evp.h:1345:1: note: 'EVP_PKEY_set1_RSA' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:1788:2: warning: 'RSA_free' is deprecated [-Wdeprecated-declarations]
        RSA_free(rsa_key);
        ^
/usr/local/include/openssl/rsa.h:293:1: note: 'RSA_free' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 void RSA_free(RSA *r);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
--- 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 -mfunction-return=keep -Wall -W -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
--- libdcrypt_openssl_la-dcrypt-openssl.lo ---
dcrypt-openssl.c:1936:25: warning: 'EVP_PKEY_get0_EC_KEY' is deprecated [-Wdeprecated-declarations]
        const EC_KEY *ec_key = EVP_PKEY_get0_EC_KEY(pkey);
                               ^
/usr/local/include/openssl/evp.h:1373:1: note: 'EVP_PKEY_get0_EC_KEY' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:1939:36: warning: 'EC_KEY_get0_group' is deprecated [-Wdeprecated-declarations]
        int nid = EC_GROUP_get_curve_name(EC_KEY_get0_group(ec_key));
                                          ^
/usr/local/include/openssl/ec.h:1034:1: note: 'EC_KEY_get0_group' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 const EC_GROUP *EC_KEY_get0_group(const EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:1940:33: warning: 'EC_KEY_get0_public_key' is deprecated [-Wdeprecated-declarations]
        const EC_POINT *public_point = EC_KEY_get0_public_key(ec_key);
                                       ^
/usr/local/include/openssl/ec.h:1062:1: note: 'EC_KEY_get0_public_key' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 const EC_POINT *EC_KEY_get0_public_key(const EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:1945:6: warning: 'EC_POINT_get_affine_coordinates_GFp' is deprecated [-Wdeprecated-declarations]
        if (EC_POINT_get_affine_coordinates_GFp(EC_KEY_get0_group(ec_key), public_point,
            ^
/usr/local/include/openssl/ec.h:659:1: note: 'EC_POINT_get_affine_coordinates_GFp' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 int EC_POINT_get_affine_coordinates_GFp
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:1945:42: warning: 'EC_KEY_get0_group' is deprecated [-Wdeprecated-declarations]
        if (EC_POINT_get_affine_coordinates_GFp(EC_KEY_get0_group(ec_key), public_point,
                                                ^
/usr/local/include/openssl/ec.h:1034:1: note: 'EC_KEY_get0_group' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 const EC_GROUP *EC_KEY_get0_group(const EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:1973:21: warning: 'EC_KEY_get0_private_key' is deprecated [-Wdeprecated-declarations]
                const BIGNUM *d = EC_KEY_get0_private_key(ec_key);
                                  ^
/usr/local/include/openssl/ec.h:1048:1: note: 'EC_KEY_get0_private_key' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 const BIGNUM *EC_KEY_get0_private_key(const EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:2039:18: warning: 'EC_KEY_new_by_curve_name' is deprecated [-Wdeprecated-declarations]
        EC_KEY *eckey = EC_KEY_new_by_curve_name(nid);
                        ^
/usr/local/include/openssl/ec.h:998:1: note: 'EC_KEY_new_by_curve_name' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 EC_KEY *EC_KEY_new_by_curve_name(int nid);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:2045:2: warning: 'EC_KEY_set_asn1_flag' is deprecated [-Wdeprecated-declarations]
        EC_KEY_set_asn1_flag(eckey, OPENSSL_EC_NAMED_CURVE);
        ^
/usr/local/include/openssl/ec.h:1087:1: note: 'EC_KEY_set_asn1_flag' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 void EC_KEY_set_asn1_flag(EC_KEY *eckey, int asn1_flag);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:2048:33: warning: 'EC_KEY_get0_group' is deprecated [-Wdeprecated-declarations]
        EC_POINT *point = EC_POINT_new(EC_KEY_get0_group(eckey));
                                       ^
/usr/local/include/openssl/ec.h:1034:1: note: 'EC_KEY_get0_group' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 const EC_GROUP *EC_KEY_get0_group(const EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:2050:25: warning: 'EC_KEY_get0_group' is deprecated [-Wdeprecated-declarations]
            EC_POINT_hex2point(EC_KEY_get0_group(eckey),
                               ^
/usr/local/include/openssl/ec.h:1034:1: note: 'EC_KEY_get0_group' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 const EC_GROUP *EC_KEY_get0_group(const EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:2053:3: warning: 'EC_KEY_free' is deprecated [-Wdeprecated-declarations]
                EC_KEY_free(eckey);
                ^
/usr/local/include/openssl/ec.h:1003:1: note: 'EC_KEY_free' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 void EC_KEY_free(EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:2060:2: warning: 'EC_KEY_set_public_key' is deprecated [-Wdeprecated-declarations]
        EC_KEY_set_public_key(eckey, point);
        ^
/usr/local/include/openssl/ec.h:1070:1: note: 'EC_KEY_set_public_key' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 int EC_KEY_set_public_key(EC_KEY *key, const EC_POINT *pub);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:2061:2: warning: 'EC_KEY_set_asn1_flag' is deprecated [-Wdeprecated-declarations]
        EC_KEY_set_asn1_flag(eckey, OPENSSL_EC_NAMED_CURVE);
        ^
/usr/local/include/openssl/ec.h:1087:1: note: 'EC_KEY_set_asn1_flag' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 void EC_KEY_set_asn1_flag(EC_KEY *eckey, int asn1_flag);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:2065:6: warning: 'EC_KEY_check_key' is deprecated [-Wdeprecated-declarations]
        if (EC_KEY_check_key(eckey) == 1) {
            ^
/usr/local/include/openssl/ec.h:1107:1: note: 'EC_KEY_check_key' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 int EC_KEY_check_key(const EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:2067:3: warning: 'EVP_PKEY_set1_EC_KEY' is deprecated [-Wdeprecated-declarations]
                EVP_PKEY_set1_EC_KEY(key, eckey);
                ^
/usr/local/include/openssl/evp.h:1371:1: note: 'EVP_PKEY_set1_EC_KEY' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:2068:3: warning: 'EC_KEY_free' is deprecated [-Wdeprecated-declarations]
                EC_KEY_free(eckey);
                ^
/usr/local/include/openssl/ec.h:1003:1: note: 'EC_KEY_free' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 void EC_KEY_free(EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:2255:4: warning: 'EC_KEY_get0_group' is deprecated [-Wdeprecated-declarations]
                        EC_KEY_get0_group(EVP_PKEY_get0_EC_KEY(pkey))));
                        ^
/usr/local/include/openssl/ec.h:1034:1: note: 'EC_KEY_get0_group' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 const EC_GROUP *EC_KEY_get0_group(const EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:2255:22: warning: 'EVP_PKEY_get0_EC_KEY' is deprecated [-Wdeprecated-declarations]
                        EC_KEY_get0_group(EVP_PKEY_get0_EC_KEY(pkey))));
                                          ^
/usr/local/include/openssl/evp.h:1373:1: note: 'EVP_PKEY_get0_EC_KEY' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:2256:3: warning: 'EC_KEY_set_conv_form' is deprecated [-Wdeprecated-declarations]
                EC_KEY_set_conv_form(EVP_PKEY_get0_EC_KEY(pkey),
                ^
/usr/local/include/openssl/ec.h:1075:1: note: 'EC_KEY_set_conv_form' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 void EC_KEY_set_conv_form(EC_KEY *eckey,
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:2256:24: warning: 'EVP_PKEY_get0_EC_KEY' is deprecated [-Wdeprecated-declarations]
                EC_KEY_set_conv_form(EVP_PKEY_get0_EC_KEY(pkey),
                                     ^
/usr/local/include/openssl/evp.h:1373:1: note: 'EVP_PKEY_get0_EC_KEY' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:2256:24: warning: passing 'const struct ec_key_st *' to parameter of type 'EC_KEY *' (aka 'struct ec_key_st *') discards qualifiers [-Wincompatible-pointer-types-discards-qualifiers]
                EC_KEY_set_conv_form(EVP_PKEY_get0_EC_KEY(pkey),
                                     ^~~~~~~~~~~~~~~~~~~~~~~~~~
/usr/local/include/openssl/ec.h:1075:57: note: passing argument to parameter 'eckey' here
OSSL_DEPRECATEDIN_3_0 void EC_KEY_set_conv_form(EC_KEY *eckey,
                                                        ^
dcrypt-openssl.c:2277:8: warning: initializing 'RSA *' (aka 'struct rsa_st *') with an expression of type 'const struct rsa_st *' discards qualifiers [-Wincompatible-pointer-types-discards-qualifiers]
                RSA *rsa = EVP_PKEY_get0_RSA(pkey);
                     ^     ~~~~~~~~~~~~~~~~~~~~~~~
dcrypt-openssl.c:2277:14: warning: 'EVP_PKEY_get0_RSA' is deprecated [-Wdeprecated-declarations]
                RSA *rsa = EVP_PKEY_get0_RSA(pkey);
                           ^
/usr/local/include/openssl/evp.h:1347:1: note: 'EVP_PKEY_get0_RSA' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:2278:13: warning: 'i2d_RSAPrivateKey' is deprecated [-Wdeprecated-declarations]
                int len = i2d_RSAPrivateKey(rsa, &ptr);
                          ^
/usr/local/include/openssl/rsa.h:309:41: note: 'i2d_RSAPrivateKey' has been explicitly marked deprecated here
DECLARE_ASN1_ENCODE_FUNCTIONS_name_attr(OSSL_DEPRECATEDIN_3_0,
                                        ^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:2284:11: warning: initializing 'EC_KEY *' (aka 'struct ec_key_st *') with an expression of type 'const struct ec_key_st *' discards qualifiers [-Wincompatible-pointer-types-discards-qualifiers]
                EC_KEY *eckey = EVP_PKEY_get0_EC_KEY(pkey);
                        ^       ~~~~~~~~~~~~~~~~~~~~~~~~~~
dcrypt-openssl.c:2284:19: warning: 'EVP_PKEY_get0_EC_KEY' is deprecated [-Wdeprecated-declarations]
                EC_KEY *eckey = EVP_PKEY_get0_EC_KEY(pkey);
                                ^
/usr/local/include/openssl/evp.h:1373:1: note: 'EVP_PKEY_get0_EC_KEY' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:2285:22: warning: 'EC_KEY_get0_private_key' is deprecated [-Wdeprecated-declarations]
                const BIGNUM *pk = EC_KEY_get0_private_key(eckey);
                                   ^
/usr/local/include/openssl/ec.h:1048:1: note: 'EC_KEY_get0_private_key' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 const BIGNUM *EC_KEY_get0_private_key(const EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:2350:3: warning: 'EC_KEY_set_conv_form' is deprecated [-Wdeprecated-declarations]
                EC_KEY_set_conv_form(EVP_PKEY_get0_EC_KEY(pubkey),
                ^
/usr/local/include/openssl/ec.h:1075:1: note: 'EC_KEY_set_conv_form' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 void EC_KEY_set_conv_form(EC_KEY *eckey,
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:2350:24: warning: 'EVP_PKEY_get0_EC_KEY' is deprecated [-Wdeprecated-declarations]
                EC_KEY_set_conv_form(EVP_PKEY_get0_EC_KEY(pubkey),
                                     ^
/usr/local/include/openssl/evp.h:1373:1: note: 'EVP_PKEY_get0_EC_KEY' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:2350:24: warning: passing 'const struct ec_key_st *' to parameter of type 'EC_KEY *' (aka 'struct ec_key_st *') discards qualifiers [-Wincompatible-pointer-types-discards-qualifiers]
                EC_KEY_set_conv_form(EVP_PKEY_get0_EC_KEY(pubkey),
                                     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/usr/local/include/openssl/ec.h:1075:57: note: passing argument to parameter 'eckey' here
OSSL_DEPRECATEDIN_3_0 void EC_KEY_set_conv_form(EC_KEY *eckey,
                                                        ^
dcrypt-openssl.c:2422:3: warning: 'EC_KEY_set_asn1_flag' is deprecated [-Wdeprecated-declarations]
                EC_KEY_set_asn1_flag(EVP_PKEY_get0_EC_KEY(key),
                ^
/usr/local/include/openssl/ec.h:1087:1: note: 'EC_KEY_set_asn1_flag' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 void EC_KEY_set_asn1_flag(EC_KEY *eckey, int asn1_flag);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:2422:24: warning: 'EVP_PKEY_get0_EC_KEY' is deprecated [-Wdeprecated-declarations]
                EC_KEY_set_asn1_flag(EVP_PKEY_get0_EC_KEY(key),
                                     ^
/usr/local/include/openssl/evp.h:1373:1: note: 'EVP_PKEY_get0_EC_KEY' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:2422:24: warning: passing 'const struct ec_key_st *' to parameter of type 'EC_KEY *' (aka 'struct ec_key_st *') discards qualifiers [-Wincompatible-pointer-types-discards-qualifiers]
                EC_KEY_set_asn1_flag(EVP_PKEY_get0_EC_KEY(key),
                                     ^~~~~~~~~~~~~~~~~~~~~~~~~
/usr/local/include/openssl/ec.h:1087:57: note: passing argument to parameter 'eckey' here
OSSL_DEPRECATEDIN_3_0 void EC_KEY_set_asn1_flag(EC_KEY *eckey, int asn1_flag);
                                                        ^
dcrypt-openssl.c:2484:19: warning: 'd2i_EC_PUBKEY_bio' is deprecated [-Wdeprecated-declarations]
                EC_KEY *eckey = d2i_EC_PUBKEY_bio(b64, NULL);
                                ^
/usr/local/include/openssl/x509.h:634:1: note: 'd2i_EC_PUBKEY_bio' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 EC_KEY *d2i_EC_PUBKEY_bio(BIO *bp, EC_KEY **eckey);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:2486:4: warning: 'EC_KEY_set_asn1_flag' is deprecated [-Wdeprecated-declarations]
                        EC_KEY_set_asn1_flag(eckey, OPENSSL_EC_NAMED_CURVE);
                        ^
/usr/local/include/openssl/ec.h:1087:1: note: 'EC_KEY_set_asn1_flag' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 void EC_KEY_set_asn1_flag(EC_KEY *eckey, int asn1_flag);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:2489:5: warning: 'EVP_PKEY_set1_EC_KEY' is deprecated [-Wdeprecated-declarations]
                                EVP_PKEY_set1_EC_KEY(key, eckey);
                                ^
/usr/local/include/openssl/evp.h:1371:1: note: 'EVP_PKEY_set1_EC_KEY' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:2490:4: warning: 'EC_KEY_free' is deprecated [-Wdeprecated-declarations]
                        EC_KEY_free(eckey);
                        ^
/usr/local/include/openssl/ec.h:1003:1: note: 'EC_KEY_free' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 void EC_KEY_free(EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:2535:3: warning: 'EC_KEY_set_conv_form' is deprecated [-Wdeprecated-declarations]
                EC_KEY_set_conv_form(EVP_PKEY_get0_EC_KEY(pkey),
                ^
/usr/local/include/openssl/ec.h:1075:1: note: 'EC_KEY_set_conv_form' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 void EC_KEY_set_conv_form(EC_KEY *eckey,
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:2535:24: warning: 'EVP_PKEY_get0_EC_KEY' is deprecated [-Wdeprecated-declarations]
                EC_KEY_set_conv_form(EVP_PKEY_get0_EC_KEY(pkey),
                                     ^
/usr/local/include/openssl/evp.h:1373:1: note: 'EVP_PKEY_get0_EC_KEY' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:2535:24: warning: passing 'const struct ec_key_st *' to parameter of type 'EC_KEY *' (aka 'struct ec_key_st *') discards qualifiers [-Wincompatible-pointer-types-discards-qualifiers]
                EC_KEY_set_conv_form(EVP_PKEY_get0_EC_KEY(pkey),
                                     ^~~~~~~~~~~~~~~~~~~~~~~~~~
/usr/local/include/openssl/ec.h:1075:57: note: passing argument to parameter 'eckey' here
OSSL_DEPRECATEDIN_3_0 void EC_KEY_set_conv_form(EC_KEY *eckey,
                                                        ^
dcrypt-openssl.c:2597:3: warning: 'EC_KEY_set_conv_form' is deprecated [-Wdeprecated-declarations]
                EC_KEY_set_conv_form(EVP_PKEY_get0_EC_KEY(pkey),
                ^
/usr/local/include/openssl/ec.h:1075:1: note: 'EC_KEY_set_conv_form' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 void EC_KEY_set_conv_form(EC_KEY *eckey,
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:2597:24: warning: 'EVP_PKEY_get0_EC_KEY' is deprecated [-Wdeprecated-declarations]
                EC_KEY_set_conv_form(EVP_PKEY_get0_EC_KEY(pkey),
                                     ^
/usr/local/include/openssl/evp.h:1373:1: note: 'EVP_PKEY_get0_EC_KEY' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:2597:24: warning: passing 'const struct ec_key_st *' to parameter of type 'EC_KEY *' (aka 'struct ec_key_st *') discards qualifiers [-Wincompatible-pointer-types-discards-qualifiers]
                EC_KEY_set_conv_form(EVP_PKEY_get0_EC_KEY(pkey),
                                     ^~~~~~~~~~~~~~~~~~~~~~~~~~
/usr/local/include/openssl/ec.h:1075:57: note: passing argument to parameter 'eckey' here
OSSL_DEPRECATEDIN_3_0 void EC_KEY_set_conv_form(EC_KEY *eckey,
                                                        ^
dcrypt-openssl.c:2612:8: warning: 'i2d_EC_PUBKEY_bio' is deprecated [-Wdeprecated-declarations]
                ec = i2d_EC_PUBKEY_bio(b64, EVP_PKEY_get0_EC_KEY(pkey));
                     ^
/usr/local/include/openssl/x509.h:635:1: note: 'i2d_EC_PUBKEY_bio' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 int i2d_EC_PUBKEY_bio(BIO *bp, const EC_KEY *eckey);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:2612:31: warning: 'EVP_PKEY_get0_EC_KEY' is deprecated [-Wdeprecated-declarations]
                ec = i2d_EC_PUBKEY_bio(b64, EVP_PKEY_get0_EC_KEY(pkey));
                                            ^
/usr/local/include/openssl/evp.h:1373:1: note: 'EVP_PKEY_get0_EC_KEY' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:2649:14: warning: 'RSAPublicKey_dup' is deprecated [-Wdeprecated-declarations]
                RSA *rsa = RSAPublicKey_dup(EVP_PKEY_get0_RSA(pkey));
                           ^
/usr/local/include/openssl/rsa.h:448:37: note: 'RSAPublicKey_dup' has been explicitly marked deprecated here
DECLARE_ASN1_DUP_FUNCTION_name_attr(OSSL_DEPRECATEDIN_3_0, RSA, RSAPublicKey)
                                    ^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:2649:31: warning: 'EVP_PKEY_get0_RSA' is deprecated [-Wdeprecated-declarations]
                RSA *rsa = RSAPublicKey_dup(EVP_PKEY_get0_RSA(pkey));
                                            ^
/usr/local/include/openssl/evp.h:1347:1: note: 'EVP_PKEY_get0_RSA' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:2650:3: warning: 'EVP_PKEY_set1_RSA' is deprecated [-Wdeprecated-declarations]
                EVP_PKEY_set1_RSA(pk, rsa);
                ^
/usr/local/include/openssl/evp.h:1345:1: note: 'EVP_PKEY_set1_RSA' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:2651:3: warning: 'RSA_free' is deprecated [-Wdeprecated-declarations]
                RSA_free(rsa);
                ^
/usr/local/include/openssl/rsa.h:293:1: note: 'RSA_free' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 void RSA_free(RSA *r);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:2653:17: warning: 'EVP_PKEY_get1_EC_KEY' is deprecated [-Wdeprecated-declarations]
                EC_KEY* eck = EVP_PKEY_get1_EC_KEY(pkey);
                              ^
/usr/local/include/openssl/evp.h:1375:1: note: 'EVP_PKEY_get1_EC_KEY' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:2654:3: warning: 'EC_KEY_set_asn1_flag' is deprecated [-Wdeprecated-declarations]
                EC_KEY_set_asn1_flag(eck, OPENSSL_EC_NAMED_CURVE);
                ^
/usr/local/include/openssl/ec.h:1087:1: note: 'EC_KEY_set_asn1_flag' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 void EC_KEY_set_asn1_flag(EC_KEY *eckey, int asn1_flag);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:2655:3: warning: 'EVP_PKEY_set1_EC_KEY' is deprecated [-Wdeprecated-declarations]
                EVP_PKEY_set1_EC_KEY(pk, eck);
                ^
/usr/local/include/openssl/evp.h:1371:1: note: 'EVP_PKEY_set1_EC_KEY' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:2656:3: warning: 'EC_KEY_free' is deprecated [-Wdeprecated-declarations]
                EC_KEY_free(eck);
                ^
/usr/local/include/openssl/ec.h:1003:1: note: 'EC_KEY_free' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 void EC_KEY_free(EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
--- 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 -mfunction-return=keep -Wall -W -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 ---
dcrypt-openssl.c:3004:46: warning: 'EVP_PKEY_get0_EC_KEY' is deprecated [-Wdeprecated-declarations]
        char *pub_pt_hex = ec_key_get_pub_point_hex(EVP_PKEY_get0_EC_KEY(pub));
                                                    ^
/usr/local/include/openssl/evp.h:1373:1: note: 'EVP_PKEY_get0_EC_KEY' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:3027:46: warning: 'EVP_PKEY_get0_EC_KEY' is deprecated [-Wdeprecated-declarations]
        char *pub_pt_hex = ec_key_get_pub_point_hex(EVP_PKEY_get0_EC_KEY(priv));
                                                    ^
/usr/local/include/openssl/evp.h:1373:1: note: 'EVP_PKEY_get0_EC_KEY' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:3047:3: warning: 'EC_KEY_set_conv_form' is deprecated [-Wdeprecated-declarations]
                EC_KEY_set_conv_form(EVP_PKEY_get0_EC_KEY(key),
                ^
/usr/local/include/openssl/ec.h:1075:1: note: 'EC_KEY_set_conv_form' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 void EC_KEY_set_conv_form(EC_KEY *eckey,
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:3047:24: warning: 'EVP_PKEY_get0_EC_KEY' is deprecated [-Wdeprecated-declarations]
                EC_KEY_set_conv_form(EVP_PKEY_get0_EC_KEY(key),
                                     ^
/usr/local/include/openssl/evp.h:1373:1: note: 'EVP_PKEY_get0_EC_KEY' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:3047:24: warning: passing 'const struct ec_key_st *' to parameter of type 'EC_KEY *' (aka 'struct ec_key_st *') discards qualifiers [-Wincompatible-pointer-types-discards-qualifiers]
                EC_KEY_set_conv_form(EVP_PKEY_get0_EC_KEY(key),
                                     ^~~~~~~~~~~~~~~~~~~~~~~~~
/usr/local/include/openssl/ec.h:1075:57: note: passing argument to parameter 'eckey' here
OSSL_DEPRECATEDIN_3_0 void EC_KEY_set_conv_form(EC_KEY *eckey,
                                                        ^
dcrypt-openssl.c:3163:10: warning: initializing 'EC_KEY *' (aka 'struct ec_key_st *') with an expression of type 'const struct ec_key_st *' discards qualifiers [-Wincompatible-pointer-types-discards-qualifiers]
        EC_KEY *ec_key = EVP_PKEY_get0_EC_KEY(pkey);
                ^        ~~~~~~~~~~~~~~~~~~~~~~~~~~
dcrypt-openssl.c:3163:19: warning: 'EVP_PKEY_get0_EC_KEY' is deprecated [-Wdeprecated-declarations]
        EC_KEY *ec_key = EVP_PKEY_get0_EC_KEY(pkey);
                         ^
/usr/local/include/openssl/evp.h:1373:1: note: 'EVP_PKEY_get0_EC_KEY' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:3165:35: warning: 'EC_KEY_get0_group' is deprecated [-Wdeprecated-declarations]
        int rs_len = EC_GROUP_order_bits(EC_KEY_get0_group(ec_key)) / 8;
                                         ^
/usr/local/include/openssl/ec.h:1034:1: note: 'EC_KEY_get0_group' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 const EC_GROUP *EC_KEY_get0_group(const EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:3174:16: warning: 'ECDSA_do_sign' is deprecated [-Wdeprecated-declarations]
        if ((ec_sig = ECDSA_do_sign(digest->data, digest->used, ec_key)) == NULL)
                      ^
/usr/local/include/openssl/ec.h:1365:1: note: 'ECDSA_do_sign' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 ECDSA_SIG *ECDSA_do_sign(const unsigned char *dgst,
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:3281:10: warning: initializing 'EC_KEY *' (aka 'struct ec_key_st *') with an expression of type 'const struct ec_key_st *' discards qualifiers [-Wincompatible-pointer-types-discards-qualifiers]
        EC_KEY *ec_key = EVP_PKEY_get0_EC_KEY(pkey);
                ^        ~~~~~~~~~~~~~~~~~~~~~~~~~~
dcrypt-openssl.c:3281:19: warning: 'EVP_PKEY_get0_EC_KEY' is deprecated [-Wdeprecated-declarations]
        EC_KEY *ec_key = EVP_PKEY_get0_EC_KEY(pkey);
                         ^
/usr/local/include/openssl/evp.h:1373:1: note: 'EVP_PKEY_get0_EC_KEY' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:3310:7: warning: 'ECDSA_do_verify' is deprecated [-Wdeprecated-declarations]
        ec = ECDSA_do_verify(digest->data, digest->used, ec_sig, ec_key);
             ^
/usr/local/include/openssl/ec.h:1391:1: note: 'ECDSA_do_verify' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 int ECDSA_do_verify(const unsigned char *dgst, int dgst_len,
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:3399:11: warning: initializing 'EC_KEY *' (aka 'struct ec_key_st *') with an expression of type 'const struct ec_key_st *' discards qualifiers [-Wincompatible-pointer-types-discards-qualifiers]
                EC_KEY *key = EVP_PKEY_get0_EC_KEY(priv);
                        ^     ~~~~~~~~~~~~~~~~~~~~~~~~~~
dcrypt-openssl.c:3399:17: warning: 'EVP_PKEY_get0_EC_KEY' is deprecated [-Wdeprecated-declarations]
                EC_KEY *key = EVP_PKEY_get0_EC_KEY(priv);
                              ^
/usr/local/include/openssl/evp.h:1373:1: note: 'EVP_PKEY_get0_EC_KEY' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:3400:3: warning: 'EC_KEY_set_conv_form' is deprecated [-Wdeprecated-declarations]
                EC_KEY_set_conv_form(key, POINT_CONVERSION_UNCOMPRESSED);
                ^
/usr/local/include/openssl/ec.h:1075:1: note: 'EC_KEY_set_conv_form' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 void EC_KEY_set_conv_form(EC_KEY *eckey,
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:3401:37: warning: 'EC_KEY_get0_group' is deprecated [-Wdeprecated-declarations]
                int nid = EC_GROUP_get_curve_name(EC_KEY_get0_group(key));
                                                  ^
/usr/local/include/openssl/ec.h:1034:1: note: 'EC_KEY_get0_group' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 const EC_GROUP *EC_KEY_get0_group(const EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:3415:21: warning: 'EC_KEY_get0_private_key' is deprecated [-Wdeprecated-declarations]
                const BIGNUM *b = EC_KEY_get0_private_key(key);
                                  ^
/usr/local/include/openssl/ec.h:1048:1: note: 'EC_KEY_get0_private_key' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 const BIGNUM *EC_KEY_get0_private_key(const EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:3450:11: warning: initializing 'EC_KEY *' (aka 'struct ec_key_st *') with an expression of type 'const struct ec_key_st *' discards qualifiers [-Wincompatible-pointer-types-discards-qualifiers]
                EC_KEY *key = EVP_PKEY_get0_EC_KEY(pub);
                        ^     ~~~~~~~~~~~~~~~~~~~~~~~~~
dcrypt-openssl.c:3450:17: warning: 'EVP_PKEY_get0_EC_KEY' is deprecated [-Wdeprecated-declarations]
                EC_KEY *key = EVP_PKEY_get0_EC_KEY(pub);
                              ^
/usr/local/include/openssl/evp.h:1373:1: note: 'EVP_PKEY_get0_EC_KEY' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:3451:3: warning: 'EC_KEY_set_conv_form' is deprecated [-Wdeprecated-declarations]
                EC_KEY_set_conv_form(key, POINT_CONVERSION_UNCOMPRESSED);
                ^
/usr/local/include/openssl/ec.h:1075:1: note: 'EC_KEY_set_conv_form' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 void EC_KEY_set_conv_form(EC_KEY *eckey,
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:3452:37: warning: 'EC_KEY_get0_group' is deprecated [-Wdeprecated-declarations]
                int nid = EC_GROUP_get_curve_name(EC_KEY_get0_group(key));
                                                  ^
/usr/local/include/openssl/ec.h:1034:1: note: 'EC_KEY_get0_group' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 const EC_GROUP *EC_KEY_get0_group(const EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:3467:27: warning: 'EC_KEY_get0_public_key' is deprecated [-Wdeprecated-declarations]
                const EC_POINT *point = EC_KEY_get0_public_key(key);
                                        ^
/usr/local/include/openssl/ec.h:1062:1: note: 'EC_KEY_get0_public_key' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 const EC_POINT *EC_KEY_get0_public_key(const EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:3468:28: warning: 'EC_KEY_get0_group' is deprecated [-Wdeprecated-declarations]
                len = EC_POINT_point2oct(EC_KEY_get0_group(key), point,
                                         ^
/usr/local/include/openssl/ec.h:1034:1: note: 'EC_KEY_get0_group' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 const EC_GROUP *EC_KEY_get0_group(const EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:3475:26: warning: 'EC_KEY_get0_group' is deprecated [-Wdeprecated-declarations]
                if (EC_POINT_point2oct(EC_KEY_get0_group(key), point,
                                       ^
/usr/local/include/openssl/ec.h:1034:1: note: 'EC_KEY_get0_group' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 const EC_GROUP *EC_KEY_get0_group(const EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:3526:17: warning: 'EC_KEY_new_by_curve_name' is deprecated [-Wdeprecated-declarations]
                EC_KEY *key = EC_KEY_new_by_curve_name(nid);
                              ^
/usr/local/include/openssl/ec.h:998:1: note: 'EC_KEY_new_by_curve_name' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 EC_KEY *EC_KEY_new_by_curve_name(int nid);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:3527:8: warning: 'EC_KEY_set_private_key' is deprecated [-Wdeprecated-declarations]
                ec = EC_KEY_set_private_key(key, bn);
                     ^
/usr/local/include/openssl/ec.h:1056:1: note: 'EC_KEY_set_private_key' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 int EC_KEY_set_private_key(EC_KEY *key, const BIGNUM *prv);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:3531:4: warning: 'EC_KEY_free' is deprecated [-Wdeprecated-declarations]
                        EC_KEY_free(key);
                        ^
/usr/local/include/openssl/ec.h:1003:1: note: 'EC_KEY_free' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 void EC_KEY_free(EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:3536:32: warning: 'EC_KEY_get0_group' is deprecated [-Wdeprecated-declarations]
                EC_POINT *pub = EC_POINT_new(EC_KEY_get0_group(key));
                                             ^
/usr/local/include/openssl/ec.h:1034:1: note: 'EC_KEY_get0_group' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 const EC_GROUP *EC_KEY_get0_group(const EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:3538:4: warning: 'EC_KEY_free' is deprecated [-Wdeprecated-declarations]
                        EC_KEY_free(key);
                        ^
/usr/local/include/openssl/ec.h:1003:1: note: 'EC_KEY_free' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 void EC_KEY_free(EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:3542:21: warning: 'EC_KEY_get0_group' is deprecated [-Wdeprecated-declarations]
                ec = EC_POINT_mul(EC_KEY_get0_group(key), pub,
                                  ^
/usr/local/include/openssl/ec.h:1034:1: note: 'EC_KEY_get0_group' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 const EC_GROUP *EC_KEY_get0_group(const EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:3543:7: warning: 'EC_KEY_get0_private_key' is deprecated [-Wdeprecated-declarations]
                                  EC_KEY_get0_private_key(key),
                                  ^
/usr/local/include/openssl/ec.h:1048:1: note: 'EC_KEY_get0_private_key' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 const BIGNUM *EC_KEY_get0_private_key(const EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:3546:9: warning: 'EC_KEY_set_public_key' is deprecated [-Wdeprecated-declarations]
                        ec = EC_KEY_set_public_key(key, pub);
                             ^
/usr/local/include/openssl/ec.h:1070:1: note: 'EC_KEY_set_public_key' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 int EC_KEY_set_public_key(EC_KEY *key, const EC_POINT *pub);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:3550:18: warning: 'EC_KEY_check_key' is deprecated [-Wdeprecated-declarations]
                if (ec != 1 || EC_KEY_check_key(key) != 1) {
                               ^
/usr/local/include/openssl/ec.h:1107:1: note: 'EC_KEY_check_key' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 int EC_KEY_check_key(const EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:3551:4: warning: 'EC_KEY_free' is deprecated [-Wdeprecated-declarations]
                        EC_KEY_free(key);
                        ^
/usr/local/include/openssl/ec.h:1003:1: note: 'EC_KEY_free' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 void EC_KEY_free(EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:3554:3: warning: 'EC_KEY_set_asn1_flag' is deprecated [-Wdeprecated-declarations]
                EC_KEY_set_asn1_flag(key, OPENSSL_EC_NAMED_CURVE);
                ^
/usr/local/include/openssl/ec.h:1087:1: note: 'EC_KEY_set_asn1_flag' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 void EC_KEY_set_asn1_flag(EC_KEY *eckey, int asn1_flag);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:3557:3: warning: 'EVP_PKEY_set1_EC_KEY' is deprecated [-Wdeprecated-declarations]
                EVP_PKEY_set1_EC_KEY(pkey, key);
                ^
/usr/local/include/openssl/evp.h:1371:1: note: 'EVP_PKEY_set1_EC_KEY' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:3558:3: warning: 'EC_KEY_free' is deprecated [-Wdeprecated-declarations]
                EC_KEY_free(key);
                ^
/usr/local/include/openssl/ec.h:1003:1: note: 'EC_KEY_free' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 void EC_KEY_free(EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:3616:17: warning: 'EC_KEY_new' is deprecated [-Wdeprecated-declarations]
                EC_KEY *key = EC_KEY_new();
                              ^
/usr/local/include/openssl/ec.h:968:1: note: 'EC_KEY_new' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 EC_KEY *EC_KEY_new(void);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:3617:8: warning: 'EC_KEY_set_group' is deprecated [-Wdeprecated-declarations]
                ec = EC_KEY_set_group(key, group);
                     ^
/usr/local/include/openssl/ec.h:1042:1: note: 'EC_KEY_set_group' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 int EC_KEY_set_group(EC_KEY *key, const EC_GROUP *group);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:3619:9: warning: 'EC_KEY_set_public_key' is deprecated [-Wdeprecated-declarations]
                        ec = EC_KEY_set_public_key(key, point);
                             ^
/usr/local/include/openssl/ec.h:1070:1: note: 'EC_KEY_set_public_key' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 int EC_KEY_set_public_key(EC_KEY *key, const EC_POINT *pub);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:3623:18: warning: 'EC_KEY_check_key' is deprecated [-Wdeprecated-declarations]
                if (ec != 1 || EC_KEY_check_key(key) != 1) {
                               ^
/usr/local/include/openssl/ec.h:1107:1: note: 'EC_KEY_check_key' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 int EC_KEY_check_key(const EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:3624:4: warning: 'EC_KEY_free' is deprecated [-Wdeprecated-declarations]
                        EC_KEY_free(key);
                        ^
/usr/local/include/openssl/ec.h:1003:1: note: 'EC_KEY_free' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 void EC_KEY_free(EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:3628:3: warning: 'EC_KEY_precompute_mult' is deprecated [-Wdeprecated-declarations]
                EC_KEY_precompute_mult(key, NULL);
                ^
/usr/local/include/openssl/ec.h:1095:1: note: 'EC_KEY_precompute_mult' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 int EC_KEY_precompute_mult(EC_KEY *key, BN_CTX *ctx);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:3629:3: warning: 'EC_KEY_set_asn1_flag' is deprecated [-Wdeprecated-declarations]
                EC_KEY_set_asn1_flag(key, OPENSSL_EC_NAMED_CURVE);
                ^
/usr/local/include/openssl/ec.h:1087:1: note: 'EC_KEY_set_asn1_flag' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 void EC_KEY_set_asn1_flag(EC_KEY *eckey, int asn1_flag);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:3631:3: warning: 'EVP_PKEY_set1_EC_KEY' is deprecated [-Wdeprecated-declarations]
                EVP_PKEY_set1_EC_KEY(pkey, key);
                ^
/usr/local/include/openssl/evp.h:1371:1: note: 'EVP_PKEY_set1_EC_KEY' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:3632:3: warning: 'EC_KEY_free' is deprecated [-Wdeprecated-declarations]
                EC_KEY_free(key);
                ^
/usr/local/include/openssl/ec.h:1003:1: note: 'EC_KEY_free' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 void EC_KEY_free(EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:3657:5: warning: 'EC_KEY_get0_group' is deprecated [-Wdeprecated-declarations]
                                EC_KEY_get0_group(EVP_PKEY_get0_EC_KEY(pkey))));
                                ^
/usr/local/include/openssl/ec.h:1034:1: note: 'EC_KEY_get0_group' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 const EC_GROUP *EC_KEY_get0_group(const EC_KEY *key);
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
dcrypt-openssl.c:3657:23: warning: 'EVP_PKEY_get0_EC_KEY' is deprecated [-Wdeprecated-declarations]
                                EC_KEY_get0_group(EVP_PKEY_get0_EC_KEY(pkey))));
                                                  ^
/usr/local/include/openssl/evp.h:1373:1: note: 'EVP_PKEY_get0_EC_KEY' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0
^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
185 warnings generated.
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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -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.21/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 -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,libdcrypt_openssl.so -o .libs/libdcrypt_openssl.so
libtool: link: ar cr .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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -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 cr .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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 ---
--- mech-plain.lo ---
mv -f .deps/mech-plain.Tpo .deps/mech-plain.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 -mfunction-return=keep -Wall -W -Wmissing-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
--- dsasl-client.lo ---
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -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 cr .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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -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 cr .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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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
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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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-response-parser.lo ---
mv -f .deps/http-response-parser.Tpo .deps/http-response-parser.Plo
--- http-client-peer.lo ---
--- http-client-queue.lo ---
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -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 cr .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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -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-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 -mfunction-return=keep -Wall -W -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-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 -mfunction-return=keep -Wall -W -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 ---
*** Warning: Linking the executable test-http-client against the loadable module
*** libssl_iostream_openssl.so is not portable!
--- 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 -mfunction-return=keep -Wall -W -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 ---
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 -mfunction-return=keep -Wall -W -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 ---
/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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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 ---
/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 -mfunction-return=keep -Wall -W -Wmissing-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 ---
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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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.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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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
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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 ---
--- fs-sis.lo ---
mv -f .deps/fs-sis.Tpo .deps/fs-sis.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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- fs-sis-queue.lo ---
mv -f .deps/fs-sis-queue.Tpo .deps/fs-sis-queue.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 -mfunction-return=keep -Wall -W -Wmissing-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-wrapper.lo ---
mv -f .deps/fs-wrapper.Tpo .deps/fs-wrapper.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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 ---
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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- ostream-metawrap.lo ---
mv -f .deps/ostream-metawrap.Tpo .deps/ostream-metawrap.Plo
--- 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 -mfunction-return=keep -Wall -W -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 cr .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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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 ---
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 -mfunction-return=keep -Wall -W -Wmissing-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
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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 ---
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 -mfunction-return=keep -Wall -W -Wmissing-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-mail-html2text.o ---
mv -f .deps/test-mail-html2text.Tpo .deps/test-mail-html2text.Po
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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-decoder.o ---
mv -f .deps/test-message-decoder.Tpo .deps/test-message-decoder.Po
--- test-message-header-encode.o ---
mv -f .deps/test-message-header-encode.Tpo .deps/test-message-header-encode.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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 ---
--- test-qp-encoder.o ---
mv -f .deps/test-qp-encoder.Tpo .deps/test-qp-encoder.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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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-attachment-connector.lo ---
mv -f .deps/istream-attachment-connector.Tpo .deps/istream-attachment-connector.Plo
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
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 -mfunction-return=keep -Wall -W -Wmissing-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
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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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../../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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- message-binary-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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-header-decode.lo ---
mv -f .deps/message-header-decode.Tpo .deps/message-header-decode.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 -mfunction-return=keep -Wall -W -Wmissing-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
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 -mfunction-return=keep -Wall -W -Wmissing-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
--- message-decoder.lo ---
mv -f .deps/message-decoder.Tpo .deps/message-decoder.Plo
--- message-date.lo ---
mv -f .deps/message-date.Tpo .deps/message-date.Plo
--- message-header-parser.lo ---
--- message-id.lo ---
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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../../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 -mfunction-return=keep -Wall -W -Wmissing-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
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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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-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 -mfunction-return=keep -Wall -W -Wmissing-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
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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
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 -mfunction-return=keep -Wall -W -Wmissing-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
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 -mfunction-return=keep -Wall -W -Wmissing-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
--- message-part-data.lo ---
mv -f .deps/message-part-data.Tpo .deps/message-part-data.Plo
--- qp-decoder.lo ---
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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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../../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 -mfunction-return=keep -Wall -W -Wmissing-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--- 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 -mfunction-return=keep -Wall -W -Wmissing-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--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- message-snippet.lo ---
mv -f .deps/message-snippet.Tpo .deps/message-snippet.Plo
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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
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 -mfunction-return=keep -Wall -W -Wmissing-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
--- qp-decoder.lo ---
mv -f .deps/qp-decoder.Tpo .deps/qp-decoder.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 -mfunction-return=keep -Wall -W -Wmissing-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--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
mv -f .deps/rfc2231-parser.Tpo .deps/rfc2231-parser.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 -mfunction-return=keep -Wall -W -Wmissing-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
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 -mfunction-return=keep -Wall -W -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 cr .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 -mfunction-return=keep -Wall -W -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-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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -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-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 -mfunction-return=keep -Wall -W -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 
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 -mfunction-return=keep -Wall -W -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-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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -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-qp-decoder ---
--- test-istream-qp-encoder ---
--- test-mail-html2text ---
--- 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 -mfunction-return=keep -Wall -W -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-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 -mfunction-return=keep -Wall -W -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-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 -mfunction-return=keep -Wall -W -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-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 -mfunction-return=keep -Wall -W -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-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 -mfunction-return=keep -Wall -W -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-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 -mfunction-return=keep -Wall -W -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-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 -mfunction-return=keep -Wall -W -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-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 -mfunction-return=keep -Wall -W -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-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 -mfunction-return=keep -Wall -W -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-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 -mfunction-return=keep -Wall -W -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-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 -mfunction-return=keep -Wall -W -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-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 -mfunction-return=keep -Wall -W -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-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 -mfunction-return=keep -Wall -W -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-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 -mfunction-return=keep -Wall -W -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-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 -mfunction-return=keep -Wall -W -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-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 -mfunction-return=keep -Wall -W -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-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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -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 
--- 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 -mfunction-return=keep -Wall -W -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-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 -mfunction-return=keep -Wall -W -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-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 -mfunction-return=keep -Wall -W -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-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 -mfunction-return=keep -Wall -W -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-id ---
--- test-message-parser ---
--- test-message-part ---
--- 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 -mfunction-return=keep -Wall -W -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-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 -mfunction-return=keep -Wall -W -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 ---
/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 -mfunction-return=keep -Wall -W -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-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 -mfunction-return=keep -Wall -W -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-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 -mfunction-return=keep -Wall -W -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-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 -mfunction-return=keep -Wall -W -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-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 -mfunction-return=keep -Wall -W -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-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 -mfunction-return=keep -Wall -W -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-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 -mfunction-return=keep -Wall -W -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 ---
--- test-message-snippet ---
--- 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 -mfunction-return=keep -Wall -W -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-ostream-dot ---
--- 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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -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 
--- 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 -mfunction-return=keep -Wall -W -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-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 -mfunction-return=keep -Wall -W -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-ostream-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 -mfunction-return=keep -Wall -W -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-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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -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 ---
/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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -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-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 -mfunction-return=keep -Wall -W -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-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 -mfunction-return=keep -Wall -W -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-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 -mfunction-return=keep -Wall -W -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-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 -mfunction-return=keep -Wall -W -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-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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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
--- test-program-client-net.o ---
mv -f .deps/test-program-client-net.Tpo .deps/test-program-client-net.Po
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -Wmissing-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 -mfunction-return=keep -Wall -W -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 cr .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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -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 
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 -mfunction-return=keep -Wall -W -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
--- 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 -mfunction-return=keep -Wall -W -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 -mfunction-return=keep -Wall -W -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
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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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
--- smtp-command-parser.lo ---
mv -f .deps/smtp-command-parser.Tpo .deps/smtp-command-parser.Plo
--- smtp-client.lo ---
--- 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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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 smtp-server-cmd-mail.c  -fPIC -DPIC -o .libs/smtp-server-cmd-mail.o
--- smtp-client-transaction.lo ---
mv -f .deps/smtp-client-transaction.Tpo .deps/smtp-client-transaction.Plo
--- smtp-server-cmd-rcpt.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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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-rcpt.lo -MD -MP -MF .deps/smtp-server-cmd-rcpt.Tpo -c -o smtp-server-cmd-rcpt.lo smtp-server-cmd-rcpt.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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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-rcpt.lo -MD -MP -MF .deps/smtp-server-cmd-rcpt.Tpo -c smtp-server-cmd-rcpt.c  -fPIC -DPIC -o .libs/smtp-server-cmd-rcpt.o
--- smtp-server-cmd-auth.lo ---
mv -f .deps/smtp-server-cmd-auth.Tpo .deps/smtp-server-cmd-auth.Plo
--- smtp-server-cmd-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-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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-data.lo -MD -MP -MF .deps/smtp-server-cmd-data.Tpo -c -o smtp-server-cmd-data.lo smtp-server-cmd-data.c
--- 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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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 smtp-server-cmd-mail.c -o smtp-server-cmd-mail.o >/dev/null 2>&1
--- smtp-server-cmd-data.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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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-data.lo -MD -MP -MF .deps/smtp-server-cmd-data.Tpo -c smtp-server-cmd-data.c  -fPIC -DPIC -o .libs/smtp-server-cmd-data.o
--- smtp-server-cmd-rcpt.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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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-rcpt.lo -MD -MP -MF .deps/smtp-server-cmd-rcpt.Tpo -c smtp-server-cmd-rcpt.c -o smtp-server-cmd-rcpt.o >/dev/null 2>&1
--- smtp-server-cmd-mail.lo ---
mv -f .deps/smtp-server-cmd-mail.Tpo .deps/smtp-server-cmd-mail.Plo
--- smtp-server-cmd-rset.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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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-rset.lo -MD -MP -MF .deps/smtp-server-cmd-rset.Tpo -c -o smtp-server-cmd-rset.lo smtp-server-cmd-rset.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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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-rset.lo -MD -MP -MF .deps/smtp-server-cmd-rset.Tpo -c smtp-server-cmd-rset.c  -fPIC -DPIC -o .libs/smtp-server-cmd-rset.o
--- smtp-server-cmd-rcpt.lo ---
mv -f .deps/smtp-server-cmd-rcpt.Tpo .deps/smtp-server-cmd-rcpt.Plo
--- smtp-server-cmd-noop.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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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-noop.lo -MD -MP -MF .deps/smtp-server-cmd-noop.Tpo -c -o smtp-server-cmd-noop.lo smtp-server-cmd-noop.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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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-noop.lo -MD -MP -MF .deps/smtp-server-cmd-noop.Tpo -c smtp-server-cmd-noop.c  -fPIC -DPIC -o .libs/smtp-server-cmd-noop.o
--- smtp-server-cmd-data.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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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-data.lo -MD -MP -MF .deps/smtp-server-cmd-data.Tpo -c smtp-server-cmd-data.c -o smtp-server-cmd-data.o >/dev/null 2>&1
--- smtp-server-cmd-rset.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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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-rset.lo -MD -MP -MF .deps/smtp-server-cmd-rset.Tpo -c smtp-server-cmd-rset.c -o smtp-server-cmd-rset.o >/dev/null 2>&1
--- smtp-server-cmd-noop.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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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-noop.lo -MD -MP -MF .deps/smtp-server-cmd-noop.Tpo -c smtp-server-cmd-noop.c -o smtp-server-cmd-noop.o >/dev/null 2>&1
--- smtp-server-cmd-rset.lo ---
mv -f .deps/smtp-server-cmd-rset.Tpo .deps/smtp-server-cmd-rset.Plo
--- smtp-server-cmd-quit.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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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-quit.lo -MD -MP -MF .deps/smtp-server-cmd-quit.Tpo -c -o smtp-server-cmd-quit.lo smtp-server-cmd-quit.c
--- smtp-server-cmd-noop.lo ---
mv -f .deps/smtp-server-cmd-noop.Tpo .deps/smtp-server-cmd-noop.Plo
--- smtp-server-cmd-vrfy.lo ---
--- smtp-server-cmd-quit.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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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-quit.lo -MD -MP -MF .deps/smtp-server-cmd-quit.Tpo -c smtp-server-cmd-quit.c  -fPIC -DPIC -o .libs/smtp-server-cmd-quit.o
--- smtp-server-cmd-vrfy.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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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-vrfy.lo -MD -MP -MF .deps/smtp-server-cmd-vrfy.Tpo -c -o smtp-server-cmd-vrfy.lo smtp-server-cmd-vrfy.c
--- smtp-client-connection.lo ---
mv -f .deps/smtp-client-connection.Tpo .deps/smtp-client-connection.Plo
--- smtp-server-cmd-xclient.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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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-xclient.lo -MD -MP -MF .deps/smtp-server-cmd-xclient.Tpo -c -o smtp-server-cmd-xclient.lo smtp-server-cmd-xclient.c
--- smtp-server-cmd-vrfy.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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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-vrfy.lo -MD -MP -MF .deps/smtp-server-cmd-vrfy.Tpo -c smtp-server-cmd-vrfy.c  -fPIC -DPIC -o .libs/smtp-server-cmd-vrfy.o
--- smtp-server-cmd-data.lo ---
mv -f .deps/smtp-server-cmd-data.Tpo .deps/smtp-server-cmd-data.Plo
--- smtp-server-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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-reply.lo -MD -MP -MF .deps/smtp-server-reply.Tpo -c -o smtp-server-reply.lo smtp-server-reply.c
--- smtp-server-cmd-quit.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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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-quit.lo -MD -MP -MF .deps/smtp-server-cmd-quit.Tpo -c smtp-server-cmd-quit.c -o smtp-server-cmd-quit.o >/dev/null 2>&1
--- smtp-server-cmd-xclient.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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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-xclient.lo -MD -MP -MF .deps/smtp-server-cmd-xclient.Tpo -c smtp-server-cmd-xclient.c  -fPIC -DPIC -o .libs/smtp-server-cmd-xclient.o
--- smtp-server-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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-reply.lo -MD -MP -MF .deps/smtp-server-reply.Tpo -c smtp-server-reply.c  -fPIC -DPIC -o .libs/smtp-server-reply.o
--- smtp-server-cmd-vrfy.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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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-vrfy.lo -MD -MP -MF .deps/smtp-server-cmd-vrfy.Tpo -c smtp-server-cmd-vrfy.c -o smtp-server-cmd-vrfy.o >/dev/null 2>&1
--- smtp-server-cmd-quit.lo ---
mv -f .deps/smtp-server-cmd-quit.Tpo .deps/smtp-server-cmd-quit.Plo
--- smtp-server-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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-command.lo -MD -MP -MF .deps/smtp-server-command.Tpo -c -o smtp-server-command.lo smtp-server-command.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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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-command.lo -MD -MP -MF .deps/smtp-server-command.Tpo -c smtp-server-command.c  -fPIC -DPIC -o .libs/smtp-server-command.o
--- smtp-server-cmd-vrfy.lo ---
mv -f .deps/smtp-server-cmd-vrfy.Tpo .deps/smtp-server-cmd-vrfy.Plo
--- smtp-server-recipient.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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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-recipient.lo -MD -MP -MF .deps/smtp-server-recipient.Tpo -c -o smtp-server-recipient.lo smtp-server-recipient.c
--- smtp-server-cmd-xclient.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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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-xclient.lo -MD -MP -MF .deps/smtp-server-cmd-xclient.Tpo -c smtp-server-cmd-xclient.c -o smtp-server-cmd-xclient.o >/dev/null 2>&1
--- smtp-server-recipient.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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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-recipient.lo -MD -MP -MF .deps/smtp-server-recipient.Tpo -c smtp-server-recipient.c  -fPIC -DPIC -o .libs/smtp-server-recipient.o
--- smtp-server-cmd-xclient.lo ---
mv -f .deps/smtp-server-cmd-xclient.Tpo .deps/smtp-server-cmd-xclient.Plo
--- smtp-server-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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-transaction.lo -MD -MP -MF .deps/smtp-server-transaction.Tpo -c -o smtp-server-transaction.lo smtp-server-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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-transaction.lo -MD -MP -MF .deps/smtp-server-transaction.Tpo -c smtp-server-transaction.c  -fPIC -DPIC -o .libs/smtp-server-transaction.o
--- smtp-server-recipient.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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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-recipient.lo -MD -MP -MF .deps/smtp-server-recipient.Tpo -c smtp-server-recipient.c -o smtp-server-recipient.o >/dev/null 2>&1
--- smtp-server-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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-reply.lo -MD -MP -MF .deps/smtp-server-reply.Tpo -c smtp-server-reply.c -o smtp-server-reply.o >/dev/null 2>&1
--- smtp-server-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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-transaction.lo -MD -MP -MF .deps/smtp-server-transaction.Tpo -c smtp-server-transaction.c -o smtp-server-transaction.o >/dev/null 2>&1
--- smtp-server-recipient.lo ---
mv -f .deps/smtp-server-recipient.Tpo .deps/smtp-server-recipient.Plo
--- smtp-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-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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-connection.lo -MD -MP -MF .deps/smtp-server-connection.Tpo -c -o smtp-server-connection.lo smtp-server-connection.c
--- smtp-server-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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-command.lo -MD -MP -MF .deps/smtp-server-command.Tpo -c smtp-server-command.c -o smtp-server-command.o >/dev/null 2>&1
--- smtp-server-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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-connection.lo -MD -MP -MF .deps/smtp-server-connection.Tpo -c smtp-server-connection.c  -fPIC -DPIC -o .libs/smtp-server-connection.o
--- smtp-server-reply.lo ---
mv -f .deps/smtp-server-reply.Tpo .deps/smtp-server-reply.Plo
--- smtp-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-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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.lo -MD -MP -MF .deps/smtp-server.Tpo -c -o smtp-server.lo smtp-server.c
--- smtp-server-transaction.lo ---
mv -f .deps/smtp-server-transaction.Tpo .deps/smtp-server-transaction.Plo
--- smtp-submit-settings.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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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-submit-settings.lo -MD -MP -MF .deps/smtp-submit-settings.Tpo -c -o smtp-submit-settings.lo smtp-submit-settings.c
--- smtp-server.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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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.lo -MD -MP -MF .deps/smtp-server.Tpo -c smtp-server.c  -fPIC -DPIC -o .libs/smtp-server.o
--- smtp-submit-settings.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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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-submit-settings.lo -MD -MP -MF .deps/smtp-submit-settings.Tpo -c smtp-submit-settings.c  -fPIC -DPIC -o .libs/smtp-submit-settings.o
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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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-submit-settings.lo -MD -MP -MF .deps/smtp-submit-settings.Tpo -c smtp-submit-settings.c -o smtp-submit-settings.o >/dev/null 2>&1
--- smtp-server.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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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.lo -MD -MP -MF .deps/smtp-server.Tpo -c smtp-server.c -o smtp-server.o >/dev/null 2>&1
--- smtp-submit-settings.lo ---
mv -f .deps/smtp-submit-settings.Tpo .deps/smtp-submit-settings.Plo
--- smtp-submit.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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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-submit.lo -MD -MP -MF .deps/smtp-submit.Tpo -c -o smtp-submit.lo smtp-submit.c
--- smtp-server-command.lo ---
mv -f .deps/smtp-server-command.Tpo .deps/smtp-server-command.Plo
--- smtp-submit.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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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-submit.lo -MD -MP -MF .deps/smtp-submit.Tpo -c smtp-submit.c  -fPIC -DPIC -o .libs/smtp-submit.o
--- smtp-server.lo ---
mv -f .deps/smtp-server.Tpo .deps/smtp-server.Plo
--- smtp-server-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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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-connection.lo -MD -MP -MF .deps/smtp-server-connection.Tpo -c smtp-server-connection.c -o smtp-server-connection.o >/dev/null 2>&1
--- smtp-submit.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.21/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 -mfunction-return=keep -Wall -W -Wmissing-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-submit.lo -MD -MP -MF .deps/smtp-submit.Tpo -c smtp-submit.c -o smtp-submit.o >/dev/null 2>&1
mv -f .deps/smtp-submit.Tpo .deps/smtp-submit.Plo
--- smtp-server-connection.lo ---
mv -f .deps/smtp-server-connection.Tpo .deps/smtp-server-connection.Plo
--- libsmtp.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 -mfunction-return=keep -Wall -W -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 libsmtp.la  smtp-parser.lo smtp-syntax.lo smtp-address.lo  smtp-common.lo smtp-params.lo smtp-reply.lo  smtp-reply-parser.lo smtp-command-parser.lo  smtp-client-command.lo smtp-client-transaction.lo  smtp-client-connection.lo smtp-client.lo smtp-server-cmd-helo.lo smtp-server-cmd-starttls.lo  smtp-server-cmd-auth.lo smtp-server-cmd-mail.lo  smtp-server-cmd-rcpt.lo smtp-server-cmd-data.lo  smtp-server-cmd-rset.lo smtp-server-cmd-noop.lo  smtp-server-cmd-quit.lo smtp-server-cmd-vrfy.lo  smtp-server-cmd-xclient.lo  smtp-server-reply.lo smtp-server-command.lo  smtp-server-recipient.lo smtp-server-transaction.lo  smtp-server-connection.lo smtp-server.lo  smtp-submit-settings.lo smtp-submit.lo  
libtool: link: ar cr .libs/libsmtp.a .libs/smtp-parser.o .libs/smtp-syntax.o .libs/smtp-address.o .libs/smtp-common.o .libs/smtp-params.o .libs/smtp-reply.o .libs/smtp-reply-parser.o .libs/smtp-command-parser.o .libs/smtp-client-command.o .libs/smtp-client-transaction.o .libs/smtp-client-connection.o .libs/smtp-client.o .libs/smtp-server-cmd-helo.o .libs/smtp-server-cmd-starttls.o .libs/smtp-server-cmd-auth.o .libs/smtp-server-cmd-mail.o .libs/smtp-server-cmd-rcpt.o .libs/smtp-server-cmd-data.o .libs/smtp-server-cmd-rset.o .libs/smtp-server-cmd-noop.o .libs/smtp-server-cmd-quit.o .libs/smtp-server-cmd-vrfy.o .libs/smtp-server-cmd-xclient.o .libs/smtp-server-reply.o .libs/smtp-server-command.o .libs/smtp-server-recipient.o .libs/smtp-server-transaction.o .libs/smtp-server-connection.o .libs/smtp-server.o .libs/smtp-submit-settings.o .libs/smtp-submit.o 
libtool: link: ranlib .libs/libsmtp.a
libtool: link: ( cd ".libs" && rm -f "libsmtp.la" && ln -s "../libsmtp.la" "libsmtp.la" )
--- test-smtp-address ---
--- test-smtp-client-errors ---
--- test-smtp-command-parser ---
--- test-smtp-params ---
--- test-smtp-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 -mfunction-return=keep -Wall -W -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-smtp-address test-smtp-address.o libsmtp.la  ../lib-program-client/libprogram_client.la  ../lib-dns/libdns.la  ../lib-mail/libmail.la  ../lib-charset/libcharset.la  ../lib-master/libmaster.la  ../lib-auth/libauth.la  ../lib-ssl-iostream/libssl_iostream.la  ../lib-settings/libsettings.la  ../lib-sasl/libsasl.la  ../lib-test/libtest.la  ../lib/liblib.la  -export-dynamic 
--- test-smtp-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 -mfunction-return=keep -Wall -W -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-smtp-client-errors test-smtp-client-errors.o libsmtp.la  ../lib-program-client/libprogram_client.la  ../lib-dns/libdns.la  ../lib-mail/libmail.la  ../lib-charset/libcharset.la  ../lib-master/libmaster.la  ../lib-auth/libauth.la  ../lib-ssl-iostream/libssl_iostream.la  ../lib-settings/libsettings.la  ../lib-sasl/libsasl.la  ../lib-test/libtest.la  ../lib/liblib.la  -export-dynamic ../lib-ssl-iostream/libssl_iostream_openssl.la 
--- test-smtp-command-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 -mfunction-return=keep -Wall -W -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-smtp-command-parser test-smtp-command-parser.o libsmtp.la  ../lib-program-client/libprogram_client.la  ../lib-dns/libdns.la  ../lib-mail/libmail.la  ../lib-charset/libcharset.la  ../lib-master/libmaster.la  ../lib-auth/libauth.la  ../lib-ssl-iostream/libssl_iostream.la  ../lib-settings/libsettings.la  ../lib-sasl/libsasl.la  ../lib-test/libtest.la  ../lib/liblib.la  -export-dynamic 
--- test-smtp-params ---
/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 -mfunction-return=keep -Wall -W -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-smtp-params test-smtp-params.o libsmtp.la  ../lib-program-client/libprogram_client.la  ../lib-dns/libdns.la  ../lib-mail/libmail.la  ../lib-charset/libcharset.la  ../lib-master/libmaster.la  ../lib-auth/libauth.la  ../lib-ssl-iostream/libssl_iostream.la  ../lib-settings/libsettings.la  ../lib-sasl/libsasl.la  ../lib-test/libtest.la  ../lib/liblib.la  -export-dynamic 
--- test-smtp-command-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 -mfunction-return=keep -Wall -W -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-smtp-command-parser test-smtp-command-parser.o -Wl,--export-dynamic  -L/usr/local/lib ./.libs/libsmtp.a ../lib-program-client/.libs/libprogram_client.a ../lib-dns/.libs/libdns.a ../lib-mail/.libs/libmail.a ../lib-charset/.libs/libcharset.a ../lib-master/.libs/libmaster.a ../lib-auth/.libs/libauth.a ../lib-ssl-iostream/.libs/libssl_iostream.a ../lib-settings/.libs/libsettings.a ../lib-sasl/.libs/libsasl.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a
--- test-smtp-params ---
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 -mfunction-return=keep -Wall -W -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-smtp-params test-smtp-params.o -Wl,--export-dynamic  -L/usr/local/lib ./.libs/libsmtp.a ../lib-program-client/.libs/libprogram_client.a ../lib-dns/.libs/libdns.a ../lib-mail/.libs/libmail.a ../lib-charset/.libs/libcharset.a ../lib-master/.libs/libmaster.a ../lib-auth/.libs/libauth.a ../lib-ssl-iostream/.libs/libssl_iostream.a ../lib-settings/.libs/libsettings.a ../lib-sasl/.libs/libsasl.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a
--- test-smtp-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 -mfunction-return=keep -Wall -W -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-smtp-address test-smtp-address.o -Wl,--export-dynamic  -L/usr/local/lib ./.libs/libsmtp.a ../lib-program-client/.libs/libprogram_client.a ../lib-dns/.libs/libdns.a ../lib-mail/.libs/libmail.a ../lib-charset/.libs/libcharset.a ../lib-master/.libs/libmaster.a ../lib-auth/.libs/libauth.a ../lib-ssl-iostream/.libs/libssl_iostream.a ../lib-settings/.libs/libsettings.a ../lib-sasl/.libs/libsasl.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a
--- test-smtp-client-errors ---
*** Warning: Linking the executable test-smtp-client-errors 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 -mfunction-return=keep -Wall -W -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-smtp-client-errors test-smtp-client-errors.o -Wl,--export-dynamic  -L/usr/local/lib ./.libs/libsmtp.a ../lib-program-client/.libs/libprogram_client.a ../lib-dns/.libs/libdns.a ../lib-mail/.libs/libmail.a ../lib-charset/.libs/libcharset.a ../lib-master/.libs/libmaster.a ../lib-auth/.libs/libauth.a ../lib-ssl-iostream/.libs/libssl_iostream.a ../lib-settings/.libs/libsettings.a ../lib-sasl/.libs/libsasl.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-smtp-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 -mfunction-return=keep -Wall -W -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-smtp-payload test-smtp-payload.o libsmtp.la  ../lib-program-client/libprogram_client.la  ../lib-dns/libdns.la  ../lib-mail/libmail.la  ../lib-charset/libcharset.la  ../lib-master/libmaster.la  ../lib-auth/libauth.la  ../lib-ssl-iostream/libssl_iostream.la  ../lib-settings/libsettings.la  ../lib-sasl/libsasl.la  ../lib-test/libtest.la  ../lib/liblib.la  -export-dynamic ../lib-ssl-iostream/libssl_iostream_openssl.la 
--- test-smtp-reply ---
--- test-smtp-server-errors ---
--- test-smtp-reply ---
/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 -mfunction-return=keep -Wall -W -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-smtp-reply test-smtp-reply.o libsmtp.la  ../lib-program-client/libprogram_client.la  ../lib-dns/libdns.la  ../lib-mail/libmail.la  ../lib-charset/libcharset.la  ../lib-master/libmaster.la  ../lib-auth/libauth.la  ../lib-ssl-iostream/libssl_iostream.la  ../lib-settings/libsettings.la  ../lib-sasl/libsasl.la  ../lib-test/libtest.la  ../lib/liblib.la  -export-dynamic 
--- test-smtp-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 -mfunction-return=keep -Wall -W -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-smtp-server-errors test-smtp-server-errors.o libsmtp.la  ../lib-program-client/libprogram_client.la  ../lib-dns/libdns.la  ../lib-mail/libmail.la  ../lib-charset/libcharset.la  ../lib-master/libmaster.la  ../lib-auth/libauth.la  ../lib-ssl-iostream/libssl_iostream.la  ../lib-settings/libsettings.la  ../lib-sasl/libsasl.la  ../lib-test/libtest.la  ../lib/liblib.la  -export-dynamic 
--- test-smtp-submit ---
/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 -mfunction-return=keep -Wall -W -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-smtp-submit test-smtp-submit.o libsmtp.la  ../lib-program-client/libprogram_client.la  ../lib-dns/libdns.la  ../lib-mail/libmail.la  ../lib-charset/libcharset.la  ../lib-master/libmaster.la  ../lib-auth/libauth.la  ../lib-ssl-iostream/libssl_iostream.la  ../lib-settings/libsettings.la  ../lib-sasl/libsasl.la  ../lib-test/libtest.la  ../lib/liblib.la  -export-dynamic 
--- test-smtp-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 -mfunction-return=keep -Wall -W -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-smtp-server-errors test-smtp-server-errors.o -Wl,--export-dynamic  -L/usr/local/lib ./.libs/libsmtp.a ../lib-program-client/.libs/libprogram_client.a ../lib-dns/.libs/libdns.a ../lib-mail/.libs/libmail.a ../lib-charset/.libs/libcharset.a ../lib-master/.libs/libmaster.a ../lib-auth/.libs/libauth.a ../lib-ssl-iostream/.libs/libssl_iostream.a ../lib-settings/.libs/libsettings.a ../lib-sasl/.libs/libsasl.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a
--- test-smtp-reply ---
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 -mfunction-return=keep -Wall -W -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-smtp-reply test-smtp-reply.o -Wl,--export-dynamic  -L/usr/local/lib ./.libs/libsmtp.a ../lib-program-client/.libs/libprogram_client.a ../lib-dns/.libs/libdns.a ../lib-mail/.libs/libmail.a ../lib-charset/.libs/libcharset.a ../lib-master/.libs/libmaster.a ../lib-auth/.libs/libauth.a ../lib-ssl-iostream/.libs/libssl_iostream.a ../lib-settings/.libs/libsettings.a ../lib-sasl/.libs/libsasl.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a
--- test-smtp-payload ---
*** Warning: Linking the executable test-smtp-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 -mfunction-return=keep -Wall -W -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-smtp-payload test-smtp-payload.o -Wl,--export-dynamic  -L/usr/local/lib ./.libs/libsmtp.a ../lib-program-client/.libs/libprogram_client.a ../lib-dns/.libs/libdns.a ../lib-mail/.libs/libmail.a ../lib-charset/.libs/libcharset.a ../lib-master/.libs/libmaster.a ../lib-auth/.libs/libauth.a ../lib-ssl-iostream/.libs/libssl_iostream.a ../lib-settings/.libs/libsettings.a ../lib-sasl/.libs/libsasl.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-smtp-submit ---
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 -mfunction-return=keep -Wall -W -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-smtp-submit test-smtp-submit.o -Wl,--export-dynamic  -L/usr/local/lib ./.libs/libsmtp.a ../lib-program-client/.libs/libprogram_client.a ../lib-dns/.libs/libdns.a ../lib-mail/.libs/libmail.a ../lib-charset/.libs/libcharset.a ../lib-master/.libs/libmaster.a ../lib-auth/.libs/libauth.a ../lib-ssl-iostream/.libs/libssl_iostream.a ../lib-settings/.libs/libsettings.a ../lib-sasl/.libs/libsasl.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a
--- test-smtp-syntax ---
/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 -mfunction-return=keep -Wall -W -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-smtp-syntax test-smtp-syntax.o libsmtp.la  ../lib-program-client/libprogram_client.la  ../lib-dns/libdns.la  ../lib-mail/libmail.la  ../lib-charset/libcharset.la  ../lib-master/libmaster.la  ../lib-auth/libauth.la  ../lib-ssl-iostream/libssl_iostream.la  ../lib-settings/libsettings.la  ../lib-sasl/libsasl.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 -mfunction-return=keep -Wall -W -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-smtp-syntax test-smtp-syntax.o -Wl,--export-dynamic  -L/usr/local/lib ./.libs/libsmtp.a ../lib-program-client/.libs/libprogram_client.a ../lib-dns/.libs/libdns.a ../lib-mail/.libs/libmail.a ../lib-charset/.libs/libcharset.a ../lib-master/.libs/libmaster.a ../lib-auth/.libs/libauth.a ../lib-ssl-iostream/.libs/libssl_iostream.a ../lib-settings/.libs/libsettings.a ../lib-sasl/.libs/libsasl.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a
Making all in lib-imap
--- test-imap-bodystructure.o ---
--- test-imap-envelope.o ---
--- test-imap-match.o ---
--- test-imap-parser.o ---
--- test-imap-bodystructure.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -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 -mfunction-return=keep -Wall -W -Wmissing-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-imap-bodystructure.o -MD -MP -MF .deps/test-imap-bodystructure.Tpo -c -o test-imap-bodystructure.o test-imap-bodystructure.c
--- test-imap-envelope.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -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 -mfunction-return=keep -Wall -W -Wmissing-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-imap-envelope.o -MD -MP -MF .deps/test-imap-envelope.Tpo -c -o test-imap-envelope.o test-imap-envelope.c
--- test-imap-match.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -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 -mfunction-return=keep -Wall -W -Wmissing-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-imap-match.o -MD -MP -MF .deps/test-imap-match.Tpo -c -o test-imap-match.o test-imap-match.c
--- test-imap-parser.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -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 -mfunction-return=keep -Wall -W -Wmissing-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-imap-parser.o -MD -MP -MF .deps/test-imap-parser.Tpo -c -o test-imap-parser.o test-imap-parser.c
--- test-imap-match.o ---
mv -f .deps/test-imap-match.Tpo .deps/test-imap-match.Po
--- test-imap-quote.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -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 -mfunction-return=keep -Wall -W -Wmissing-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-imap-quote.o -MD -MP -MF .deps/test-imap-quote.Tpo -c -o test-imap-quote.o test-imap-quote.c
--- test-imap-envelope.o ---
mv -f .deps/test-imap-envelope.Tpo .deps/test-imap-envelope.Po
--- test-imap-url.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -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 -mfunction-return=keep -Wall -W -Wmissing-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-imap-url.o -MD -MP -MF .deps/test-imap-url.Tpo -c -o test-imap-url.o test-imap-url.c
--- test-imap-parser.o ---
mv -f .deps/test-imap-parser.Tpo .deps/test-imap-parser.Po
--- test-imap-utf7.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -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 -mfunction-return=keep -Wall -W -Wmissing-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-imap-utf7.o -MD -MP -MF .deps/test-imap-utf7.Tpo -c -o test-imap-utf7.o test-imap-utf7.c
--- test-imap-bodystructure.o ---
mv -f .deps/test-imap-bodystructure.Tpo .deps/test-imap-bodystructure.Po
--- test-imap-util.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-charset  -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 -mfunction-return=keep -Wall -W -Wmissing-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-imap-util.o -MD -MP -MF .deps/test-imap-util.Tpo -c -o test-imap-util.o test-imap-util.c
--- test-imap-quote.o ---
mv -f .deps/test-imap-quote.Tpo .deps/test-imap-quote.Po
--- imap-arg.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-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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-arg.lo -MD -MP -MF .deps/imap-arg.Tpo -c -o imap-arg.lo imap-arg.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char../../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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-arg.lo -MD -MP -MF .deps/imap-arg.Tpo -c imap-arg.c  -fPIC -DPIC -o .libs/imap-arg.o
--- test-imap-util.o ---
mv -f .deps/test-imap-util.Tpo .deps/test-imap-util.Po
--- test-imap-utf7.o ---
mv -f .deps/test-imap-utf7.Tpo .deps/test-imap-utf7.Po
--- imap-base-subject.lo ---
--- imap-bodystructure.lo ---
--- imap-base-subject.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-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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-base-subject.lo -MD -MP -MF .deps/imap-base-subject.Tpo -c -o imap-base-subject.lo imap-base-subject.c
--- test-imap-url.o ---
mv -f .deps/test-imap-url.Tpo .deps/test-imap-url.Po
--- imap-bodystructure.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-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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-bodystructure.lo -MD -MP -MF .deps/imap-bodystructure.Tpo -c -o imap-bodystructure.lo imap-bodystructure.c
--- imap-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-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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-date.lo -MD -MP -MF .deps/imap-date.Tpo -c -o imap-date.lo imap-date.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- imap-bodystructure.lo ---
../../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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-bodystructure.lo -MD -MP -MF .deps/imap-bodystructure.Tpo -c imap-bodystructure.c  -fPIC -DPIC -o .libs/imap-bodystructure.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- imap-base-subject.lo ---
../../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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-base-subject.lo -MD -MP -MF .deps/imap-base-subject.Tpo -c imap-base-subject.c  -fPIC -DPIC -o .libs/imap-base-subject.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- imap-date.lo ---
../../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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-date.lo -MD -MP -MF .deps/imap-date.Tpo -c imap-date.c  -fPIC -DPIC -o .libs/imap-date.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- imap-arg.lo ---
../../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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-arg.lo -MD -MP -MF .deps/imap-arg.Tpo -c imap-arg.c -o imap-arg.o >/dev/null 2>&1
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- imap-base-subject.lo ---
../../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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-base-subject.lo -MD -MP -MF .deps/imap-base-subject.Tpo -c imap-base-subject.c -o imap-base-subject.o >/dev/null 2>&1
--- imap-arg.lo ---
mv -f .deps/imap-arg.Tpo .deps/imap-arg.Plo
--- imap-envelope.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-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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-envelope.lo -MD -MP -MF .deps/imap-envelope.Tpo -c -o imap-envelope.lo imap-envelope.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char../../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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-envelope.lo -MD -MP -MF .deps/imap-envelope.Tpo -c imap-envelope.c  -fPIC -DPIC -o .libs/imap-envelope.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- imap-date.lo ---
../../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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-date.lo -MD -MP -MF .deps/imap-date.Tpo -c imap-date.c -o imap-date.o >/dev/null 2>&1
--- imap-base-subject.lo ---
mv -f .deps/imap-base-subject.Tpo .deps/imap-base-subject.Plo
--- imap-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-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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-id.lo -MD -MP -MF .deps/imap-id.Tpo -c -o imap-id.lo imap-id.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- imap-envelope.lo ---
../../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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-envelope.lo -MD -MP -MF .deps/imap-envelope.Tpo -c imap-envelope.c -o imap-envelope.o >/dev/null 2>&1
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- imap-id.lo ---
../../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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-id.lo -MD -MP -MF .deps/imap-id.Tpo -c imap-id.c  -fPIC -DPIC -o .libs/imap-id.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- imap-bodystructure.lo ---
../../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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-bodystructure.lo -MD -MP -MF .deps/imap-bodystructure.Tpo -c imap-bodystructure.c -o imap-bodystructure.o >/dev/null 2>&1
--- imap-date.lo ---
mv -f .deps/imap-date.Tpo .deps/imap-date.Plo
--- imap-keepalive.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-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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-keepalive.lo -MD -MP -MF .deps/imap-keepalive.Tpo -c -o imap-keepalive.lo imap-keepalive.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char../../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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-keepalive.lo -MD -MP -MF .deps/imap-keepalive.Tpo -c imap-keepalive.c  -fPIC -DPIC -o .libs/imap-keepalive.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- imap-id.lo ---
../../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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-id.lo -MD -MP -MF .deps/imap-id.Tpo -c imap-id.c -o imap-id.o >/dev/null 2>&1
--- imap-envelope.lo ---
mv -f .deps/imap-envelope.Tpo .deps/imap-envelope.Plo
--- imap-match.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-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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-match.lo -MD -MP -MF .deps/imap-match.Tpo -c -o imap-match.lo imap-match.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- imap-keepalive.lo ---
../../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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-keepalive.lo -MD -MP -MF .deps/imap-keepalive.Tpo -c imap-keepalive.c -o imap-keepalive.o >/dev/null 2>&1
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- imap-match.lo ---
../../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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-match.lo -MD -MP -MF .deps/imap-match.Tpo -c imap-match.c  -fPIC -DPIC -o .libs/imap-match.o
--- imap-keepalive.lo ---
mv -f .deps/imap-keepalive.Tpo .deps/imap-keepalive.Plo
--- imap-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-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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-parser.lo -MD -MP -MF .deps/imap-parser.Tpo -c -o imap-parser.lo imap-parser.c
--- imap-id.lo ---
mv -f .deps/imap-id.Tpo .deps/imap-id.Plo
--- imap-quote.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-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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-quote.lo -MD -MP -MF .deps/imap-quote.Tpo -c -o imap-quote.lo imap-quote.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- imap-parser.lo ---
../../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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-parser.lo -MD -MP -MF .deps/imap-parser.Tpo -c imap-parser.c  -fPIC -DPIC -o .libs/imap-parser.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- imap-quote.lo ---
../../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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-quote.lo -MD -MP -MF .deps/imap-quote.Tpo -c imap-quote.c  -fPIC -DPIC -o .libs/imap-quote.o
--- imap-bodystructure.lo ---
mv -f .deps/imap-bodystructure.Tpo .deps/imap-bodystructure.Plo
--- imap-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-charset  -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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-url.lo -MD -MP -MF .deps/imap-url.Tpo -c -o imap-url.lo imap-url.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char../../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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-url.lo -MD -MP -MF .deps/imap-url.Tpo -c imap-url.c  -fPIC -DPIC -o .libs/imap-url.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- imap-match.lo ---
../../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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-match.lo -MD -MP -MF .deps/imap-match.Tpo -c imap-match.c -o imap-match.o >/dev/null 2>&1
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- imap-quote.lo ---
../../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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-quote.lo -MD -MP -MF .deps/imap-quote.Tpo -c imap-quote.c -o imap-quote.o >/dev/null 2>&1
mv -f .deps/imap-quote.Tpo .deps/imap-quote.Plo
--- imap-seqset.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-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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-seqset.lo -MD -MP -MF .deps/imap-seqset.Tpo -c -o imap-seqset.lo imap-seqset.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char../../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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-seqset.lo -MD -MP -MF .deps/imap-seqset.Tpo -c imap-seqset.c  -fPIC -DPIC -o .libs/imap-seqset.o
--- imap-match.lo ---
mv -f .deps/imap-match.Tpo .deps/imap-match.Plo
--- imap-utf7.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-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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-utf7.lo -MD -MP -MF .deps/imap-utf7.Tpo -c -o imap-utf7.lo imap-utf7.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char../../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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-utf7.lo -MD -MP -MF .deps/imap-utf7.Tpo -c imap-utf7.c  -fPIC -DPIC -o .libs/imap-utf7.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- imap-parser.lo ---
../../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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-parser.lo -MD -MP -MF .deps/imap-parser.Tpo -c imap-parser.c -o imap-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--- imap-seqset.lo ---
../../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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-seqset.lo -MD -MP -MF .deps/imap-seqset.Tpo -c imap-seqset.c -o imap-seqset.o >/dev/null 2>&1
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- imap-url.lo ---
../../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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-url.lo -MD -MP -MF .deps/imap-url.Tpo -c imap-url.c -o imap-url.o >/dev/null 2>&1
--- imap-seqset.lo ---
mv -f .deps/imap-seqset.Tpo .deps/imap-seqset.Plo
--- imap-util.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-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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-util.lo -MD -MP -MF .deps/imap-util.Tpo -c -o imap-util.lo imap-util.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char../../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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-util.lo -MD -MP -MF .deps/imap-util.Tpo -c imap-util.c  -fPIC -DPIC -o .libs/imap-util.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- imap-utf7.lo ---
../../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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-utf7.lo -MD -MP -MF .deps/imap-utf7.Tpo -c imap-utf7.c -o imap-utf7.o >/dev/null 2>&1
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- imap-util.lo ---
../../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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-util.lo -MD -MP -MF .deps/imap-util.Tpo -c imap-util.c -o imap-util.o >/dev/null 2>&1
--- imap-parser.lo ---
mv -f .deps/imap-parser.Tpo .deps/imap-parser.Plo
--- imap-utf7.lo ---
mv -f .deps/imap-utf7.Tpo .deps/imap-utf7.Plo
--- imap-util.lo ---
mv -f .deps/imap-util.Tpo .deps/imap-util.Plo
--- imap-url.lo ---
mv -f .deps/imap-url.Tpo .deps/imap-url.Plo
--- libimap.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 -mfunction-return=keep -Wall -W -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 libimap.la  imap-arg.lo imap-base-subject.lo  imap-bodystructure.lo imap-date.lo imap-envelope.lo imap-id.lo  imap-keepalive.lo imap-match.lo imap-parser.lo imap-quote.lo  imap-url.lo imap-seqset.lo imap-utf7.lo imap-util.lo  
libtool: link: ar cr .libs/libimap.a .libs/imap-arg.o .libs/imap-base-subject.o .libs/imap-bodystructure.o .libs/imap-date.o .libs/imap-envelope.o .libs/imap-id.o .libs/imap-keepalive.o .libs/imap-match.o .libs/imap-parser.o .libs/imap-quote.o .libs/imap-url.o .libs/imap-seqset.o .libs/imap-utf7.o .libs/imap-util.o 
libtool: link: ranlib .libs/libimap.a
libtool: link: ( cd ".libs" && rm -f "libimap.la" && ln -s "../libimap.la" "libimap.la" )
--- test-imap-bodystructure ---
--- test-imap-envelope ---
--- test-imap-match ---
--- test-imap-parser ---
--- test-imap-bodystructure ---
/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 -mfunction-return=keep -Wall -W -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-imap-bodystructure test-imap-bodystructure.o imap-bodystructure.lo imap-envelope.lo imap-quote.lo imap-parser.lo imap-arg.lo ../lib-mail/libmail.la ../lib-test/libtest.la  ../lib/liblib.la 
--- test-imap-envelope ---
/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 -mfunction-return=keep -Wall -W -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-imap-envelope test-imap-envelope.o imap-envelope.lo imap-quote.lo imap-parser.lo imap-arg.lo ../lib-mail/libmail.la ../lib-test/libtest.la  ../lib/liblib.la 
--- test-imap-match ---
/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 -mfunction-return=keep -Wall -W -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-imap-match test-imap-match.o imap-match.lo ../lib-test/libtest.la  ../lib/liblib.la 
--- test-imap-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 -mfunction-return=keep -Wall -W -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-imap-parser test-imap-parser.o imap-parser.lo imap-arg.lo ../lib-test/libtest.la  ../lib/liblib.la 
--- test-imap-match ---
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 -mfunction-return=keep -Wall -W -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-imap-match test-imap-match.o .libs/imap-match.o  -L/usr/local/lib ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a 
--- test-imap-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 -mfunction-return=keep -Wall -W -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-imap-parser test-imap-parser.o .libs/imap-parser.o .libs/imap-arg.o  -L/usr/local/lib ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a 
--- test-imap-bodystructure ---
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 -mfunction-return=keep -Wall -W -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-imap-bodystructure test-imap-bodystructure.o .libs/imap-bodystructure.o .libs/imap-envelope.o .libs/imap-quote.o .libs/imap-parser.o .libs/imap-arg.o  -L/usr/local/lib ../lib-mail/.libs/libmail.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a 
--- test-imap-quote ---
--- test-imap-envelope ---
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 -mfunction-return=keep -Wall -W -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-imap-envelope test-imap-envelope.o .libs/imap-envelope.o .libs/imap-quote.o .libs/imap-parser.o .libs/imap-arg.o  -L/usr/local/lib ../lib-mail/.libs/libmail.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a 
--- test-imap-quote ---
/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 -mfunction-return=keep -Wall -W -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-imap-quote test-imap-quote.o imap-quote.lo ../lib-test/libtest.la  ../lib/liblib.la 
--- test-imap-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 -mfunction-return=keep -Wall -W -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-imap-url test-imap-url.o imap-url.lo  ../lib-test/libtest.la  ../lib/liblib.la 
--- test-imap-utf7 ---
/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 -mfunction-return=keep -Wall -W -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-imap-utf7 test-imap-utf7.o imap-utf7.lo ../lib-test/libtest.la  ../lib/liblib.la 
--- test-imap-util ---
/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 -mfunction-return=keep -Wall -W -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-imap-util test-imap-util.o imap-util.lo imap-arg.lo ../lib-test/libtest.la  ../lib/liblib.la 
--- test-imap-quote ---
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 -mfunction-return=keep -Wall -W -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-imap-quote test-imap-quote.o .libs/imap-quote.o  -L/usr/local/lib ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a 
--- test-imap-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 -mfunction-return=keep -Wall -W -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-imap-url test-imap-url.o .libs/imap-url.o  -L/usr/local/lib ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a 
--- test-imap-util ---
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 -mfunction-return=keep -Wall -W -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-imap-util test-imap-util.o .libs/imap-util.o .libs/imap-arg.o  -L/usr/local/lib ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a 
--- test-imap-utf7 ---
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 -mfunction-return=keep -Wall -W -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-imap-utf7 test-imap-utf7.o .libs/imap-utf7.o  -L/usr/local/lib ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a 
Making all in lib-imap-storage
--- imap-msgpart.lo ---
--- imap-msgpart-url.lo ---
--- imap-metadata.lo ---
--- imap-msgpart.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-mail  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-msgpart.lo -MD -MP -MF .deps/imap-msgpart.Tpo -c -o imap-msgpart.lo imap-msgpart.c
--- imap-msgpart-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-charset  -I../../src/lib-mail  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-msgpart-url.lo -MD -MP -MF .deps/imap-msgpart-url.Tpo -c -o imap-msgpart-url.lo imap-msgpart-url.c
--- imap-metadata.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-mail  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-metadata.lo -MD -MP -MF .deps/imap-metadata.Tpo -c -o imap-metadata.lo imap-metadata.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- imap-msgpart-url.lo ---
../../src/lib-mail -I../../src/lib-index -I../../src/lib-storage -I../../src/lib-imap -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-msgpart-url.lo -MD -MP -MF .deps/imap-msgpart-url.Tpo -c imap-msgpart-url.c  -fPIC -DPIC -o .libs/imap-msgpart-url.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- imap-msgpart.lo ---
../../src/lib-mail -I../../src/lib-index -I../../src/lib-storage -I../../src/lib-imap -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-msgpart.lo -MD -MP -MF .deps/imap-msgpart.Tpo -c imap-msgpart.c  -fPIC -DPIC -o .libs/imap-msgpart.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- imap-metadata.lo ---
../../src/lib-mail -I../../src/lib-index -I../../src/lib-storage -I../../src/lib-imap -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-metadata.lo -MD -MP -MF .deps/imap-metadata.Tpo -c imap-metadata.c  -fPIC -DPIC -o .libs/imap-metadata.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- imap-msgpart-url.lo ---
../../src/lib-mail -I../../src/lib-index -I../../src/lib-storage -I../../src/lib-imap -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-msgpart-url.lo -MD -MP -MF .deps/imap-msgpart-url.Tpo -c imap-msgpart-url.c -o imap-msgpart-url.o >/dev/null 2>&1
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- imap-metadata.lo ---
../../src/lib-mail -I../../src/lib-index -I../../src/lib-storage -I../../src/lib-imap -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-metadata.lo -MD -MP -MF .deps/imap-metadata.Tpo -c imap-metadata.c -o imap-metadata.o >/dev/null 2>&1
--- imap-msgpart-url.lo ---
mv -f .deps/imap-msgpart-url.Tpo .deps/imap-msgpart-url.Plo
--- imap-metadata.lo ---
mv -f .deps/imap-metadata.Tpo .deps/imap-metadata.Plo
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- imap-msgpart.lo ---
../../src/lib-mail -I../../src/lib-index -I../../src/lib-storage -I../../src/lib-imap -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-msgpart.lo -MD -MP -MF .deps/imap-msgpart.Tpo -c imap-msgpart.c -o imap-msgpart.o >/dev/null 2>&1
mv -f .deps/imap-msgpart.Tpo .deps/imap-msgpart.Plo
--- libimap-storage.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 -mfunction-return=keep -Wall -W -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 libimap-storage.la  imap-msgpart.lo imap-msgpart-url.lo  imap-metadata.lo  
libtool: link: ar cr .libs/libimap-storage.a .libs/imap-msgpart.o .libs/imap-msgpart-url.o .libs/imap-metadata.o 
libtool: link: ranlib .libs/libimap-storage.a
libtool: link: ( cd ".libs" && rm -f "libimap-storage.la" && ln -s "../libimap-storage.la" "libimap-storage.la" )
Making all in lib-oauth2
--- test-oauth2-json.o ---
--- test-oauth2-jwt.o ---
--- oauth2.lo ---
--- oauth2-request.lo ---
--- test-oauth2-json.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/lib-dict  -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 -mfunction-return=keep -Wall -W -Wmissing-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-oauth2-json.o -MD -MP -MF .deps/test-oauth2-json.Tpo -c -o test-oauth2-json.o test-oauth2-json.c
--- test-oauth2-jwt.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/lib-dict  -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 -mfunction-return=keep -Wall -W -Wmissing-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-oauth2-jwt.o -MD -MP -MF .deps/test-oauth2-jwt.Tpo -c -o test-oauth2-jwt.o test-oauth2-jwt.c
--- oauth2.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/lib-dict  -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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT oauth2.lo -MD -MP -MF .deps/oauth2.Tpo -c -o oauth2.lo oauth2.c
--- oauth2-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-http  -I../../src/lib-dcrypt  -I../../src/lib-dict  -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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT oauth2-request.lo -MD -MP -MF .deps/oauth2-request.Tpo -c -o oauth2-request.lo oauth2-request.c
--- oauth2.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-http -I../../src/lib-dcrypt -I../../src/lib-dict -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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT oauth2.lo -MD -MP -MF .deps/oauth2.Tpo -c oauth2.c  -fPIC -DPIC -o .libs/oauth2.o
--- oauth2-request.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-http -I../../src/lib-dcrypt -I../../src/lib-dict -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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT oauth2-request.lo -MD -MP -MF .deps/oauth2-request.Tpo -c oauth2-request.c  -fPIC -DPIC -o .libs/oauth2-request.o
--- test-oauth2-json.o ---
mv -f .deps/test-oauth2-json.Tpo .deps/test-oauth2-json.Po
--- oauth2-jwt.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/lib-dict  -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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT oauth2-jwt.lo -MD -MP -MF .deps/oauth2-jwt.Tpo -c -o oauth2-jwt.lo oauth2-jwt.c
--- oauth2.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-http -I../../src/lib-dcrypt -I../../src/lib-dict -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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT oauth2.lo -MD -MP -MF .deps/oauth2.Tpo -c oauth2.c -o oauth2.o >/dev/null 2>&1
--- oauth2-jwt.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-http -I../../src/lib-dcrypt -I../../src/lib-dict -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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT oauth2-jwt.lo -MD -MP -MF .deps/oauth2-jwt.Tpo -c oauth2-jwt.c  -fPIC -DPIC -o .libs/oauth2-jwt.o
--- oauth2.lo ---
mv -f .deps/oauth2.Tpo .deps/oauth2.Plo
--- oauth2-key-cache.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/lib-dict  -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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT oauth2-key-cache.lo -MD -MP -MF .deps/oauth2-key-cache.Tpo -c -o oauth2-key-cache.lo oauth2-key-cache.c
--- oauth2-request.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-http -I../../src/lib-dcrypt -I../../src/lib-dict -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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT oauth2-request.lo -MD -MP -MF .deps/oauth2-request.Tpo -c oauth2-request.c -o oauth2-request.o >/dev/null 2>&1
--- oauth2-key-cache.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-http -I../../src/lib-dcrypt -I../../src/lib-dict -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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT oauth2-key-cache.lo -MD -MP -MF .deps/oauth2-key-cache.Tpo -c oauth2-key-cache.c  -fPIC -DPIC -o .libs/oauth2-key-cache.o
--- test-oauth2-jwt.o ---
mv -f .deps/test-oauth2-jwt.Tpo .deps/test-oauth2-jwt.Po
--- oauth2-key-cache.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-http -I../../src/lib-dcrypt -I../../src/lib-dict -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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT oauth2-key-cache.lo -MD -MP -MF .deps/oauth2-key-cache.Tpo -c oauth2-key-cache.c -o oauth2-key-cache.o >/dev/null 2>&1
--- oauth2-jwt.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-http -I../../src/lib-dcrypt -I../../src/lib-dict -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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT oauth2-jwt.lo -MD -MP -MF .deps/oauth2-jwt.Tpo -c oauth2-jwt.c -o oauth2-jwt.o >/dev/null 2>&1
--- oauth2-request.lo ---
mv -f .deps/oauth2-request.Tpo .deps/oauth2-request.Plo
--- oauth2-key-cache.lo ---
mv -f .deps/oauth2-key-cache.Tpo .deps/oauth2-key-cache.Plo
--- oauth2-jwt.lo ---
mv -f .deps/oauth2-jwt.Tpo .deps/oauth2-jwt.Plo
--- liboauth2.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 -mfunction-return=keep -Wall -W -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 liboauth2.la  oauth2.lo oauth2-request.lo oauth2-jwt.lo  oauth2-key-cache.lo  
libtool: link: ar cr .libs/liboauth2.a .libs/oauth2.o .libs/oauth2-request.o .libs/oauth2-jwt.o .libs/oauth2-key-cache.o 
libtool: link: ranlib .libs/liboauth2.a
libtool: link: ( cd ".libs" && rm -f "liboauth2.la" && ln -s "../liboauth2.la" "liboauth2.la" )
--- test-oauth2-json ---
--- test-oauth2-jwt ---
--- test-oauth2-json ---
/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 -mfunction-return=keep -Wall -W -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-oauth2-json test-oauth2-json.o liboauth2.la  ../lib-dcrypt/libdcrypt.la  ../lib-http/libhttp.la  ../lib-dns/libdns.la  ../lib-ssl-iostream/libssl_iostream.la  ../lib-master/libmaster.la  ../lib-auth/libauth.la  ../lib-dict/libdict.la  ../lib-settings/libsettings.la  ../lib-test/libtest.la  ../lib/liblib.la  -export-dynamic 
--- test-oauth2-jwt ---
/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 -mfunction-return=keep -Wall -W -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 -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong  -o test-oauth2-jwt test-oauth2-jwt.o liboauth2.la  ../lib-dcrypt/libdcrypt.la  ../lib-http/libhttp.la  ../lib-dns/libdns.la  ../lib-ssl-iostream/libssl_iostream.la  ../lib-master/libmaster.la  ../lib-auth/libauth.la  ../lib-dict/libdict.la  ../lib-settings/libsettings.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 -mfunction-return=keep -Wall -W -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,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o test-oauth2-jwt test-oauth2-jwt.o -Wl,--export-dynamic  -L/usr/local/lib ./.libs/liboauth2.a ../lib-dcrypt/.libs/libdcrypt.a ../lib-http/.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-dict/.libs/libdict.a ../lib-settings/.libs/libsettings.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a
--- test-oauth2-json ---
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 -mfunction-return=keep -Wall -W -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-oauth2-json test-oauth2-json.o -Wl,--export-dynamic  -L/usr/local/lib ./.libs/liboauth2.a ../lib-dcrypt/.libs/libdcrypt.a ../lib-http/.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-dict/.libs/libdict.a ../lib-settings/.libs/libsettings.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a
Making all in lib-dict-extra
--- test-dict-fs.o ---
--- dict-fs.lo ---
--- dict-register.lo ---
--- test-dict-fs.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-fs  -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 -mfunction-return=keep -Wall -W -Wmissing-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-fs.o -MD -MP -MF .deps/test-dict-fs.Tpo -c -o test-dict-fs.o test-dict-fs.c
--- dict-fs.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-fs  -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 -mfunction-return=keep -Wall -W -Wmissing-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-fs.lo -MD -MP -MF .deps/dict-fs.Tpo -c -o dict-fs.lo dict-fs.c
--- dict-register.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-fs  -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 -mfunction-return=keep -Wall -W -Wmissing-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-register.lo -MD -MP -MF .deps/dict-register.Tpo -c -o dict-register.lo dict-register.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-fs -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 -mfunction-return=keep -Wall -W -Wmissing-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-register.lo -MD -MP -MF .deps/dict-register.Tpo -c dict-register.c  -fPIC -DPIC -o .libs/dict-register.o
--- dict-fs.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-fs -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 -mfunction-return=keep -Wall -W -Wmissing-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-fs.lo -MD -MP -MF .deps/dict-fs.Tpo -c dict-fs.c  -fPIC -DPIC -o .libs/dict-fs.o
--- test-dict-fs.o ---
mv -f .deps/test-dict-fs.Tpo .deps/test-dict-fs.Po
--- dict-register.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-fs -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 -mfunction-return=keep -Wall -W -Wmissing-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-register.lo -MD -MP -MF .deps/dict-register.Tpo -c dict-register.c -o dict-register.o >/dev/null 2>&1
mv -f .deps/dict-register.Tpo .deps/dict-register.Plo
--- dict-fs.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-fs -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 -mfunction-return=keep -Wall -W -Wmissing-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-fs.lo -MD -MP -MF .deps/dict-fs.Tpo -c dict-fs.c -o dict-fs.o >/dev/null 2>&1
mv -f .deps/dict-fs.Tpo .deps/dict-fs.Plo
--- libdict_extra.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 -mfunction-return=keep -Wall -W -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 libdict_extra.la  dict-fs.lo dict-register.lo  
libtool: link: ar cr .libs/libdict_extra.a .libs/dict-fs.o .libs/dict-register.o 
libtool: link: ranlib .libs/libdict_extra.a
libtool: link: ( cd ".libs" && rm -f "libdict_extra.la" && ln -s "../libdict_extra.la" "libdict_extra.la" )
--- test-dict-fs ---
/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 -mfunction-return=keep -Wall -W -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-dict-fs test-dict-fs.o libdict_extra.la ../lib-fs/libfs.la ../lib-test/libtest.la  ../lib-dict/libdict.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 -mfunction-return=keep -Wall -W -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 test-dict-fs test-dict-fs.o -Wl,--export-dynamic  -L/usr/local/lib ./.libs/libdict_extra.a ../lib-fs/.libs/libfs.a ../lib-test/.libs/libtest.a ../lib-dict/.libs/libdict.a ../lib/.libs/liblib.a
Making all in lib-dovecot
--- libdovecot.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 -mfunction-return=keep -Wall -W -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 libdovecot.la -rpath /usr/local/lib/dovecot  ../../src/lib-dict-extra/libdict_extra.la ../../src/lib-oauth2/liboauth2.la ../../src/lib-smtp/libsmtp.la ../../src/lib-program-client/libprogram_client.la ../../src/lib-master/libmaster.la ../../src/lib-settings/libsettings.la ../../src/lib-old-stats/libold_stats.la ../../src/lib-http/libhttp.la ../../src/lib-fs/libfs.la ../../src/lib-dict/libdict.la ../../src/lib-dns/libdns.la ../../src/lib-imap/libimap.la ../../src/lib-mail/libmail.la ../../src/lib-sasl/libsasl.la ../../src/lib-auth/libauth.la ../../src/lib-charset/libcharset.la ../../src/lib-ssl-iostream/libssl_iostream.la ../../src/lib-dcrypt/libdcrypt.la ../../src/lib-test/libtest.la ../../src/lib/liblib.la  -export-dynamic   
libtool: link: cc -shared  -fPIC -DPIC  -Wl,--whole-archive ../../src/lib-dict-extra/.libs/libdict_extra.a ../../src/lib-oauth2/.libs/liboauth2.a ../../src/lib-smtp/.libs/libsmtp.a ../../src/lib-program-client/.libs/libprogram_client.a ../../src/lib-master/.libs/libmaster.a ../../src/lib-settings/.libs/libsettings.a ../../src/lib-old-stats/.libs/libold_stats.a ../../src/lib-http/.libs/libhttp.a ../../src/lib-fs/.libs/libfs.a ../../src/lib-dict/.libs/libdict.a ../../src/lib-dns/.libs/libdns.a ../../src/lib-imap/.libs/libimap.a ../../src/lib-mail/.libs/libmail.a ../../src/lib-sasl/.libs/libsasl.a ../../src/lib-auth/.libs/libauth.a ../../src/lib-charset/.libs/libcharset.a ../../src/lib-ssl-iostream/.libs/libssl_iostream.a ../../src/lib-dcrypt/.libs/libdcrypt.a ../../src/lib-test/.libs/libtest.a ../../src/lib/.libs/liblib.a -Wl,--no-whole-archive  -L/usr/local/lib  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,libdovecot.so.0 -o .libs/libdovecot.so.0.0.0
libtool: link: (cd ".libs" && rm -f "libdovecot.so.0" && ln -s "libdovecot.so.0.0.0" "libdovecot.so.0")
libtool: link: (cd ".libs" && rm -f "libdovecot.so" && ln -s "libdovecot.so.0.0.0" "libdovecot.so")
libtool: link: (cd .libs/libdovecot.lax/libdict_extra.a && ar x "/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-dovecot/../../src/lib-dict-extra/.libs/libdict_extra.a")
libtool: link: (cd .libs/libdovecot.lax/liboauth2.a && ar x "/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-dovecot/../../src/lib-oauth2/.libs/liboauth2.a")
libtool: link: (cd .libs/libdovecot.lax/libsmtp.a && ar x "/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-dovecot/../../src/lib-smtp/.libs/libsmtp.a")
libtool: link: (cd .libs/libdovecot.lax/libprogram_client.a && ar x "/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-dovecot/../../src/lib-program-client/.libs/libprogram_client.a")
libtool: link: (cd .libs/libdovecot.lax/libmaster.a && ar x "/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-dovecot/../../src/lib-master/.libs/libmaster.a")
libtool: link: (cd .libs/libdovecot.lax/libsettings.a && ar x "/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-dovecot/../../src/lib-settings/.libs/libsettings.a")
libtool: link: (cd .libs/libdovecot.lax/libold_stats.a && ar x "/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-dovecot/../../src/lib-old-stats/.libs/libold_stats.a")
libtool: link: (cd .libs/libdovecot.lax/libhttp.a && ar x "/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-dovecot/../../src/lib-http/.libs/libhttp.a")
libtool: link: (cd .libs/libdovecot.lax/libfs.a && ar x "/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-dovecot/../../src/lib-fs/.libs/libfs.a")
libtool: link: (cd .libs/libdovecot.lax/libdict.a && ar x "/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-dovecot/../../src/lib-dict/.libs/libdict.a")
libtool: link: (cd .libs/libdovecot.lax/libdns.a && ar x "/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-dovecot/../../src/lib-dns/.libs/libdns.a")
libtool: link: (cd .libs/libdovecot.lax/libimap.a && ar x "/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-dovecot/../../src/lib-imap/.libs/libimap.a")
libtool: link: (cd .libs/libdovecot.lax/libmail.a && ar x "/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-dovecot/../../src/lib-mail/.libs/libmail.a")
libtool: link: (cd .libs/libdovecot.lax/libsasl.a && ar x "/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-dovecot/../../src/lib-sasl/.libs/libsasl.a")
libtool: link: (cd .libs/libdovecot.lax/libauth.a && ar x "/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-dovecot/../../src/lib-auth/.libs/libauth.a")
libtool: link: (cd .libs/libdovecot.lax/libcharset.a && ar x "/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-dovecot/../../src/lib-charset/.libs/libcharset.a")
libtool: link: (cd .libs/libdovecot.lax/libssl_iostream.a && ar x "/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-dovecot/../../src/lib-ssl-iostream/.libs/libssl_iostream.a")
libtool: link: (cd .libs/libdovecot.lax/libdcrypt.a && ar x "/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-dovecot/../../src/lib-dcrypt/.libs/libdcrypt.a")
libtool: link: (cd .libs/libdovecot.lax/libtest.a && ar x "/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-dovecot/../../src/lib-test/.libs/libtest.a")
libtool: link: (cd .libs/libdovecot.lax/liblib.a && ar x "/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-dovecot/../../src/lib/.libs/liblib.a")
libtool: link: ar cr .libs/libdovecot.a   .libs/libdovecot.lax/libdict_extra.a/dict-fs.o .libs/libdovecot.lax/libdict_extra.a/dict-register.o  .libs/libdovecot.lax/liboauth2.a/oauth2-jwt.o .libs/libdovecot.lax/liboauth2.a/oauth2-key-cache.o .libs/libdovecot.lax/liboauth2.a/oauth2-request.o .libs/libdovecot.lax/liboauth2.a/oauth2.o  .libs/libdovecot.lax/libsmtp.a/smtp-address.o .libs/libdovecot.lax/libsmtp.a/smtp-client-command.o .libs/libdovecot.lax/libsmtp.a/smtp-client-connection.o .libs/libdovecot.lax/libsmtp.a/smtp-client-transaction.o .libs/libdovecot.lax/libsmtp.a/smtp-client.o .libs/libdovecot.lax/libsmtp.a/smtp-command-parser.o .libs/libdovecot.lax/libsmtp.a/smtp-common.o .libs/libdovecot.lax/libsmtp.a/smtp-params.o .libs/libdovecot.lax/libsmtp.a/smtp-parser.o .libs/libdovecot.lax/libsmtp.a/smtp-reply-parser.o .libs/libdovecot.lax/libsmtp.a/smtp-reply.o .libs/libdovecot.lax/libsmtp.a/smtp-server-cmd-auth.o .libs/libdovecot.lax/libsmtp.a/smtp-server-cmd-data.o .libs/libdovecot.lax/libsmtp.a/smtp-server-cmd-helo.o .libs/libdovecot.lax/libsmtp.a/smtp-server-cmd-mail.o .libs/libdovecot.lax/libsmtp.a/smtp-server-cmd-noop.o .libs/libdovecot.lax/libsmtp.a/smtp-server-cmd-quit.o .libs/libdovecot.lax/libsmtp.a/smtp-server-cmd-rcpt.o .libs/libdovecot.lax/libsmtp.a/smtp-server-cmd-rset.o .libs/libdovecot.lax/libsmtp.a/smtp-server-cmd-starttls.o .libs/libdovecot.lax/libsmtp.a/smtp-server-cmd-vrfy.o .libs/libdovecot.lax/libsmtp.a/smtp-server-cmd-xclient.o .libs/libdovecot.lax/libsmtp.a/smtp-server-command.o .libs/libdovecot.lax/libsmtp.a/smtp-server-connection.o .libs/libdovecot.lax/libsmtp.a/smtp-server-recipient.o .libs/libdovecot.lax/libsmtp.a/smtp-server-reply.o .libs/libdovecot.lax/libsmtp.a/smtp-server-transaction.o .libs/libdovecot.lax/libsmtp.a/smtp-server.o .libs/libdovecot.lax/libsmtp.a/smtp-submit-settings.o .libs/libdovecot.lax/libsmtp.a/smtp-submit.o .libs/libdovecot.lax/libsmtp.a/smtp-syntax.o  .libs/libdovecot.lax/libprogram_client.a/program-client-local.o .libs/libdovecot.lax/libprogram_client.a/program-client-remote.o .libs/libdovecot.lax/libprogram_client.a/program-client.o  .libs/libdovecot.lax/libmaster.a/anvil-client.o .libs/libdovecot.lax/libmaster.a/ipc-client.o .libs/libdovecot.lax/libmaster.a/ipc-server.o .libs/libdovecot.lax/libmaster.a/master-auth.o .libs/libdovecot.lax/libmaster.a/master-instance.o .libs/libdovecot.lax/libmaster.a/master-login-auth.o .libs/libdovecot.lax/libmaster.a/master-login.o .libs/libdovecot.lax/libmaster.a/master-service-haproxy.o .libs/libdovecot.lax/libmaster.a/master-service-settings-cache.o .libs/libdovecot.lax/libmaster.a/master-service-settings.o .libs/libdovecot.lax/libmaster.a/master-service-ssl-settings.o .libs/libdovecot.lax/libmaster.a/master-service-ssl.o .libs/libdovecot.lax/libmaster.a/master-service.o .libs/libdovecot.lax/libmaster.a/stats-client.o .libs/libdovecot.lax/libmaster.a/syslog-util.o  .libs/libdovecot.lax/libsettings.a/settings-parser.o .libs/libdovecot.lax/libsettings.a/settings.o  .libs/libdovecot.lax/libold_stats.a/stats-connection.o .libs/libdovecot.lax/libold_stats.a/stats-parser.o .libs/libdovecot.lax/libold_stats.a/stats.o  .libs/libdovecot.lax/libhttp.a/http-auth.o .libs/libdovecot.lax/libhttp.a/http-client-connection.o .libs/libdovecot.lax/libhttp.a/http-client-host.o .libs/libdovecot.lax/libhttp.a/http-client-peer.o .libs/libdovecot.lax/libhttp.a/http-client-queue.o .libs/libdovecot.lax/libhttp.a/http-client-request.o .libs/libdovecot.lax/libhttp.a/http-client.o .libs/libdovecot.lax/libhttp.a/http-date.o .libs/libdovecot.lax/libhttp.a/http-header-parser.o .libs/libdovecot.lax/libhttp.a/http-header.o .libs/libdovecot.lax/libhttp.a/http-message-parser.o .libs/libdovecot.lax/libhttp.a/http-parser.o .libs/libdovecot.lax/libhttp.a/http-request-parser.o .libs/libdovecot.lax/libhttp.a/http-request.o .libs/libdovecot.lax/libhttp.a/http-response-parser.o .libs/libdovecot.lax/libhttp.a/http-response.o .libs/libdovecot.lax/libhttp.a/http-server-connection.o .libs/libdovecot.lax/libhttp.a/http-server-ostream.o .libs/libdovecot.lax/libhttp.a/http-server-request.o .libs/libdovecot.lax/libhttp.a/http-server-resource.o .libs/libdovecot.lax/libhttp.a/http-server-response.o .libs/libdovecot.lax/libhttp.a/http-server.o .libs/libdovecot.lax/libhttp.a/http-transfer-chunked.o .libs/libdovecot.lax/libhttp.a/http-url.o  .libs/libdovecot.lax/libfs.a/fs-api.o .libs/libdovecot.lax/libfs.a/fs-dict.o .libs/libdovecot.lax/libfs.a/fs-metawrap.o .libs/libdovecot.lax/libfs.a/fs-posix.o .libs/libdovecot.lax/libfs.a/fs-randomfail.o .libs/libdovecot.lax/libfs.a/fs-sis-common.o .libs/libdovecot.lax/libfs.a/fs-sis-queue.o .libs/libdovecot.lax/libfs.a/fs-sis.o .libs/libdovecot.lax/libfs.a/fs-test-async.o .libs/libdovecot.lax/libfs.a/fs-test.o .libs/libdovecot.lax/libfs.a/fs-wrapper.o .libs/libdovecot.lax/libfs.a/istream-fs-file.o .libs/libdovecot.lax/libfs.a/istream-fs-stats.o .libs/libdovecot.lax/libfs.a/istream-metawrap.o .libs/libdovecot.lax/libfs.a/ostream-cmp.o .libs/libdovecot.lax/libfs.a/ostream-metawrap.o  .libs/libdovecot.lax/libdict.a/dict-client.o .libs/libdovecot.lax/libdict.a/dict-fail.o .libs/libdovecot.lax/libdict.a/dict-file.o .libs/libdovecot.lax/libdict.a/dict-memcached-ascii.o .libs/libdovecot.lax/libdict.a/dict-memcached.o .libs/libdovecot.lax/libdict.a/dict-redis.o .libs/libdovecot.lax/libdict.a/dict-transaction-memory.o .libs/libdovecot.lax/libdict.a/dict.o  .libs/libdovecot.lax/libdns.a/dns-lookup.o .libs/libdovecot.lax/libdns.a/dns-util.o  .libs/libdovecot.lax/libimap.a/imap-arg.o .libs/libdovecot.lax/libimap.a/imap-base-subject.o .libs/libdovecot.lax/libimap.a/imap-bodystructure.o .libs/libdovecot.lax/libimap.a/imap-date.o .libs/libdovecot.lax/libimap.a/imap-envelope.o .libs/libdovecot.lax/libimap.a/imap-id.o .libs/libdovecot.lax/libimap.a/imap-keepalive.o .libs/libdovecot.lax/libimap.a/imap-match.o .libs/libdovecot.lax/libimap.a/imap-parser.o .libs/libdovecot.lax/libimap.a/imap-quote.o .libs/libdovecot.lax/libimap.a/imap-seqset.o .libs/libdovecot.lax/libimap.a/imap-url.o .libs/libdovecot.lax/libimap.a/imap-utf7.o .libs/libdovecot.lax/libimap.a/imap-util.o  .libs/libdovecot.lax/libmail.a/istream-attachment-connector.o .libs/libdovecot.lax/libmail.a/istream-attachment-extractor.o .libs/libdovecot.lax/libmail.a/istream-binary-converter.o .libs/libdovecot.lax/libmail.a/istream-dot.o .libs/libdovecot.lax/libmail.a/istream-header-filter.o .libs/libdovecot.lax/libmail.a/istream-nonuls.o .libs/libdovecot.lax/libmail.a/istream-qp-decoder.o .libs/libdovecot.lax/libmail.a/istream-qp-encoder.o .libs/libdovecot.lax/libmail.a/mail-html2text.o .libs/libdovecot.lax/libmail.a/mail-user-hash.o .libs/libdovecot.lax/libmail.a/mbox-from.o .libs/libdovecot.lax/libmail.a/message-address.o .libs/libdovecot.lax/libmail.a/message-binary-part.o .libs/libdovecot.lax/libmail.a/message-date.o .libs/libdovecot.lax/libmail.a/message-decoder.o .libs/libdovecot.lax/libmail.a/message-header-decode.o .libs/libdovecot.lax/libmail.a/message-header-encode.o .libs/libdovecot.lax/libmail.a/message-header-hash.o .libs/libdovecot.lax/libmail.a/message-header-parser.o .libs/libdovecot.lax/libmail.a/message-id.o .libs/libdovecot.lax/libmail.a/message-parser-from-parts.o .libs/libdovecot.lax/libmail.a/message-parser.o .libs/libdovecot.lax/libmail.a/message-part-data.o .libs/libdovecot.lax/libmail.a/message-part-serialize.o .libs/libdovecot.lax/libmail.a/message-part.o .libs/libdovecot.lax/libmail.a/message-search.o .libs/libdovecot.lax/libmail.a/message-size.o .libs/libdovecot.lax/libmail.a/message-snippet.o .libs/libdovecot.lax/libmail.a/ostream-dot.o .libs/libdovecot.lax/libmail.a/qp-decoder.o .libs/libdovecot.lax/libmail.a/qp-encoder.o .libs/libdovecot.lax/libmail.a/quoted-printable.o .libs/libdovecot.lax/libmail.a/rfc2231-parser.o .libs/libdovecot.lax/libmail.a/rfc822-parser.o  .libs/libdovecot.lax/libsasl.a/dsasl-client.o .libs/libdovecot.lax/libsasl.a/mech-external.o .libs/libdovecot.lax/libsasl.a/mech-login.o .libs/libdovecot.lax/libsasl.a/mech-oauthbearer.o .libs/libdovecot.lax/libsasl.a/mech-plain.o  .libs/libdovecot.lax/libauth.a/auth-client-connection.o .libs/libdovecot.lax/libauth.a/auth-client-request.o .libs/libdovecot.lax/libauth.a/auth-client.o .libs/libdovecot.lax/libauth.a/auth-master.o  .libs/libdovecot.lax/libcharset.a/charset-iconv.o .libs/libdovecot.lax/libcharset.a/charset-utf8-only.o .libs/libdovecot.lax/libcharset.a/charset-utf8.o  .libs/libdovecot.lax/libssl_iostream.a/iostream-ssl-context-cache.o .libs/libdovecot.lax/libssl_iostream.a/iostream-ssl-test.o .libs/libdovecot.lax/libssl_iostream.a/iostream-ssl.o  .libs/libdovecot.lax/libdcrypt.a/libdcrypt_la-dcrypt.o .libs/libdovecot.lax/libdcrypt.a/libdcrypt_la-istream-decrypt.o .libs/libdovecot.lax/libdcrypt.a/libdcrypt_la-ostream-encrypt.o  .libs/libdovecot.lax/libtest.a/fuzzer.o .libs/libdovecot.lax/libtest.a/ostream-final-trickle.o .libs/libdovecot.lax/libtest.a/test-common.o .libs/libdovecot.lax/libtest.a/test-istream.o .libs/libdovecot.lax/libtest.a/test-ostream.o .libs/libdovecot.lax/libtest.a/test-subprocess.o  .libs/libdovecot.lax/liblib.a/aqueue.o .libs/libdovecot.lax/liblib.a/array.o .libs/libdovecot.lax/liblib.a/askpass.o .libs/libdovecot.lax/liblib.a/backtrace-string.o .libs/libdovecot.lax/liblib.a/base32.o .libs/libdovecot.lax/liblib.a/base64.o .libs/libdovecot.lax/liblib.a/bits.o .libs/libdovecot.lax/liblib.a/bsearch-insert-pos.o .libs/libdovecot.lax/liblib.a/buffer-istream.o .libs/libdovecot.lax/liblib.a/buffer.o .libs/libdovecot.lax/liblib.a/child-wait.o .libs/libdovecot.lax/liblib.a/compat.o .libs/libdovecot.lax/liblib.a/connection.o .libs/libdovecot.lax/liblib.a/cpu-limit.o .libs/libdovecot.lax/liblib.a/crc32.o .libs/libdovecot.lax/liblib.a/data-stack.o .libs/libdovecot.lax/liblib.a/eacces-error.o .libs/libdovecot.lax/liblib.a/env-util.o .libs/libdovecot.lax/liblib.a/event-filter-lexer.o .libs/libdovecot.lax/liblib.a/event-filter-parser.o .libs/libdovecot.lax/liblib.a/event-filter.o .libs/libdovecot.lax/liblib.a/event-log.o .libs/libdovecot.lax/liblib.a/execv-const.o .libs/libdovecot.lax/liblib.a/failures.o .libs/libdovecot.lax/liblib.a/fd-util.o .libs/libdovecot.lax/liblib.a/fdatasync-path.o .libs/libdovecot.lax/liblib.a/fdpass.o .libs/libdovecot.lax/liblib.a/file-cache.o .libs/libdovecot.lax/liblib.a/file-copy.o .libs/libdovecot.lax/liblib.a/file-create-locked.o .libs/libdovecot.lax/liblib.a/file-dotlock.o .libs/libdovecot.lax/liblib.a/file-lock.o .libs/libdovecot.lax/liblib.a/file-set-size.o .libs/libdovecot.lax/liblib.a/guid.o .libs/libdovecot.lax/liblib.a/hash-format.o .libs/libdovecot.lax/liblib.a/hash-method.o .libs/libdovecot.lax/liblib.a/hash.o .libs/libdovecot.lax/liblib.a/hash2.o .libs/libdovecot.lax/liblib.a/hex-binary.o .libs/libdovecot.lax/liblib.a/hex-dec.o .libs/libdovecot.lax/liblib.a/hmac-cram-md5.o .libs/libdovecot.lax/liblib.a/hmac.o .libs/libdovecot.lax/liblib.a/home-expand.o .libs/libdovecot.lax/liblib.a/hook-build.o .libs/libdovecot.lax/liblib.a/hostpid.o .libs/libdovecot.lax/liblib.a/imem.o .libs/libdovecot.lax/liblib.a/ioloop-epoll.o .libs/libdovecot.lax/liblib.a/ioloop-iolist.o .libs/libdovecot.lax/liblib.a/ioloop-kqueue.o .libs/libdovecot.lax/liblib.a/ioloop-notify-fd.o .libs/libdovecot.lax/liblib.a/ioloop-notify-inotify.o .libs/libdovecot.lax/liblib.a/ioloop-notify-kqueue.o .libs/libdovecot.lax/liblib.a/ioloop-notify-none.o .libs/libdovecot.lax/liblib.a/ioloop-poll.o .libs/libdovecot.lax/liblib.a/ioloop-select.o .libs/libdovecot.lax/liblib.a/ioloop.o .libs/libdovecot.lax/liblib.a/iostream-proxy.o .libs/libdovecot.lax/liblib.a/iostream-pump.o .libs/libdovecot.lax/liblib.a/iostream-rawlog.o .libs/libdovecot.lax/liblib.a/iostream-temp.o .libs/libdovecot.lax/liblib.a/iostream.o .libs/libdovecot.lax/liblib.a/ipwd.o .libs/libdovecot.lax/liblib.a/iso8601-date.o .libs/libdovecot.lax/liblib.a/istream-base64-decoder.o .libs/libdovecot.lax/liblib.a/istream-base64-encoder.o .libs/libdovecot.lax/liblib.a/istream-callback.o .libs/libdovecot.lax/liblib.a/istream-chain.o .libs/libdovecot.lax/liblib.a/istream-concat.o .libs/libdovecot.lax/liblib.a/istream-crlf.o .libs/libdovecot.lax/liblib.a/istream-data.o .libs/libdovecot.lax/liblib.a/istream-failure-at.o .libs/libdovecot.lax/liblib.a/istream-file.o .libs/libdovecot.lax/liblib.a/istream-hash.o .libs/libdovecot.lax/liblib.a/istream-jsonstr.o .libs/libdovecot.lax/liblib.a/istream-limit.o .libs/libdovecot.lax/liblib.a/istream-multiplex.o .libs/libdovecot.lax/liblib.a/istream-rawlog.o .libs/libdovecot.lax/liblib.a/istream-seekable.o .libs/libdovecot.lax/liblib.a/istream-sized.o .libs/libdovecot.lax/liblib.a/istream-tee.o .libs/libdovecot.lax/liblib.a/istream-timeout.o .libs/libdovecot.lax/liblib.a/istream-try.o .libs/libdovecot.lax/liblib.a/istream-unix.o .libs/libdovecot.lax/liblib.a/istream.o .libs/libdovecot.lax/liblib.a/json-parser.o .libs/libdovecot.lax/liblib.a/json-tree.o .libs/libdovecot.lax/liblib.a/lib-event.o .libs/libdovecot.lax/liblib.a/lib-signals.o .libs/libdovecot.lax/liblib.a/lib.o .libs/libdovecot.lax/liblib.a/log-throttle.o .libs/libdovecot.lax/liblib.a/md4.o .libs/libdovecot.lax/liblib.a/md5.o .libs/libdovecot.lax/liblib.a/memarea.o .libs/libdovecot.lax/liblib.a/mempool-allocfree.o .libs/libdovecot.lax/liblib.a/mempool-alloconly.o .libs/libdovecot.lax/liblib.a/mempool-datastack.o .libs/libdovecot.lax/liblib.a/mempool-system.o .libs/libdovecot.lax/liblib.a/mempool-unsafe-datastack.o .libs/libdovecot.lax/liblib.a/mempool.o .libs/libdovecot.lax/liblib.a/mkdir-parents.o .libs/libdovecot.lax/liblib.a/mmap-anon.o .libs/libdovecot.lax/liblib.a/mmap-util.o .libs/libdovecot.lax/liblib.a/module-dir.o .libs/libdovecot.lax/liblib.a/mountpoint.o .libs/libdovecot.lax/liblib.a/net.o .libs/libdovecot.lax/liblib.a/nfs-workarounds.o .libs/libdovecot.lax/liblib.a/numpack.o .libs/libdovecot.lax/liblib.a/ostream-buffer.o .libs/libdovecot.lax/liblib.a/ostream-failure-at.o .libs/libdovecot.lax/liblib.a/ostream-file.o .libs/libdovecot.lax/liblib.a/ostream-hash.o .libs/libdovecot.lax/liblib.a/ostream-multiplex.o .libs/libdovecot.lax/liblib.a/ostream-null.o .libs/libdovecot.lax/liblib.a/ostream-rawlog.o .libs/libdovecot.lax/liblib.a/ostream-unix.o .libs/libdovecot.lax/liblib.a/ostream-wrapper.o .libs/libdovecot.lax/liblib.a/ostream.o .libs/libdovecot.lax/liblib.a/path-util.o .libs/libdovecot.lax/liblib.a/pkcs5.o .libs/libdovecot.lax/liblib.a/primes.o .libs/libdovecot.lax/liblib.a/printf-format-fix.o .libs/libdovecot.lax/liblib.a/priorityq.o .libs/libdovecot.lax/liblib.a/process-stat.o .libs/libdovecot.lax/liblib.a/process-title.o .libs/libdovecot.lax/liblib.a/rand.o .libs/libdovecot.lax/liblib.a/randgen.o .libs/libdovecot.lax/liblib.a/read-full.o .libs/libdovecot.lax/liblib.a/restrict-access.o .libs/libdovecot.lax/liblib.a/restrict-process-size.o .libs/libdovecot.lax/liblib.a/safe-memset.o .libs/libdovecot.lax/liblib.a/safe-mkdir.o .libs/libdovecot.lax/liblib.a/safe-mkstemp.o .libs/libdovecot.lax/liblib.a/sendfile-util.o .libs/libdovecot.lax/liblib.a/seq-range-array.o .libs/libdovecot.lax/liblib.a/seq-set-builder.o .libs/libdovecot.lax/liblib.a/sha1.o .libs/libdovecot.lax/liblib.a/sha2.o .libs/libdovecot.lax/liblib.a/sha3.o .libs/libdovecot.lax/liblib.a/sleep.o .libs/libdovecot.lax/liblib.a/sort.o .libs/libdovecot.lax/liblib.a/stats-dist.o .libs/libdovecot.lax/liblib.a/str-find.o .libs/libdovecot.lax/liblib.a/str-sanitize.o .libs/libdovecot.lax/liblib.a/str-table.o .libs/libdovecot.lax/liblib.a/str.o .libs/libdovecot.lax/liblib.a/strescape.o .libs/libdovecot.lax/liblib.a/strfuncs.o .libs/libdovecot.lax/liblib.a/strnum.o .libs/libdovecot.lax/liblib.a/time-util.o .libs/libdovecot.lax/liblib.a/unichar.o .libs/libdovecot.lax/liblib.a/unix-socket-create.o .libs/libdovecot.lax/liblib.a/unlink-directory.o .libs/libdovecot.lax/liblib.a/unlink-old-files.o .libs/libdovecot.lax/liblib.a/uri-util.o .libs/libdovecot.lax/liblib.a/utc-mktime.o .libs/libdovecot.lax/liblib.a/utc-offset.o .libs/libdovecot.lax/liblib.a/var-expand-if.o .libs/libdovecot.lax/liblib.a/var-expand.o .libs/libdovecot.lax/liblib.a/wildcard-match.o .libs/libdovecot.lax/liblib.a/write-full.o 
libtool: link: ranlib .libs/libdovecot.a
libtool: link: rm -fr .libs/libdovecot.lax
libtool: link: ( cd ".libs" && rm -f "libdovecot.la" && ln -s "../libdovecot.la" "libdovecot.la" )
Making all in lib-ldap
--- ldap-client.lo ---
--- ldap-connection.lo ---
--- ldap-connection-pool.lo ---
--- ldap-iterator.lo ---
--- ldap-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-ssl-iostream   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ldap-client.lo -MD -MP -MF .deps/ldap-client.Tpo -c -o ldap-client.lo ldap-client.c
--- ldap-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-ssl-iostream   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ldap-connection.lo -MD -MP -MF .deps/ldap-connection.Tpo -c -o ldap-connection.lo ldap-connection.c
--- ldap-connection-pool.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-ssl-iostream   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ldap-connection-pool.lo -MD -MP -MF .deps/ldap-connection-pool.Tpo -c -o ldap-connection-pool.lo ldap-connection-pool.c
--- ldap-iterator.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-ssl-iostream   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ldap-iterator.lo -MD -MP -MF .deps/ldap-iterator.Tpo -c -o ldap-iterator.lo ldap-iterator.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-ssl-iostream -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ldap-iterator.lo -MD -MP -MF .deps/ldap-iterator.Tpo -c ldap-iterator.c  -fPIC -DPIC -o .libs/ldap-iterator.o
--- ldap-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-ssl-iostream -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ldap-client.lo -MD -MP -MF .deps/ldap-client.Tpo -c ldap-client.c  -fPIC -DPIC -o .libs/ldap-client.o
--- ldap-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-ssl-iostream -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ldap-connection.lo -MD -MP -MF .deps/ldap-connection.Tpo -c ldap-connection.c  -fPIC -DPIC -o .libs/ldap-connection.o
--- ldap-connection-pool.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-ssl-iostream -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ldap-connection-pool.lo -MD -MP -MF .deps/ldap-connection-pool.Tpo -c ldap-connection-pool.c  -fPIC -DPIC -o .libs/ldap-connection-pool.o
--- ldap-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-ssl-iostream -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ldap-client.lo -MD -MP -MF .deps/ldap-client.Tpo -c ldap-client.c -o ldap-client.o >/dev/null 2>&1
--- ldap-iterator.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-ssl-iostream -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ldap-iterator.lo -MD -MP -MF .deps/ldap-iterator.Tpo -c ldap-iterator.c -o ldap-iterator.o >/dev/null 2>&1
--- ldap-connection-pool.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-ssl-iostream -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ldap-connection-pool.lo -MD -MP -MF .deps/ldap-connection-pool.Tpo -c ldap-connection-pool.c -o ldap-connection-pool.o >/dev/null 2>&1
--- ldap-client.lo ---
mv -f .deps/ldap-client.Tpo .deps/ldap-client.Plo
--- ldap-iterator.lo ---
mv -f .deps/ldap-iterator.Tpo .deps/ldap-iterator.Plo
--- ldap-search.lo ---
--- ldap-compare.lo ---
--- ldap-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-settings  -I../../src/lib-master  -I../../src/lib-ssl-iostream   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ldap-search.lo -MD -MP -MF .deps/ldap-search.Tpo -c -o ldap-search.lo ldap-search.c
--- ldap-compare.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-ssl-iostream   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ldap-compare.lo -MD -MP -MF .deps/ldap-compare.Tpo -c -o ldap-compare.lo ldap-compare.c
--- ldap-search.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-ssl-iostream -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ldap-search.lo -MD -MP -MF .deps/ldap-search.Tpo -c ldap-search.c  -fPIC -DPIC -o .libs/ldap-search.o
--- ldap-compare.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-ssl-iostream -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ldap-compare.lo -MD -MP -MF .deps/ldap-compare.Tpo -c ldap-compare.c  -fPIC -DPIC -o .libs/ldap-compare.o
--- ldap-connection-pool.lo ---
mv -f .deps/ldap-connection-pool.Tpo .deps/ldap-connection-pool.Plo
--- ldap-entry.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-ssl-iostream   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ldap-entry.lo -MD -MP -MF .deps/ldap-entry.Tpo -c -o ldap-entry.lo ldap-entry.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-ssl-iostream -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ldap-entry.lo -MD -MP -MF .deps/ldap-entry.Tpo -c ldap-entry.c  -fPIC -DPIC -o .libs/ldap-entry.o
--- ldap-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-ssl-iostream -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ldap-connection.lo -MD -MP -MF .deps/ldap-connection.Tpo -c ldap-connection.c -o ldap-connection.o >/dev/null 2>&1
--- ldap-search.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-ssl-iostream -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ldap-search.lo -MD -MP -MF .deps/ldap-search.Tpo -c ldap-search.c -o ldap-search.o >/dev/null 2>&1
--- ldap-compare.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-ssl-iostream -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ldap-compare.lo -MD -MP -MF .deps/ldap-compare.Tpo -c ldap-compare.c -o ldap-compare.o >/dev/null 2>&1
--- ldap-entry.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-ssl-iostream -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ldap-entry.lo -MD -MP -MF .deps/ldap-entry.Tpo -c ldap-entry.c -o ldap-entry.o >/dev/null 2>&1
--- ldap-compare.lo ---
mv -f .deps/ldap-compare.Tpo .deps/ldap-compare.Plo
--- ldap-entry.lo ---
mv -f .deps/ldap-entry.Tpo .deps/ldap-entry.Plo
--- ldap-search.lo ---
mv -f .deps/ldap-search.Tpo .deps/ldap-search.Plo
--- ldap-connection.lo ---
mv -f .deps/ldap-connection.Tpo .deps/ldap-connection.Plo
--- libdovecot-ldap.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 -mfunction-return=keep -Wall -W -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 libdovecot-ldap.la -rpath /usr/local/lib/dovecot ldap-client.lo ldap-connection.lo  ldap-connection-pool.lo ldap-iterator.lo ldap-search.lo  ldap-compare.lo ldap-entry.lo ../lib-dovecot/libdovecot.la -lldap -llber 
libtool: link: cc -shared  -fPIC -DPIC  .libs/ldap-client.o .libs/ldap-connection.o .libs/ldap-connection-pool.o .libs/ldap-iterator.o .libs/ldap-search.o .libs/ldap-compare.o .libs/ldap-entry.o   -Wl,-rpath -Wl,/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-dovecot/.libs -Wl,-rpath -Wl,/usr/local/lib -Wl,-rpath -Wl,/usr/local/lib/dovecot -Wl,-rpath -Wl,/usr/local/lib -L/usr/local/lib ../lib-dovecot/.libs/libdovecot.so /usr/local/lib/libldap.so /usr/local/lib/liblber.so  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -pthread -Wl,-soname -Wl,libdovecot-ldap.so.0 -o .libs/libdovecot-ldap.so.0.0.0
libtool: link: (cd ".libs" && rm -f "libdovecot-ldap.so.0" && ln -s "libdovecot-ldap.so.0.0.0" "libdovecot-ldap.so.0")
libtool: link: (cd ".libs" && rm -f "libdovecot-ldap.so" && ln -s "libdovecot-ldap.so.0.0.0" "libdovecot-ldap.so")
libtool: link: ar cr .libs/libdovecot-ldap.a  ldap-client.o ldap-connection.o ldap-connection-pool.o ldap-iterator.o ldap-search.o ldap-compare.o ldap-entry.o
libtool: link: ranlib .libs/libdovecot-ldap.a
libtool: link: ( cd ".libs" && rm -f "libdovecot-ldap.la" && ln -s "../libdovecot-ldap.la" "libdovecot-ldap.la" )
Making all in lib-fts
--- all ---
/usr/bin/make  all-am
--- test-fts-filter.o ---
--- test-fts-tokenizer.o ---
--- fts-filter.lo ---
--- fts-filter-contractions.lo ---
--- test-fts-filter.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-mail  -I../../src/lib-fts      -DUDHRDIR=\""../../src/lib-fts"\"  -DDATADIR=\"/usr/local/share/dovecot\"  -DTEST_STOPWORDS_DIR=\""../../src/lib-fts/stopwords"\"  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-fts-filter.o -MD -MP -MF .deps/test-fts-filter.Tpo -c -o test-fts-filter.o test-fts-filter.c
--- test-fts-tokenizer.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-mail  -I../../src/lib-fts      -DUDHRDIR=\""../../src/lib-fts"\"  -DDATADIR=\"/usr/local/share/dovecot\"  -DTEST_STOPWORDS_DIR=\""../../src/lib-fts/stopwords"\"  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-fts-tokenizer.o -MD -MP -MF .deps/test-fts-tokenizer.Tpo -c -o test-fts-tokenizer.o test-fts-tokenizer.c
--- fts-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-mail  -I../../src/lib-fts      -DUDHRDIR=\""../../src/lib-fts"\"  -DDATADIR=\"/usr/local/share/dovecot\"  -DTEST_STOPWORDS_DIR=\""../../src/lib-fts/stopwords"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-filter.lo -MD -MP -MF .deps/fts-filter.Tpo -c -o fts-filter.lo fts-filter.c
--- fts-filter-contractions.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-mail  -I../../src/lib-fts      -DUDHRDIR=\""../../src/lib-fts"\"  -DDATADIR=\"/usr/local/share/dovecot\"  -DTEST_STOPWORDS_DIR=\""../../src/lib-fts/stopwords"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-filter-contractions.lo -MD -MP -MF .deps/fts-filter-contractions.Tpo -c -o fts-filter-contractions.lo fts-filter-contractions.c
--- fts-filter.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-mail -I../../src/lib-fts -DUDHRDIR=\"../../src/lib-fts\" -DDATADIR=\"/usr/local/share/dovecot\" -DTEST_STOPWORDS_DIR=\"../../src/lib-fts/stopwords\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-filter.lo -MD -MP -MF .deps/fts-filter.Tpo -c fts-filter.c  -fPIC -DPIC -o .libs/fts-filter.o
--- fts-filter-contractions.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-mail -I../../src/lib-fts -DUDHRDIR=\"../../src/lib-fts\" -DDATADIR=\"/usr/local/share/dovecot\" -DTEST_STOPWORDS_DIR=\"../../src/lib-fts/stopwords\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-filter-contractions.lo -MD -MP -MF .deps/fts-filter-contractions.Tpo -c fts-filter-contractions.c  -fPIC -DPIC -o .libs/fts-filter-contractions.o
--- test-fts-filter.o ---
mv -f .deps/test-fts-filter.Tpo .deps/test-fts-filter.Po
--- fts-filter-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-mail  -I../../src/lib-fts      -DUDHRDIR=\""../../src/lib-fts"\"  -DDATADIR=\"/usr/local/share/dovecot\"  -DTEST_STOPWORDS_DIR=\""../../src/lib-fts/stopwords"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-filter-common.lo -MD -MP -MF .deps/fts-filter-common.Tpo -c -o fts-filter-common.lo fts-filter-common.c
--- fts-filter-contractions.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-mail -I../../src/lib-fts -DUDHRDIR=\"../../src/lib-fts\" -DDATADIR=\"/usr/local/share/dovecot\" -DTEST_STOPWORDS_DIR=\"../../src/lib-fts/stopwords\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-filter-contractions.lo -MD -MP -MF .deps/fts-filter-contractions.Tpo -c fts-filter-contractions.c -o fts-filter-contractions.o >/dev/null 2>&1
--- fts-filter.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-mail -I../../src/lib-fts -DUDHRDIR=\"../../src/lib-fts\" -DDATADIR=\"/usr/local/share/dovecot\" -DTEST_STOPWORDS_DIR=\"../../src/lib-fts/stopwords\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-filter.lo -MD -MP -MF .deps/fts-filter.Tpo -c fts-filter.c -o fts-filter.o >/dev/null 2>&1
--- fts-filter-common.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-mail -I../../src/lib-fts -DUDHRDIR=\"../../src/lib-fts\" -DDATADIR=\"/usr/local/share/dovecot\" -DTEST_STOPWORDS_DIR=\"../../src/lib-fts/stopwords\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-filter-common.lo -MD -MP -MF .deps/fts-filter-common.Tpo -c fts-filter-common.c  -fPIC -DPIC -o .libs/fts-filter-common.o
--- test-fts-tokenizer.o ---
mv -f .deps/test-fts-tokenizer.Tpo .deps/test-fts-tokenizer.Po
--- fts-filter-english-possessive.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-mail  -I../../src/lib-fts      -DUDHRDIR=\""../../src/lib-fts"\"  -DDATADIR=\"/usr/local/share/dovecot\"  -DTEST_STOPWORDS_DIR=\""../../src/lib-fts/stopwords"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-filter-english-possessive.lo -MD -MP -MF .deps/fts-filter-english-possessive.Tpo -c -o fts-filter-english-possessive.lo fts-filter-english-possessive.c
--- fts-filter-contractions.lo ---
mv -f .deps/fts-filter-contractions.Tpo .deps/fts-filter-contractions.Plo
--- fts-filter-lowercase.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-mail  -I../../src/lib-fts      -DUDHRDIR=\""../../src/lib-fts"\"  -DDATADIR=\"/usr/local/share/dovecot\"  -DTEST_STOPWORDS_DIR=\""../../src/lib-fts/stopwords"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-filter-lowercase.lo -MD -MP -MF .deps/fts-filter-lowercase.Tpo -c -o fts-filter-lowercase.lo fts-filter-lowercase.c
--- fts-filter-common.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-mail -I../../src/lib-fts -DUDHRDIR=\"../../src/lib-fts\" -DDATADIR=\"/usr/local/share/dovecot\" -DTEST_STOPWORDS_DIR=\"../../src/lib-fts/stopwords\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-filter-common.lo -MD -MP -MF .deps/fts-filter-common.Tpo -c fts-filter-common.c -o fts-filter-common.o >/dev/null 2>&1
--- fts-filter-english-possessive.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-mail -I../../src/lib-fts -DUDHRDIR=\"../../src/lib-fts\" -DDATADIR=\"/usr/local/share/dovecot\" -DTEST_STOPWORDS_DIR=\"../../src/lib-fts/stopwords\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-filter-english-possessive.lo -MD -MP -MF .deps/fts-filter-english-possessive.Tpo -c fts-filter-english-possessive.c  -fPIC -DPIC -o .libs/fts-filter-english-possessive.o
--- fts-filter-lowercase.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-mail -I../../src/lib-fts -DUDHRDIR=\"../../src/lib-fts\" -DDATADIR=\"/usr/local/share/dovecot\" -DTEST_STOPWORDS_DIR=\"../../src/lib-fts/stopwords\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-filter-lowercase.lo -MD -MP -MF .deps/fts-filter-lowercase.Tpo -c fts-filter-lowercase.c  -fPIC -DPIC -o .libs/fts-filter-lowercase.o
--- fts-filter.lo ---
mv -f .deps/fts-filter.Tpo .deps/fts-filter.Plo
--- fts-filter-normalizer-icu.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-mail  -I../../src/lib-fts      -DUDHRDIR=\""../../src/lib-fts"\"  -DDATADIR=\"/usr/local/share/dovecot\"  -DTEST_STOPWORDS_DIR=\""../../src/lib-fts/stopwords"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-filter-normalizer-icu.lo -MD -MP -MF .deps/fts-filter-normalizer-icu.Tpo -c -o fts-filter-normalizer-icu.lo fts-filter-normalizer-icu.c
--- fts-filter-common.lo ---
mv -f .deps/fts-filter-common.Tpo .deps/fts-filter-common.Plo
--- fts-filter-stopwords.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-mail  -I../../src/lib-fts      -DUDHRDIR=\""../../src/lib-fts"\"  -DDATADIR=\"/usr/local/share/dovecot\"  -DTEST_STOPWORDS_DIR=\""../../src/lib-fts/stopwords"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-filter-stopwords.lo -MD -MP -MF .deps/fts-filter-stopwords.Tpo -c -o fts-filter-stopwords.lo fts-filter-stopwords.c
--- fts-filter-english-possessive.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-mail -I../../src/lib-fts -DUDHRDIR=\"../../src/lib-fts\" -DDATADIR=\"/usr/local/share/dovecot\" -DTEST_STOPWORDS_DIR=\"../../src/lib-fts/stopwords\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-filter-english-possessive.lo -MD -MP -MF .deps/fts-filter-english-possessive.Tpo -c fts-filter-english-possessive.c -o fts-filter-english-possessive.o >/dev/null 2>&1
--- fts-filter-lowercase.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-mail -I../../src/lib-fts -DUDHRDIR=\"../../src/lib-fts\" -DDATADIR=\"/usr/local/share/dovecot\" -DTEST_STOPWORDS_DIR=\"../../src/lib-fts/stopwords\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-filter-lowercase.lo -MD -MP -MF .deps/fts-filter-lowercase.Tpo -c fts-filter-lowercase.c -o fts-filter-lowercase.o >/dev/null 2>&1
--- fts-filter-normalizer-icu.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-mail -I../../src/lib-fts -DUDHRDIR=\"../../src/lib-fts\" -DDATADIR=\"/usr/local/share/dovecot\" -DTEST_STOPWORDS_DIR=\"../../src/lib-fts/stopwords\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-filter-normalizer-icu.lo -MD -MP -MF .deps/fts-filter-normalizer-icu.Tpo -c fts-filter-normalizer-icu.c  -fPIC -DPIC -o .libs/fts-filter-normalizer-icu.o
--- fts-filter-stopwords.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-mail -I../../src/lib-fts -DUDHRDIR=\"../../src/lib-fts\" -DDATADIR=\"/usr/local/share/dovecot\" -DTEST_STOPWORDS_DIR=\"../../src/lib-fts/stopwords\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-filter-stopwords.lo -MD -MP -MF .deps/fts-filter-stopwords.Tpo -c fts-filter-stopwords.c  -fPIC -DPIC -o .libs/fts-filter-stopwords.o
--- fts-filter-english-possessive.lo ---
mv -f .deps/fts-filter-english-possessive.Tpo .deps/fts-filter-english-possessive.Plo
--- fts-filter-stemmer-snowball.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-mail  -I../../src/lib-fts      -DUDHRDIR=\""../../src/lib-fts"\"  -DDATADIR=\"/usr/local/share/dovecot\"  -DTEST_STOPWORDS_DIR=\""../../src/lib-fts/stopwords"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-filter-stemmer-snowball.lo -MD -MP -MF .deps/fts-filter-stemmer-snowball.Tpo -c -o fts-filter-stemmer-snowball.lo fts-filter-stemmer-snowball.c
--- fts-filter-lowercase.lo ---
mv -f .deps/fts-filter-lowercase.Tpo .deps/fts-filter-lowercase.Plo
--- fts-language.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-mail  -I../../src/lib-fts      -DUDHRDIR=\""../../src/lib-fts"\"  -DDATADIR=\"/usr/local/share/dovecot\"  -DTEST_STOPWORDS_DIR=\""../../src/lib-fts/stopwords"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-language.lo -MD -MP -MF .deps/fts-language.Tpo -c -o fts-language.lo fts-language.c
--- fts-filter-normalizer-icu.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-mail -I../../src/lib-fts -DUDHRDIR=\"../../src/lib-fts\" -DDATADIR=\"/usr/local/share/dovecot\" -DTEST_STOPWORDS_DIR=\"../../src/lib-fts/stopwords\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-filter-normalizer-icu.lo -MD -MP -MF .deps/fts-filter-normalizer-icu.Tpo -c fts-filter-normalizer-icu.c -o fts-filter-normalizer-icu.o >/dev/null 2>&1
--- fts-filter-stopwords.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-mail -I../../src/lib-fts -DUDHRDIR=\"../../src/lib-fts\" -DDATADIR=\"/usr/local/share/dovecot\" -DTEST_STOPWORDS_DIR=\"../../src/lib-fts/stopwords\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-filter-stopwords.lo -MD -MP -MF .deps/fts-filter-stopwords.Tpo -c fts-filter-stopwords.c -o fts-filter-stopwords.o >/dev/null 2>&1
--- fts-filter-stemmer-snowball.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-mail -I../../src/lib-fts -DUDHRDIR=\"../../src/lib-fts\" -DDATADIR=\"/usr/local/share/dovecot\" -DTEST_STOPWORDS_DIR=\"../../src/lib-fts/stopwords\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-filter-stemmer-snowball.lo -MD -MP -MF .deps/fts-filter-stemmer-snowball.Tpo -c fts-filter-stemmer-snowball.c  -fPIC -DPIC -o .libs/fts-filter-stemmer-snowball.o
--- fts-language.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-mail -I../../src/lib-fts -DUDHRDIR=\"../../src/lib-fts\" -DDATADIR=\"/usr/local/share/dovecot\" -DTEST_STOPWORDS_DIR=\"../../src/lib-fts/stopwords\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-language.lo -MD -MP -MF .deps/fts-language.Tpo -c fts-language.c  -fPIC -DPIC -o .libs/fts-language.o
--- fts-filter-normalizer-icu.lo ---
mv -f .deps/fts-filter-normalizer-icu.Tpo .deps/fts-filter-normalizer-icu.Plo
--- fts-library.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-mail  -I../../src/lib-fts      -DUDHRDIR=\""../../src/lib-fts"\"  -DDATADIR=\"/usr/local/share/dovecot\"  -DTEST_STOPWORDS_DIR=\""../../src/lib-fts/stopwords"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-library.lo -MD -MP -MF .deps/fts-library.Tpo -c -o fts-library.lo fts-library.c
--- fts-filter-stemmer-snowball.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-mail -I../../src/lib-fts -DUDHRDIR=\"../../src/lib-fts\" -DDATADIR=\"/usr/local/share/dovecot\" -DTEST_STOPWORDS_DIR=\"../../src/lib-fts/stopwords\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-filter-stemmer-snowball.lo -MD -MP -MF .deps/fts-filter-stemmer-snowball.Tpo -c fts-filter-stemmer-snowball.c -o fts-filter-stemmer-snowball.o >/dev/null 2>&1
--- fts-filter-stopwords.lo ---
mv -f .deps/fts-filter-stopwords.Tpo .deps/fts-filter-stopwords.Plo
--- fts-tokenizer.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-mail  -I../../src/lib-fts      -DUDHRDIR=\""../../src/lib-fts"\"  -DDATADIR=\"/usr/local/share/dovecot\"  -DTEST_STOPWORDS_DIR=\""../../src/lib-fts/stopwords"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-tokenizer.lo -MD -MP -MF .deps/fts-tokenizer.Tpo -c -o fts-tokenizer.lo fts-tokenizer.c
--- fts-library.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-mail -I../../src/lib-fts -DUDHRDIR=\"../../src/lib-fts\" -DDATADIR=\"/usr/local/share/dovecot\" -DTEST_STOPWORDS_DIR=\"../../src/lib-fts/stopwords\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-library.lo -MD -MP -MF .deps/fts-library.Tpo -c fts-library.c  -fPIC -DPIC -o .libs/fts-library.o
--- fts-filter-stemmer-snowball.lo ---
mv -f .deps/fts-filter-stemmer-snowball.Tpo .deps/fts-filter-stemmer-snowball.Plo
--- fts-tokenizer-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-mail  -I../../src/lib-fts      -DUDHRDIR=\""../../src/lib-fts"\"  -DDATADIR=\"/usr/local/share/dovecot\"  -DTEST_STOPWORDS_DIR=\""../../src/lib-fts/stopwords"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-tokenizer-address.lo -MD -MP -MF .deps/fts-tokenizer-address.Tpo -c -o fts-tokenizer-address.lo fts-tokenizer-address.c
--- fts-language.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-mail -I../../src/lib-fts -DUDHRDIR=\"../../src/lib-fts\" -DDATADIR=\"/usr/local/share/dovecot\" -DTEST_STOPWORDS_DIR=\"../../src/lib-fts/stopwords\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-language.lo -MD -MP -MF .deps/fts-language.Tpo -c fts-language.c -o fts-language.o >/dev/null 2>&1
--- fts-library.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-mail -I../../src/lib-fts -DUDHRDIR=\"../../src/lib-fts\" -DDATADIR=\"/usr/local/share/dovecot\" -DTEST_STOPWORDS_DIR=\"../../src/lib-fts/stopwords\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-library.lo -MD -MP -MF .deps/fts-library.Tpo -c fts-library.c -o fts-library.o >/dev/null 2>&1
--- fts-tokenizer.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-mail -I../../src/lib-fts -DUDHRDIR=\"../../src/lib-fts\" -DDATADIR=\"/usr/local/share/dovecot\" -DTEST_STOPWORDS_DIR=\"../../src/lib-fts/stopwords\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-tokenizer.lo -MD -MP -MF .deps/fts-tokenizer.Tpo -c fts-tokenizer.c  -fPIC -DPIC -o .libs/fts-tokenizer.o
--- fts-tokenizer-address.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-mail -I../../src/lib-fts -DUDHRDIR=\"../../src/lib-fts\" -DDATADIR=\"/usr/local/share/dovecot\" -DTEST_STOPWORDS_DIR=\"../../src/lib-fts/stopwords\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-tokenizer-address.lo -MD -MP -MF .deps/fts-tokenizer-address.Tpo -c fts-tokenizer-address.c  -fPIC -DPIC -o .libs/fts-tokenizer-address.o
--- fts-library.lo ---
mv -f .deps/fts-library.Tpo .deps/fts-library.Plo
--- fts-tokenizer-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-mail  -I../../src/lib-fts      -DUDHRDIR=\""../../src/lib-fts"\"  -DDATADIR=\"/usr/local/share/dovecot\"  -DTEST_STOPWORDS_DIR=\""../../src/lib-fts/stopwords"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-tokenizer-common.lo -MD -MP -MF .deps/fts-tokenizer-common.Tpo -c -o fts-tokenizer-common.lo fts-tokenizer-common.c
--- fts-language.lo ---
mv -f .deps/fts-language.Tpo .deps/fts-language.Plo
--- fts-tokenizer-common.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-mail -I../../src/lib-fts -DUDHRDIR=\"../../src/lib-fts\" -DDATADIR=\"/usr/local/share/dovecot\" -DTEST_STOPWORDS_DIR=\"../../src/lib-fts/stopwords\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-tokenizer-common.lo -MD -MP -MF .deps/fts-tokenizer-common.Tpo -c fts-tokenizer-common.c  -fPIC -DPIC -o .libs/fts-tokenizer-common.o
--- fts-tokenizer-generic.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-mail  -I../../src/lib-fts      -DUDHRDIR=\""../../src/lib-fts"\"  -DDATADIR=\"/usr/local/share/dovecot\"  -DTEST_STOPWORDS_DIR=\""../../src/lib-fts/stopwords"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-tokenizer-generic.lo -MD -MP -MF .deps/fts-tokenizer-generic.Tpo -c -o fts-tokenizer-generic.lo fts-tokenizer-generic.c
--- fts-tokenizer.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-mail -I../../src/lib-fts -DUDHRDIR=\"../../src/lib-fts\" -DDATADIR=\"/usr/local/share/dovecot\" -DTEST_STOPWORDS_DIR=\"../../src/lib-fts/stopwords\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-tokenizer.lo -MD -MP -MF .deps/fts-tokenizer.Tpo -c fts-tokenizer.c -o fts-tokenizer.o >/dev/null 2>&1
--- fts-tokenizer-generic.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-mail -I../../src/lib-fts -DUDHRDIR=\"../../src/lib-fts\" -DDATADIR=\"/usr/local/share/dovecot\" -DTEST_STOPWORDS_DIR=\"../../src/lib-fts/stopwords\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-tokenizer-generic.lo -MD -MP -MF .deps/fts-tokenizer-generic.Tpo -c fts-tokenizer-generic.c  -fPIC -DPIC -o .libs/fts-tokenizer-generic.o
--- fts-tokenizer-common.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-mail -I../../src/lib-fts -DUDHRDIR=\"../../src/lib-fts\" -DDATADIR=\"/usr/local/share/dovecot\" -DTEST_STOPWORDS_DIR=\"../../src/lib-fts/stopwords\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-tokenizer-common.lo -MD -MP -MF .deps/fts-tokenizer-common.Tpo -c fts-tokenizer-common.c -o fts-tokenizer-common.o >/dev/null 2>&1
--- fts-tokenizer-address.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-mail -I../../src/lib-fts -DUDHRDIR=\"../../src/lib-fts\" -DDATADIR=\"/usr/local/share/dovecot\" -DTEST_STOPWORDS_DIR=\"../../src/lib-fts/stopwords\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-tokenizer-address.lo -MD -MP -MF .deps/fts-tokenizer-address.Tpo -c fts-tokenizer-address.c -o fts-tokenizer-address.o >/dev/null 2>&1
--- fts-tokenizer.lo ---
mv -f .deps/fts-tokenizer.Tpo .deps/fts-tokenizer.Plo
--- fts-tokenizer-common.lo ---
mv -f .deps/fts-tokenizer-common.Tpo .deps/fts-tokenizer-common.Plo
--- fts-tokenizer-address.lo ---
mv -f .deps/fts-tokenizer-address.Tpo .deps/fts-tokenizer-address.Plo
--- fts-tokenizer-generic.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-mail -I../../src/lib-fts -DUDHRDIR=\"../../src/lib-fts\" -DDATADIR=\"/usr/local/share/dovecot\" -DTEST_STOPWORDS_DIR=\"../../src/lib-fts/stopwords\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-tokenizer-generic.lo -MD -MP -MF .deps/fts-tokenizer-generic.Tpo -c fts-tokenizer-generic.c -o fts-tokenizer-generic.o >/dev/null 2>&1
mv -f .deps/fts-tokenizer-generic.Tpo .deps/fts-tokenizer-generic.Plo
--- libfts.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 -mfunction-return=keep -Wall -W -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 libfts.la  fts-filter.lo fts-filter-contractions.lo  fts-filter-common.lo fts-filter-english-possessive.lo  fts-filter-lowercase.lo fts-filter-normalizer-icu.lo  fts-filter-stopwords.lo fts-filter-stemmer-snowball.lo  fts-language.lo fts-library.lo fts-tokenizer.lo  fts-tokenizer-address.lo fts-tokenizer-common.lo  fts-tokenizer-generic.lo       
libtool: link: ar cr .libs/libfts.a .libs/fts-filter.o .libs/fts-filter-contractions.o .libs/fts-filter-common.o .libs/fts-filter-english-possessive.o .libs/fts-filter-lowercase.o .libs/fts-filter-normalizer-icu.o .libs/fts-filter-stopwords.o .libs/fts-filter-stemmer-snowball.o .libs/fts-language.o .libs/fts-library.o .libs/fts-tokenizer.o .libs/fts-tokenizer-address.o .libs/fts-tokenizer-common.o .libs/fts-tokenizer-generic.o 
libtool: link: ranlib .libs/libfts.a
libtool: link: ( cd ".libs" && rm -f "libfts.la" && ln -s "../libfts.la" "libfts.la" )
--- libdovecot-fts.la ---
--- test-fts-filter ---
--- test-fts-tokenizer ---
--- libdovecot-fts.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 -mfunction-return=keep -Wall -W -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 libdovecot-fts.la -rpath /usr/local/lib/dovecot  libfts.la ../lib-dovecot/libdovecot.la 
--- test-fts-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 -mfunction-return=keep -Wall -W -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-fts-filter test-fts-filter.o libfts.la ../lib-test/libtest.la  ../lib/liblib.la 
--- test-fts-tokenizer ---
/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 -mfunction-return=keep -Wall -W -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-fts-tokenizer test-fts-tokenizer.o fts-tokenizer.lo fts-tokenizer-generic.lo fts-tokenizer-address.lo fts-tokenizer-common.lo ../lib-mail/libmail.la ../lib-test/libtest.la  ../lib/liblib.la 
--- libdovecot-fts.la ---
libtool: link: cc -shared  -fPIC -DPIC  -Wl,--whole-archive ./.libs/libfts.a -Wl,--no-whole-archive  -Wl,-rpath -Wl,/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-dovecot/.libs -Wl,-rpath -Wl,/usr/local/lib/dovecot -L/usr/local/lib ../lib-dovecot/.libs/libdovecot.so  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,libdovecot-fts.so.0 -o .libs/libdovecot-fts.so.0.0.0
libtool: link: (cd ".libs" && rm -f "libdovecot-fts.so.0" && ln -s "libdovecot-fts.so.0.0.0" "libdovecot-fts.so.0")
libtool: link: (cd ".libs" && rm -f "libdovecot-fts.so" && ln -s "libdovecot-fts.so.0.0.0" "libdovecot-fts.so")
--- test-fts-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 -mfunction-return=keep -Wall -W -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-fts-filter test-fts-filter.o  -L/usr/local/lib ./.libs/libfts.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a
--- test-fts-tokenizer ---
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 -mfunction-return=keep -Wall -W -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-fts-tokenizer test-fts-tokenizer.o .libs/fts-tokenizer.o .libs/fts-tokenizer-generic.o .libs/fts-tokenizer-address.o .libs/fts-tokenizer-common.o  -L/usr/local/lib ../lib-mail/.libs/libmail.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a 
--- libdovecot-fts.la ---
libtool: link: (cd .libs/libdovecot-fts.lax/libfts.a && ar x "/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-fts/./.libs/libfts.a")
libtool: link: ar cr .libs/libdovecot-fts.a   .libs/libdovecot-fts.lax/libfts.a/fts-filter-common.o .libs/libdovecot-fts.lax/libfts.a/fts-filter-contractions.o .libs/libdovecot-fts.lax/libfts.a/fts-filter-english-possessive.o .libs/libdovecot-fts.lax/libfts.a/fts-filter-lowercase.o .libs/libdovecot-fts.lax/libfts.a/fts-filter-normalizer-icu.o .libs/libdovecot-fts.lax/libfts.a/fts-filter-stemmer-snowball.o .libs/libdovecot-fts.lax/libfts.a/fts-filter-stopwords.o .libs/libdovecot-fts.lax/libfts.a/fts-filter.o .libs/libdovecot-fts.lax/libfts.a/fts-language.o .libs/libdovecot-fts.lax/libfts.a/fts-library.o .libs/libdovecot-fts.lax/libfts.a/fts-tokenizer-address.o .libs/libdovecot-fts.lax/libfts.a/fts-tokenizer-common.o .libs/libdovecot-fts.lax/libfts.a/fts-tokenizer-generic.o .libs/libdovecot-fts.lax/libfts.a/fts-tokenizer.o 
libtool: link: ranlib .libs/libdovecot-fts.a
libtool: link: rm -fr .libs/libdovecot-fts.lax
libtool: link: ( cd ".libs" && rm -f "libdovecot-fts.la" && ln -s "../libdovecot-fts.la" "libdovecot-fts.la" )
Making all in lib-imap-client
--- test-imapc-client.o ---
--- imapc-client.lo ---
--- imapc-connection.lo ---
--- imapc-msgmap.lo ---
--- test-imapc-client.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dns  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-mail  -I../../src/lib-imap  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-imapc-client.o -MD -MP -MF .deps/test-imapc-client.Tpo -c -o test-imapc-client.o test-imapc-client.c
--- imapc-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-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-mail  -I../../src/lib-imap -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imapc-client.lo -MD -MP -MF .deps/imapc-client.Tpo -c -o imapc-client.lo imapc-client.c
--- imapc-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-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-mail  -I../../src/lib-imap -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imapc-connection.lo -MD -MP -MF .deps/imapc-connection.Tpo -c -o imapc-connection.lo imapc-connection.c
--- imapc-msgmap.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-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-mail  -I../../src/lib-imap -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imapc-msgmap.lo -MD -MP -MF .deps/imapc-msgmap.Tpo -c -o imapc-msgmap.lo imapc-msgmap.c
--- imapc-client.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-mail -I../../src/lib-imap -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imapc-client.lo -MD -MP -MF .deps/imapc-client.Tpo -c imapc-client.c  -fPIC -DPIC -o .libs/imapc-client.o
--- imapc-connection.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-mail -I../../src/lib-imap -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imapc-connection.lo -MD -MP -MF .deps/imapc-connection.Tpo -c imapc-connection.c  -fPIC -DPIC -o .libs/imapc-connection.o
--- imapc-msgmap.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-mail -I../../src/lib-imap -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imapc-msgmap.lo -MD -MP -MF .deps/imapc-msgmap.Tpo -c imapc-msgmap.c  -fPIC -DPIC -o .libs/imapc-msgmap.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-mail -I../../src/lib-imap -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imapc-msgmap.lo -MD -MP -MF .deps/imapc-msgmap.Tpo -c imapc-msgmap.c -o imapc-msgmap.o >/dev/null 2>&1
mv -f .deps/imapc-msgmap.Tpo .deps/imapc-msgmap.Plo
--- test-imapc-client.o ---
mv -f .deps/test-imapc-client.Tpo .deps/test-imapc-client.Po
--- imapc-client.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-mail -I../../src/lib-imap -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imapc-client.lo -MD -MP -MF .deps/imapc-client.Tpo -c imapc-client.c -o imapc-client.o >/dev/null 2>&1
mv -f .deps/imapc-client.Tpo .deps/imapc-client.Plo
--- imapc-connection.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-mail -I../../src/lib-imap -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imapc-connection.lo -MD -MP -MF .deps/imapc-connection.Tpo -c imapc-connection.c -o imapc-connection.o >/dev/null 2>&1
mv -f .deps/imapc-connection.Tpo .deps/imapc-connection.Plo
--- libimap_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 -mfunction-return=keep -Wall -W -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 libimap_client.la  imapc-client.lo imapc-connection.lo  imapc-msgmap.lo  
libtool: link: ar cr .libs/libimap_client.a .libs/imapc-client.o .libs/imapc-connection.o .libs/imapc-msgmap.o 
libtool: link: ranlib .libs/libimap_client.a
libtool: link: ( cd ".libs" && rm -f "libimap_client.la" && ln -s "../libimap_client.la" "libimap_client.la" )
--- test-imapc-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 -mfunction-return=keep -Wall -W -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-imapc-client test-imapc-client.o libimap_client.la  ../lib-ssl-iostream/libssl_iostream.la  ../lib-sasl/libsasl.la  ../lib-imap/libimap.la  ../lib-mail/libmail.la  ../lib-charset/libcharset.la  ../lib-dns/libdns.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 -mfunction-return=keep -Wall -W -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-imapc-client test-imapc-client.o -Wl,--export-dynamic  -L/usr/local/lib ./.libs/libimap_client.a ../lib-ssl-iostream/.libs/libssl_iostream.a ../lib-sasl/.libs/libsasl.a ../lib-imap/.libs/libimap.a ../lib-mail/.libs/libmail.a ../lib-charset/.libs/libcharset.a ../lib-dns/.libs/libdns.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a
Making all in lib-imap-urlauth
--- imap-urlauth.lo ---
--- imap-urlauth-fetch.lo ---
--- imap-urlauth-backend.lo ---
--- imap-urlauth-connection.lo ---
--- imap-urlauth.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-dict  -I../../src/lib-mail  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap  -I../../src/lib-imap-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-urlauth.lo -MD -MP -MF .deps/imap-urlauth.Tpo -c -o imap-urlauth.lo imap-urlauth.c
--- imap-urlauth-fetch.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-dict  -I../../src/lib-mail  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap  -I../../src/lib-imap-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-urlauth-fetch.lo -MD -MP -MF .deps/imap-urlauth-fetch.Tpo -c -o imap-urlauth-fetch.lo imap-urlauth-fetch.c
--- imap-urlauth-backend.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-dict  -I../../src/lib-mail  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap  -I../../src/lib-imap-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-urlauth-backend.lo -MD -MP -MF .deps/imap-urlauth-backend.Tpo -c -o imap-urlauth-backend.lo imap-urlauth-backend.c
--- imap-urlauth-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-charset  -I../../src/lib-dict  -I../../src/lib-mail  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap  -I../../src/lib-imap-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-urlauth-connection.lo -MD -MP -MF .deps/imap-urlauth-connection.Tpo -c -o imap-urlauth-connection.lo imap-urlauth-connection.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- imap-urlauth.lo ---
../../src/lib-dict -I../../src/lib-mail -I../../src/lib-index -I../../src/lib-storage -I../../src/lib-imap -I../../src/lib-imap-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-urlauth.lo -MD -MP -MF .deps/imap-urlauth.Tpo -c imap-urlauth.c  -fPIC -DPIC -o .libs/imap-urlauth.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- imap-urlauth-fetch.lo ---
../../src/lib-dict -I../../src/lib-mail -I../../src/lib-index -I../../src/lib-storage -I../../src/lib-imap -I../../src/lib-imap-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-urlauth-fetch.lo -MD -MP -MF .deps/imap-urlauth-fetch.Tpo -c imap-urlauth-fetch.c  -fPIC -DPIC -o .libs/imap-urlauth-fetch.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- imap-urlauth-backend.lo ---
../../src/lib-dict -I../../src/lib-mail -I../../src/lib-index -I../../src/lib-storage -I../../src/lib-imap -I../../src/lib-imap-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-urlauth-backend.lo -MD -MP -MF .deps/imap-urlauth-backend.Tpo -c imap-urlauth-backend.c  -fPIC -DPIC -o .libs/imap-urlauth-backend.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- imap-urlauth-connection.lo ---
../../src/lib-dict -I../../src/lib-mail -I../../src/lib-index -I../../src/lib-storage -I../../src/lib-imap -I../../src/lib-imap-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-urlauth-connection.lo -MD -MP -MF .deps/imap-urlauth-connection.Tpo -c imap-urlauth-connection.c  -fPIC -DPIC -o .libs/imap-urlauth-connection.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- imap-urlauth-backend.lo ---
../../src/lib-dict -I../../src/lib-mail -I../../src/lib-index -I../../src/lib-storage -I../../src/lib-imap -I../../src/lib-imap-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-urlauth-backend.lo -MD -MP -MF .deps/imap-urlauth-backend.Tpo -c imap-urlauth-backend.c -o imap-urlauth-backend.o >/dev/null 2>&1
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- imap-urlauth.lo ---
../../src/lib-dict -I../../src/lib-mail -I../../src/lib-index -I../../src/lib-storage -I../../src/lib-imap -I../../src/lib-imap-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-urlauth.lo -MD -MP -MF .deps/imap-urlauth.Tpo -c imap-urlauth.c -o imap-urlauth.o >/dev/null 2>&1
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- imap-urlauth-fetch.lo ---
../../src/lib-dict -I../../src/lib-mail -I../../src/lib-index -I../../src/lib-storage -I../../src/lib-imap -I../../src/lib-imap-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-urlauth-fetch.lo -MD -MP -MF .deps/imap-urlauth-fetch.Tpo -c imap-urlauth-fetch.c -o imap-urlauth-fetch.o >/dev/null 2>&1
--- imap-urlauth-backend.lo ---
mv -f .deps/imap-urlauth-backend.Tpo .deps/imap-urlauth-backend.Plo
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-char--- imap-urlauth-connection.lo ---
../../src/lib-dict -I../../src/lib-mail -I../../src/lib-index -I../../src/lib-storage -I../../src/lib-imap -I../../src/lib-imap-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-urlauth-connection.lo -MD -MP -MF .deps/imap-urlauth-connection.Tpo -c imap-urlauth-connection.c -o imap-urlauth-connection.o >/dev/null 2>&1
--- imap-urlauth.lo ---
mv -f .deps/imap-urlauth.Tpo .deps/imap-urlauth.Plo
--- imap-urlauth-fetch.lo ---
mv -f .deps/imap-urlauth-fetch.Tpo .deps/imap-urlauth-fetch.Plo
--- imap-urlauth-connection.lo ---
mv -f .deps/imap-urlauth-connection.Tpo .deps/imap-urlauth-connection.Plo
--- libimap-urlauth.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 -mfunction-return=keep -Wall -W -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 libimap-urlauth.la  imap-urlauth.lo imap-urlauth-fetch.lo  imap-urlauth-backend.lo imap-urlauth-connection.lo  
libtool: link: ar cr .libs/libimap-urlauth.a .libs/imap-urlauth.o .libs/imap-urlauth-fetch.o .libs/imap-urlauth-backend.o .libs/imap-urlauth-connection.o 
libtool: link: ranlib .libs/libimap-urlauth.a
libtool: link: ( cd ".libs" && rm -f "libimap-urlauth.la" && ln -s "../libimap-urlauth.la" "libimap-urlauth.la" )
Making all in lib-compression
--- test-compression.o ---
--- bench-compression.o ---
--- compression.lo ---
--- istream-decompress.lo ---
--- test-compression.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I/usr/local/include  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-compression.o -MD -MP -MF .deps/test-compression.Tpo -c -o test-compression.o test-compression.c
--- bench-compression.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I/usr/local/include  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT bench-compression.o -MD -MP -MF .deps/bench-compression.Tpo -c -o bench-compression.o bench-compression.c
--- compression.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 -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT compression.lo -MD -MP -MF .deps/compression.Tpo -c -o compression.lo compression.c
--- istream-decompress.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 -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-decompress.lo -MD -MP -MF .deps/istream-decompress.Tpo -c -o istream-decompress.lo istream-decompress.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I/usr/local/include -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-decompress.lo -MD -MP -MF .deps/istream-decompress.Tpo -c istream-decompress.c  -fPIC -DPIC -o .libs/istream-decompress.o
--- compression.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I/usr/local/include -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT compression.lo -MD -MP -MF .deps/compression.Tpo -c compression.c  -fPIC -DPIC -o .libs/compression.o
--- bench-compression.o ---
mv -f .deps/bench-compression.Tpo .deps/bench-compression.Po
--- istream-lzma.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 -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-lzma.lo -MD -MP -MF .deps/istream-lzma.Tpo -c -o istream-lzma.lo istream-lzma.c
--- compression.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I/usr/local/include -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT compression.lo -MD -MP -MF .deps/compression.Tpo -c compression.c -o compression.o >/dev/null 2>&1
--- istream-decompress.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I/usr/local/include -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-decompress.lo -MD -MP -MF .deps/istream-decompress.Tpo -c istream-decompress.c -o istream-decompress.o >/dev/null 2>&1
--- istream-lzma.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I/usr/local/include -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-lzma.lo -MD -MP -MF .deps/istream-lzma.Tpo -c istream-lzma.c  -fPIC -DPIC -o .libs/istream-lzma.o
--- compression.lo ---
mv -f .deps/compression.Tpo .deps/compression.Plo
--- istream-lzma.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I/usr/local/include -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-lzma.lo -MD -MP -MF .deps/istream-lzma.Tpo -c istream-lzma.c -o istream-lzma.o >/dev/null 2>&1
--- istream-lz4.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 -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-lz4.lo -MD -MP -MF .deps/istream-lz4.Tpo -c -o istream-lz4.lo istream-lz4.c
--- istream-decompress.lo ---
mv -f .deps/istream-decompress.Tpo .deps/istream-decompress.Plo
--- istream-zlib.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 -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-zlib.lo -MD -MP -MF .deps/istream-zlib.Tpo -c -o istream-zlib.lo istream-zlib.c
--- istream-lz4.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I/usr/local/include -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-lz4.lo -MD -MP -MF .deps/istream-lz4.Tpo -c istream-lz4.c  -fPIC -DPIC -o .libs/istream-lz4.o
--- istream-zlib.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I/usr/local/include -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-zlib.lo -MD -MP -MF .deps/istream-zlib.Tpo -c istream-zlib.c  -fPIC -DPIC -o .libs/istream-zlib.o
--- istream-lz4.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I/usr/local/include -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-lz4.lo -MD -MP -MF .deps/istream-lz4.Tpo -c istream-lz4.c -o istream-lz4.o >/dev/null 2>&1
--- istream-lzma.lo ---
mv -f .deps/istream-lzma.Tpo .deps/istream-lzma.Plo
--- istream-bzlib.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 -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-bzlib.lo -MD -MP -MF .deps/istream-bzlib.Tpo -c -o istream-bzlib.lo istream-bzlib.c
--- istream-lz4.lo ---
mv -f .deps/istream-lz4.Tpo .deps/istream-lz4.Plo
--- istream-zstd.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 -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-zstd.lo -MD -MP -MF .deps/istream-zstd.Tpo -c -o istream-zstd.lo istream-zstd.c
--- istream-bzlib.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I/usr/local/include -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-bzlib.lo -MD -MP -MF .deps/istream-bzlib.Tpo -c istream-bzlib.c  -fPIC -DPIC -o .libs/istream-bzlib.o
--- istream-zstd.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I/usr/local/include -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-zstd.lo -MD -MP -MF .deps/istream-zstd.Tpo -c istream-zstd.c  -fPIC -DPIC -o .libs/istream-zstd.o
--- test-compression.o ---
mv -f .deps/test-compression.Tpo .deps/test-compression.Po
--- ostream-lz4.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 -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-lz4.lo -MD -MP -MF .deps/ostream-lz4.Tpo -c -o ostream-lz4.lo ostream-lz4.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I/usr/local/include -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-lz4.lo -MD -MP -MF .deps/ostream-lz4.Tpo -c ostream-lz4.c  -fPIC -DPIC -o .libs/ostream-lz4.o
--- istream-bzlib.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I/usr/local/include -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-bzlib.lo -MD -MP -MF .deps/istream-bzlib.Tpo -c istream-bzlib.c -o istream-bzlib.o >/dev/null 2>&1
--- istream-zlib.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I/usr/local/include -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-zlib.lo -MD -MP -MF .deps/istream-zlib.Tpo -c istream-zlib.c -o istream-zlib.o >/dev/null 2>&1
--- ostream-lz4.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I/usr/local/include -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-lz4.lo -MD -MP -MF .deps/ostream-lz4.Tpo -c ostream-lz4.c -o ostream-lz4.o >/dev/null 2>&1
--- istream-zstd.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I/usr/local/include -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-zstd.lo -MD -MP -MF .deps/istream-zstd.Tpo -c istream-zstd.c -o istream-zstd.o >/dev/null 2>&1
--- ostream-lz4.lo ---
mv -f .deps/ostream-lz4.Tpo .deps/ostream-lz4.Plo
--- ostream-zlib.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 -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-zlib.lo -MD -MP -MF .deps/ostream-zlib.Tpo -c -o ostream-zlib.lo ostream-zlib.c
--- istream-bzlib.lo ---
mv -f .deps/istream-bzlib.Tpo .deps/istream-bzlib.Plo
--- ostream-bzlib.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 -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-bzlib.lo -MD -MP -MF .deps/ostream-bzlib.Tpo -c -o ostream-bzlib.lo ostream-bzlib.c
--- ostream-zlib.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I/usr/local/include -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-zlib.lo -MD -MP -MF .deps/ostream-zlib.Tpo -c ostream-zlib.c  -fPIC -DPIC -o .libs/ostream-zlib.o
--- ostream-bzlib.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I/usr/local/include -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-bzlib.lo -MD -MP -MF .deps/ostream-bzlib.Tpo -c ostream-bzlib.c  -fPIC -DPIC -o .libs/ostream-bzlib.o
--- istream-zstd.lo ---
mv -f .deps/istream-zstd.Tpo .deps/istream-zstd.Plo
--- ostream-zstd.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 -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-zstd.lo -MD -MP -MF .deps/ostream-zstd.Tpo -c -o ostream-zstd.lo ostream-zstd.c
--- istream-zlib.lo ---
mv -f .deps/istream-zlib.Tpo .deps/istream-zlib.Plo
--- ostream-zstd.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I/usr/local/include -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-zstd.lo -MD -MP -MF .deps/ostream-zstd.Tpo -c ostream-zstd.c  -fPIC -DPIC -o .libs/ostream-zstd.o
--- ostream-bzlib.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I/usr/local/include -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-bzlib.lo -MD -MP -MF .deps/ostream-bzlib.Tpo -c ostream-bzlib.c -o ostream-bzlib.o >/dev/null 2>&1
--- ostream-zlib.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I/usr/local/include -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-zlib.lo -MD -MP -MF .deps/ostream-zlib.Tpo -c ostream-zlib.c -o ostream-zlib.o >/dev/null 2>&1
--- ostream-zstd.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I/usr/local/include -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-zstd.lo -MD -MP -MF .deps/ostream-zstd.Tpo -c ostream-zstd.c -o ostream-zstd.o >/dev/null 2>&1
--- ostream-bzlib.lo ---
mv -f .deps/ostream-bzlib.Tpo .deps/ostream-bzlib.Plo
--- ostream-zlib.lo ---
mv -f .deps/ostream-zlib.Tpo .deps/ostream-zlib.Plo
--- ostream-zstd.lo ---
mv -f .deps/ostream-zstd.Tpo .deps/ostream-zstd.Plo
--- libcompression.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 -mfunction-return=keep -Wall -W -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 libcompression.la  compression.lo istream-decompress.lo  istream-lzma.lo istream-lz4.lo istream-zlib.lo  istream-bzlib.lo istream-zstd.lo ostream-lz4.lo  ostream-zlib.lo ostream-bzlib.lo ostream-zstd.lo -lz -lbz2 -llzma -L/usr/local/lib -lzstd 
libtool: link: ar cr .libs/libcompression.a .libs/compression.o .libs/istream-decompress.o .libs/istream-lzma.o .libs/istream-lz4.o .libs/istream-zlib.o .libs/istream-bzlib.o .libs/istream-zstd.o .libs/ostream-lz4.o .libs/ostream-zlib.o .libs/ostream-bzlib.o .libs/ostream-zstd.o 
libtool: link: ranlib .libs/libcompression.a
libtool: link: ( cd ".libs" && rm -f "libcompression.la" && ln -s "../libcompression.la" "libcompression.la" )
--- libdovecot-compression.la ---
--- bench-compression ---
--- test-compression ---
--- libdovecot-compression.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 -mfunction-return=keep -Wall -W -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 libdovecot-compression.la -rpath /usr/local/lib/dovecot  libcompression.la ../lib-dovecot/libdovecot.la -lz -lbz2 -llzma -L/usr/local/lib -lzstd 
--- bench-compression ---
/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 -mfunction-return=keep -Wall -W -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 bench-compression bench-compression.o libcompression.la  ../lib-test/libtest.la  ../lib/liblib.la 
--- test-compression ---
/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 -mfunction-return=keep -Wall -W -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-compression test-compression.o libcompression.la  ../lib-test/libtest.la  ../lib/liblib.la 
--- libdovecot-compression.la ---
libtool: link: cc -shared  -fPIC -DPIC  -Wl,--whole-archive ./.libs/libcompression.a -Wl,--no-whole-archive  -Wl,-rpath -Wl,/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-dovecot/.libs -Wl,-rpath -Wl,/usr/local/lib/dovecot -L/usr/local/lib ../lib-dovecot/.libs/libdovecot.so -lz -lbz2 -llzma -lzstd  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,libdovecot-compression.so.0 -o .libs/libdovecot-compression.so.0.0.0
libtool: link: (cd ".libs" && rm -f "libdovecot-compression.so.0" && ln -s "libdovecot-compression.so.0.0.0" "libdovecot-compression.so.0")
libtool: link: (cd ".libs" && rm -f "libdovecot-compression.so" && ln -s "libdovecot-compression.so.0.0.0" "libdovecot-compression.so")
--- bench-compression ---
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 -mfunction-return=keep -Wall -W -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 bench-compression bench-compression.o  -L/usr/local/lib ./.libs/libcompression.a -lz -lbz2 -llzma -lzstd ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a
--- test-compression ---
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 -mfunction-return=keep -Wall -W -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-compression test-compression.o  -L/usr/local/lib ./.libs/libcompression.a -lz -lbz2 -llzma -lzstd ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a
--- libdovecot-compression.la ---
libtool: link: (cd .libs/libdovecot-compression.lax/libcompression.a && ar x "/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-compression/./.libs/libcompression.a")
libtool: link: ar cr .libs/libdovecot-compression.a   .libs/libdovecot-compression.lax/libcompression.a/compression.o .libs/libdovecot-compression.lax/libcompression.a/istream-bzlib.o .libs/libdovecot-compression.lax/libcompression.a/istream-decompress.o .libs/libdovecot-compression.lax/libcompression.a/istream-lz4.o .libs/libdovecot-compression.lax/libcompression.a/istream-lzma.o .libs/libdovecot-compression.lax/libcompression.a/istream-zlib.o .libs/libdovecot-compression.lax/libcompression.a/istream-zstd.o .libs/libdovecot-compression.lax/libcompression.a/ostream-bzlib.o .libs/libdovecot-compression.lax/libcompression.a/ostream-lz4.o .libs/libdovecot-compression.lax/libcompression.a/ostream-zlib.o .libs/libdovecot-compression.lax/libcompression.a/ostream-zstd.o 
libtool: link: ranlib .libs/libdovecot-compression.a
libtool: link: rm -fr .libs/libdovecot-compression.lax
libtool: link: ( cd ".libs" && rm -f "libdovecot-compression.la" && ln -s "../libdovecot-compression.la" "libdovecot-compression.la" )
Making all in lib-index
--- test-mail-cache-common.o ---
--- test-mail-cache.o ---
--- mail-index-util.lo ---
--- test-mail-cache-fields.o ---
--- test-mail-cache-common.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -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 -mfunction-return=keep -Wall -W -Wmissing-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-cache-common.o -MD -MP -MF .deps/test-mail-cache-common.Tpo -c -o test-mail-cache-common.o test-mail-cache-common.c
--- test-mail-cache.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -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 -mfunction-return=keep -Wall -W -Wmissing-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-cache.o -MD -MP -MF .deps/test-mail-cache.Tpo -c -o test-mail-cache.o test-mail-cache.c
--- mail-index-util.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-util.lo -MD -MP -MF .deps/mail-index-util.Tpo -c -o mail-index-util.lo mail-index-util.c
--- test-mail-cache-fields.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -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 -mfunction-return=keep -Wall -W -Wmissing-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-cache-fields.o -MD -MP -MF .deps/test-mail-cache-fields.Tpo -c -o test-mail-cache-fields.o test-mail-cache-fields.c
--- mail-index-util.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-util.lo -MD -MP -MF .deps/mail-index-util.Tpo -c mail-index-util.c  -fPIC -DPIC -o .libs/mail-index-util.o
--- test-mail-cache-fields.o ---
mv -f .deps/test-mail-cache-fields.Tpo .deps/test-mail-cache-fields.Po
--- test-mail-cache-purge.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -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 -mfunction-return=keep -Wall -W -Wmissing-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-cache-purge.o -MD -MP -MF .deps/test-mail-cache-purge.Tpo -c -o test-mail-cache-purge.o test-mail-cache-purge.c
--- test-mail-cache-common.o ---
mv -f .deps/test-mail-cache-common.Tpo .deps/test-mail-cache-common.Po
--- test-mail-index.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -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 -mfunction-return=keep -Wall -W -Wmissing-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-index.o -MD -MP -MF .deps/test-mail-index.Tpo -c -o test-mail-index.o test-mail-index.c
--- mail-index-util.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-util.lo -MD -MP -MF .deps/mail-index-util.Tpo -c mail-index-util.c -o mail-index-util.o >/dev/null 2>&1
--- test-mail-index.o ---
mv -f .deps/test-mail-index.Tpo .deps/test-mail-index.Po
--- test-mail-index-map.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-map.o -MD -MP -MF .deps/test-mail-index-map.Tpo -c -o test-mail-index-map.o test-mail-index-map.c
--- mail-index-util.lo ---
mv -f .deps/mail-index-util.Tpo .deps/mail-index-util.Plo
--- test-mail-index-modseq.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-modseq.o -MD -MP -MF .deps/test-mail-index-modseq.Tpo -c -o test-mail-index-modseq.o test-mail-index-modseq.c
--- test-mail-cache.o ---
mv -f .deps/test-mail-cache.Tpo .deps/test-mail-cache.Po
--- test-mail-index-sync-ext.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-sync-ext.o -MD -MP -MF .deps/test-mail-index-sync-ext.Tpo -c -o test-mail-index-sync-ext.o test-mail-index-sync-ext.c
--- test-mail-index-map.o ---
mv -f .deps/test-mail-index-map.Tpo .deps/test-mail-index-map.Po
--- test-mail-index-transaction-finish.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-transaction-finish.o -MD -MP -MF .deps/test-mail-index-transaction-finish.Tpo -c -o test-mail-index-transaction-finish.o test-mail-index-transaction-finish.c
--- test-mail-index-modseq.o ---
mv -f .deps/test-mail-index-modseq.Tpo .deps/test-mail-index-modseq.Po
--- test-mail-index-transaction-update.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-transaction-update.o -MD -MP -MF .deps/test-mail-index-transaction-update.Tpo -c -o test-mail-index-transaction-update.o test-mail-index-transaction-update.c
--- test-mail-index-sync-ext.o ---
mv -f .deps/test-mail-index-sync-ext.Tpo .deps/test-mail-index-sync-ext.Po
--- test-mail-index-write.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-write.o -MD -MP -MF .deps/test-mail-index-write.Tpo -c -o test-mail-index-write.o test-mail-index-write.c
--- test-mail-cache-purge.o ---
mv -f .deps/test-mail-cache-purge.Tpo .deps/test-mail-cache-purge.Po
--- test-mail-transaction-log-append.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -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 -mfunction-return=keep -Wall -W -Wmissing-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-transaction-log-append.o -MD -MP -MF .deps/test-mail-transaction-log-append.Tpo -c -o test-mail-transaction-log-append.o test-mail-transaction-log-append.c
--- test-mail-index-write.o ---
mv -f .deps/test-mail-index-write.Tpo .deps/test-mail-index-write.Po
--- test-mail-transaction-log-file.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -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 -mfunction-return=keep -Wall -W -Wmissing-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-transaction-log-file.o -MD -MP -MF .deps/test-mail-transaction-log-file.Tpo -c -o test-mail-transaction-log-file.o test-mail-transaction-log-file.c
--- test-mail-index-transaction-finish.o ---
mv -f .deps/test-mail-index-transaction-finish.Tpo .deps/test-mail-index-transaction-finish.Po
--- test-mail-transaction-log-view.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -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 -mfunction-return=keep -Wall -W -Wmissing-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-transaction-log-view.o -MD -MP -MF .deps/test-mail-transaction-log-view.Tpo -c -o test-mail-transaction-log-view.o test-mail-transaction-log-view.c
--- test-mail-transaction-log-append.o ---
mv -f .deps/test-mail-transaction-log-append.Tpo .deps/test-mail-transaction-log-append.Po
--- mail-cache.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -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 -mfunction-return=keep -Wall -W -Wmissing-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-cache.lo -MD -MP -MF .deps/mail-cache.Tpo -c -o mail-cache.lo mail-cache.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-cache.lo -MD -MP -MF .deps/mail-cache.Tpo -c mail-cache.c  -fPIC -DPIC -o .libs/mail-cache.o
--- test-mail-transaction-log-file.o ---
mv -f .deps/test-mail-transaction-log-file.Tpo .deps/test-mail-transaction-log-file.Po
--- mail-cache-decisions.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -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 -mfunction-return=keep -Wall -W -Wmissing-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-cache-decisions.lo -MD -MP -MF .deps/mail-cache-decisions.Tpo -c -o mail-cache-decisions.lo mail-cache-decisions.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-cache-decisions.lo -MD -MP -MF .deps/mail-cache-decisions.Tpo -c mail-cache-decisions.c  -fPIC -DPIC -o .libs/mail-cache-decisions.o
--- test-mail-transaction-log-view.o ---
mv -f .deps/test-mail-transaction-log-view.Tpo .deps/test-mail-transaction-log-view.Po
--- mail-cache-fields.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -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 -mfunction-return=keep -Wall -W -Wmissing-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-cache-fields.lo -MD -MP -MF .deps/mail-cache-fields.Tpo -c -o mail-cache-fields.lo mail-cache-fields.c
--- test-mail-index-transaction-update.o ---
mv -f .deps/test-mail-index-transaction-update.Tpo .deps/test-mail-index-transaction-update.Po
--- mail-cache-lookup.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -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 -mfunction-return=keep -Wall -W -Wmissing-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-cache-lookup.lo -MD -MP -MF .deps/mail-cache-lookup.Tpo -c -o mail-cache-lookup.lo mail-cache-lookup.c
--- mail-cache-fields.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-cache-fields.lo -MD -MP -MF .deps/mail-cache-fields.Tpo -c mail-cache-fields.c  -fPIC -DPIC -o .libs/mail-cache-fields.o
--- mail-cache-lookup.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-cache-lookup.lo -MD -MP -MF .deps/mail-cache-lookup.Tpo -c mail-cache-lookup.c  -fPIC -DPIC -o .libs/mail-cache-lookup.o
--- mail-cache-decisions.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-cache-decisions.lo -MD -MP -MF .deps/mail-cache-decisions.Tpo -c mail-cache-decisions.c -o mail-cache-decisions.o >/dev/null 2>&1
mv -f .deps/mail-cache-decisions.Tpo .deps/mail-cache-decisions.Plo
--- mail-cache-purge.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -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 -mfunction-return=keep -Wall -W -Wmissing-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-cache-purge.lo -MD -MP -MF .deps/mail-cache-purge.Tpo -c -o mail-cache-purge.lo mail-cache-purge.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-cache-purge.lo -MD -MP -MF .deps/mail-cache-purge.Tpo -c mail-cache-purge.c  -fPIC -DPIC -o .libs/mail-cache-purge.o
--- mail-cache.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-cache.lo -MD -MP -MF .deps/mail-cache.Tpo -c mail-cache.c -o mail-cache.o >/dev/null 2>&1
--- mail-cache-fields.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-cache-fields.lo -MD -MP -MF .deps/mail-cache-fields.Tpo -c mail-cache-fields.c -o mail-cache-fields.o >/dev/null 2>&1
--- mail-cache-lookup.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-cache-lookup.lo -MD -MP -MF .deps/mail-cache-lookup.Tpo -c mail-cache-lookup.c -o mail-cache-lookup.o >/dev/null 2>&1
--- mail-cache.lo ---
mv -f .deps/mail-cache.Tpo .deps/mail-cache.Plo
--- mail-cache-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-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 -mfunction-return=keep -Wall -W -Wmissing-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-cache-transaction.lo -MD -MP -MF .deps/mail-cache-transaction.Tpo -c -o mail-cache-transaction.lo mail-cache-transaction.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-cache-transaction.lo -MD -MP -MF .deps/mail-cache-transaction.Tpo -c mail-cache-transaction.c  -fPIC -DPIC -o .libs/mail-cache-transaction.o
--- mail-cache-fields.lo ---
mv -f .deps/mail-cache-fields.Tpo .deps/mail-cache-fields.Plo
--- mail-cache-sync-update.lo ---
--- mail-cache-lookup.lo ---
mv -f .deps/mail-cache-lookup.Tpo .deps/mail-cache-lookup.Plo
--- mail-cache-sync-update.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -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 -mfunction-return=keep -Wall -W -Wmissing-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-cache-sync-update.lo -MD -MP -MF .deps/mail-cache-sync-update.Tpo -c -o mail-cache-sync-update.lo mail-cache-sync-update.c
--- mail-index.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -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 -mfunction-return=keep -Wall -W -Wmissing-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-index.lo -MD -MP -MF .deps/mail-index.Tpo -c -o mail-index.lo mail-index.c
--- mail-cache-purge.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-cache-purge.lo -MD -MP -MF .deps/mail-cache-purge.Tpo -c mail-cache-purge.c -o mail-cache-purge.o >/dev/null 2>&1
--- mail-cache-sync-update.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-cache-sync-update.lo -MD -MP -MF .deps/mail-cache-sync-update.Tpo -c mail-cache-sync-update.c  -fPIC -DPIC -o .libs/mail-cache-sync-update.o
--- mail-index.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-index.lo -MD -MP -MF .deps/mail-index.Tpo -c mail-index.c  -fPIC -DPIC -o .libs/mail-index.o
--- mail-cache-sync-update.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-cache-sync-update.lo -MD -MP -MF .deps/mail-cache-sync-update.Tpo -c mail-cache-sync-update.c -o mail-cache-sync-update.o >/dev/null 2>&1
mv -f .deps/mail-cache-sync-update.Tpo .deps/mail-cache-sync-update.Plo
--- mail-index-alloc-cache.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-alloc-cache.lo -MD -MP -MF .deps/mail-index-alloc-cache.Tpo -c -o mail-index-alloc-cache.lo mail-index-alloc-cache.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-alloc-cache.lo -MD -MP -MF .deps/mail-index-alloc-cache.Tpo -c mail-index-alloc-cache.c  -fPIC -DPIC -o .libs/mail-index-alloc-cache.o
--- mail-cache-transaction.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-cache-transaction.lo -MD -MP -MF .deps/mail-cache-transaction.Tpo -c mail-cache-transaction.c -o mail-cache-transaction.o >/dev/null 2>&1
--- mail-cache-purge.lo ---
mv -f .deps/mail-cache-purge.Tpo .deps/mail-cache-purge.Plo
--- mail-index-dummy-view.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-dummy-view.lo -MD -MP -MF .deps/mail-index-dummy-view.Tpo -c -o mail-index-dummy-view.lo mail-index-dummy-view.c
--- mail-index-alloc-cache.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-alloc-cache.lo -MD -MP -MF .deps/mail-index-alloc-cache.Tpo -c mail-index-alloc-cache.c -o mail-index-alloc-cache.o >/dev/null 2>&1
--- mail-index-dummy-view.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-dummy-view.lo -MD -MP -MF .deps/mail-index-dummy-view.Tpo -c mail-index-dummy-view.c  -fPIC -DPIC -o .libs/mail-index-dummy-view.o
--- mail-index.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-index.lo -MD -MP -MF .deps/mail-index.Tpo -c mail-index.c -o mail-index.o >/dev/null 2>&1
--- mail-index-dummy-view.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-dummy-view.lo -MD -MP -MF .deps/mail-index-dummy-view.Tpo -c mail-index-dummy-view.c -o mail-index-dummy-view.o >/dev/null 2>&1
--- mail-index-alloc-cache.lo ---
mv -f .deps/mail-index-alloc-cache.Tpo .deps/mail-index-alloc-cache.Plo
--- mail-index-fsck.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-fsck.lo -MD -MP -MF .deps/mail-index-fsck.Tpo -c -o mail-index-fsck.lo mail-index-fsck.c
--- mail-index-dummy-view.lo ---
mv -f .deps/mail-index-dummy-view.Tpo .deps/mail-index-dummy-view.Plo
--- mail-index-lock.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-lock.lo -MD -MP -MF .deps/mail-index-lock.Tpo -c -o mail-index-lock.lo mail-index-lock.c
--- mail-index-fsck.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-fsck.lo -MD -MP -MF .deps/mail-index-fsck.Tpo -c mail-index-fsck.c  -fPIC -DPIC -o .libs/mail-index-fsck.o
--- mail-index-lock.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-lock.lo -MD -MP -MF .deps/mail-index-lock.Tpo -c mail-index-lock.c  -fPIC -DPIC -o .libs/mail-index-lock.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-lock.lo -MD -MP -MF .deps/mail-index-lock.Tpo -c mail-index-lock.c -o mail-index-lock.o >/dev/null 2>&1
--- mail-cache-transaction.lo ---
mv -f .deps/mail-cache-transaction.Tpo .deps/mail-cache-transaction.Plo
--- mail-index-map.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-map.lo -MD -MP -MF .deps/mail-index-map.Tpo -c -o mail-index-map.lo mail-index-map.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-map.lo -MD -MP -MF .deps/mail-index-map.Tpo -c mail-index-map.c  -fPIC -DPIC -o .libs/mail-index-map.o
--- mail-index-lock.lo ---
mv -f .deps/mail-index-lock.Tpo .deps/mail-index-lock.Plo
--- mail-index-map-hdr.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-map-hdr.lo -MD -MP -MF .deps/mail-index-map-hdr.Tpo -c -o mail-index-map-hdr.lo mail-index-map-hdr.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-map-hdr.lo -MD -MP -MF .deps/mail-index-map-hdr.Tpo -c mail-index-map-hdr.c  -fPIC -DPIC -o .libs/mail-index-map-hdr.o
--- mail-index.lo ---
mv -f .deps/mail-index.Tpo .deps/mail-index.Plo
--- mail-index-map-read.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-map-read.lo -MD -MP -MF .deps/mail-index-map-read.Tpo -c -o mail-index-map-read.lo mail-index-map-read.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-map-read.lo -MD -MP -MF .deps/mail-index-map-read.Tpo -c mail-index-map-read.c  -fPIC -DPIC -o .libs/mail-index-map-read.o
--- mail-index-map-hdr.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-map-hdr.lo -MD -MP -MF .deps/mail-index-map-hdr.Tpo -c mail-index-map-hdr.c -o mail-index-map-hdr.o >/dev/null 2>&1
--- mail-index-fsck.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-fsck.lo -MD -MP -MF .deps/mail-index-fsck.Tpo -c mail-index-fsck.c -o mail-index-fsck.o >/dev/null 2>&1
--- mail-index-map.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-map.lo -MD -MP -MF .deps/mail-index-map.Tpo -c mail-index-map.c -o mail-index-map.o >/dev/null 2>&1
--- mail-index-map-read.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-map-read.lo -MD -MP -MF .deps/mail-index-map-read.Tpo -c mail-index-map-read.c -o mail-index-map-read.o >/dev/null 2>&1
--- mail-index-map-hdr.lo ---
mv -f .deps/mail-index-map-hdr.Tpo .deps/mail-index-map-hdr.Plo
--- mail-index-modseq.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-modseq.lo -MD -MP -MF .deps/mail-index-modseq.Tpo -c -o mail-index-modseq.lo mail-index-modseq.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-modseq.lo -MD -MP -MF .deps/mail-index-modseq.Tpo -c mail-index-modseq.c  -fPIC -DPIC -o .libs/mail-index-modseq.o
--- mail-index-map.lo ---
mv -f .deps/mail-index-map.Tpo .deps/mail-index-map.Plo
--- mail-index-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-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 -mfunction-return=keep -Wall -W -Wmissing-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-index-transaction.lo -MD -MP -MF .deps/mail-index-transaction.Tpo -c -o mail-index-transaction.lo mail-index-transaction.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-transaction.lo -MD -MP -MF .deps/mail-index-transaction.Tpo -c mail-index-transaction.c  -fPIC -DPIC -o .libs/mail-index-transaction.o
--- mail-index-map-read.lo ---
mv -f .deps/mail-index-map-read.Tpo .deps/mail-index-map-read.Plo
--- mail-index-transaction-export.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-transaction-export.lo -MD -MP -MF .deps/mail-index-transaction-export.Tpo -c -o mail-index-transaction-export.lo mail-index-transaction-export.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-transaction-export.lo -MD -MP -MF .deps/mail-index-transaction-export.Tpo -c mail-index-transaction-export.c  -fPIC -DPIC -o .libs/mail-index-transaction-export.o
--- mail-index-fsck.lo ---
mv -f .deps/mail-index-fsck.Tpo .deps/mail-index-fsck.Plo
--- mail-index-transaction-finish.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-transaction-finish.lo -MD -MP -MF .deps/mail-index-transaction-finish.Tpo -c -o mail-index-transaction-finish.lo mail-index-transaction-finish.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-transaction-finish.lo -MD -MP -MF .deps/mail-index-transaction-finish.Tpo -c mail-index-transaction-finish.c  -fPIC -DPIC -o .libs/mail-index-transaction-finish.o
--- mail-index-transaction.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-transaction.lo -MD -MP -MF .deps/mail-index-transaction.Tpo -c mail-index-transaction.c -o mail-index-transaction.o >/dev/null 2>&1
--- mail-index-modseq.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-modseq.lo -MD -MP -MF .deps/mail-index-modseq.Tpo -c mail-index-modseq.c -o mail-index-modseq.o >/dev/null 2>&1
--- mail-index-transaction-export.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-transaction-export.lo -MD -MP -MF .deps/mail-index-transaction-export.Tpo -c mail-index-transaction-export.c -o mail-index-transaction-export.o >/dev/null 2>&1
--- mail-index-transaction-finish.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-transaction-finish.lo -MD -MP -MF .deps/mail-index-transaction-finish.Tpo -c mail-index-transaction-finish.c -o mail-index-transaction-finish.o >/dev/null 2>&1
--- mail-index-transaction.lo ---
mv -f .deps/mail-index-transaction.Tpo .deps/mail-index-transaction.Plo
--- mail-index-transaction-sort-appends.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-transaction-sort-appends.lo -MD -MP -MF .deps/mail-index-transaction-sort-appends.Tpo -c -o mail-index-transaction-sort-appends.lo mail-index-transaction-sort-appends.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-transaction-sort-appends.lo -MD -MP -MF .deps/mail-index-transaction-sort-appends.Tpo -c mail-index-transaction-sort-appends.c  -fPIC -DPIC -o .libs/mail-index-transaction-sort-appends.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-transaction-sort-appends.lo -MD -MP -MF .deps/mail-index-transaction-sort-appends.Tpo -c mail-index-transaction-sort-appends.c -o mail-index-transaction-sort-appends.o >/dev/null 2>&1
--- mail-index-transaction-finish.lo ---
mv -f .deps/mail-index-transaction-finish.Tpo .deps/mail-index-transaction-finish.Plo
--- mail-index-transaction-update.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-transaction-update.lo -MD -MP -MF .deps/mail-index-transaction-update.Tpo -c -o mail-index-transaction-update.lo mail-index-transaction-update.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-transaction-update.lo -MD -MP -MF .deps/mail-index-transaction-update.Tpo -c mail-index-transaction-update.c  -fPIC -DPIC -o .libs/mail-index-transaction-update.o
--- mail-index-modseq.lo ---
mv -f .deps/mail-index-modseq.Tpo .deps/mail-index-modseq.Plo
--- mail-index-transaction-view.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-transaction-view.lo -MD -MP -MF .deps/mail-index-transaction-view.Tpo -c -o mail-index-transaction-view.lo mail-index-transaction-view.c
--- mail-index-transaction-export.lo ---
mv -f .deps/mail-index-transaction-export.Tpo .deps/mail-index-transaction-export.Plo
--- mail-index-strmap.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-strmap.lo -MD -MP -MF .deps/mail-index-strmap.Tpo -c -o mail-index-strmap.lo mail-index-strmap.c
--- mail-index-transaction-view.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-transaction-view.lo -MD -MP -MF .deps/mail-index-transaction-view.Tpo -c mail-index-transaction-view.c  -fPIC -DPIC -o .libs/mail-index-transaction-view.o
--- mail-index-strmap.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-strmap.lo -MD -MP -MF .deps/mail-index-strmap.Tpo -c mail-index-strmap.c  -fPIC -DPIC -o .libs/mail-index-strmap.o
--- mail-index-transaction-update.lo ---
mail-index-transaction-update.c:503:4: warning: result of comparison of constant 2147483647 with expression of type 'uint16_t' (aka 'unsigned short') is always false [-Wtautological-constant-out-of-range-compare]
--- mail-index-transaction-sort-appends.lo ---
mv -f .deps/mail-index-transaction-sort-appends.Tpo .deps/mail-index-transaction-sort-appends.Plo
--- mail-index-transaction-view.lo ---
mail-index-transaction-view.c:125:17: warning: result of comparison of constant 2147483647 with expression of type 'const uint16_t' (aka 'const unsigned short') is always false [-Wtautological-constant-out-of-range-compare]
        trec->flags &= ENUM_NEGATE(updates[idx].remove_flags);
                       ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../src/lib/macros.h:295:92: note: expanded from macro 'ENUM_NEGATE'
        ((unsigned int)(~(x)) + COMPILE_ERROR_IF_TRUE(sizeof((x)) > sizeof(int) || (x) < 0 || (x) > INT_MAX))
                                ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~
../../src/lib/macros.h:188:25: note: expanded from macro 'COMPILE_ERROR_IF_TRUE'
        (sizeof(char[1 - 2 * ((condition) ? 1 : 0)]) > 0 ? FALSE : FALSE)
                               ^~~~~~~~~
--- mail-index-transaction-update.lo ---
                        ENUM_NEGATE(u.remove_flags);
                        ^~~~~~~~~~~~~~~~~~~~~~~~~~~
../../src/lib/macros.h:295:92: note: expanded from macro 'ENUM_NEGATE'
        ((unsigned int)(~(x)) + COMPILE_ERROR_IF_TRUE(sizeof((x)) > sizeof(int) || (x) < 0 || (x) > INT_MAX))
                                ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~
../../src/lib/macros.h:188:25: note: expanded from macro 'COMPILE_ERROR_IF_TRUE'
        (sizeof(char[1 - 2 * ((condition) ? 1 : 0)]) > 0 ? FALSE : FALSE)
                               ^~~~~~~~~
mail-index-transaction-update.c:506:4: warning: result of comparison of constant 2147483647 with expression of type 'uint16_t' (aka 'unsigned short') is always false [-Wtautological-constant-out-of-range-compare]
                        ENUM_NEGATE(u.add_flags);
                        ^~~~~~~~~~~~~~~~~~~~~~~~
../../src/lib/macros.h:295:92: note: expanded from macro 'ENUM_NEGATE'
        ((unsigned int)(~(x)) + COMPILE_ERROR_IF_TRUE(sizeof((x)) > sizeof(int) || (x) < 0 || (x) > INT_MAX))
                                ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~
../../src/lib/macros.h:188:25: note: expanded from macro 'COMPILE_ERROR_IF_TRUE'
        (sizeof(char[1 - 2 * ((condition) ? 1 : 0)]) > 0 ? FALSE : FALSE)
                               ^~~~~~~~~
--- mail-index-sync.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-sync.lo -MD -MP -MF .deps/mail-index-sync.Tpo -c -o mail-index-sync.lo mail-index-sync.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-sync.lo -MD -MP -MF .deps/mail-index-sync.Tpo -c mail-index-sync.c  -fPIC -DPIC -o .libs/mail-index-sync.o
mail-index-sync.c:999:21: warning: result of comparison of constant 2147483647 with expression of type 'const uint8_t' (aka 'const unsigned char') is always false [-Wtautological-constant-out-of-range-compare]
--- mail-index-transaction-view.lo ---
1 warning generated.
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-transaction-view.lo -MD -MP -MF .deps/mail-index-transaction-view.Tpo -c mail-index-transaction-view.c -o mail-index-transaction-view.o >/dev/null 2>&1
--- mail-index-sync.lo ---
        *flags = (*flags & ENUM_NEGATE(sync_rec->remove_flags)) | sync_rec->add_flags;
                           ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../src/lib/macros.h:295:92: note: expanded from macro 'ENUM_NEGATE'
        ((unsigned int)(~(x)) + COMPILE_ERROR_IF_TRUE(sizeof((x)) > sizeof(int) || (x) < 0 || (x) > INT_MAX))
                                ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~
../../src/lib/macros.h:188:25: note: expanded from macro 'COMPILE_ERROR_IF_TRUE'
        (sizeof(char[1 - 2 * ((condition) ? 1 : 0)]) > 0 ? FALSE : FALSE)
                               ^~~~~~~~~
--- mail-index-transaction-view.lo ---
mv -f .deps/mail-index-transaction-view.Tpo .deps/mail-index-transaction-view.Plo
--- mail-index-sync-ext.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-sync-ext.lo -MD -MP -MF .deps/mail-index-sync-ext.Tpo -c -o mail-index-sync-ext.lo mail-index-sync-ext.c
--- mail-index-strmap.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-strmap.lo -MD -MP -MF .deps/mail-index-strmap.Tpo -c mail-index-strmap.c -o mail-index-strmap.o >/dev/null 2>&1
--- mail-index-sync.lo ---
1 warning generated.
--- mail-index-sync-ext.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-sync-ext.lo -MD -MP -MF .deps/mail-index-sync-ext.Tpo -c mail-index-sync-ext.c  -fPIC -DPIC -o .libs/mail-index-sync-ext.o
--- mail-index-sync.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-sync.lo -MD -MP -MF .deps/mail-index-sync.Tpo -c mail-index-sync.c -o mail-index-sync.o >/dev/null 2>&1
--- mail-index-transaction-update.lo ---
2 warnings generated.
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-transaction-update.lo -MD -MP -MF .deps/mail-index-transaction-update.Tpo -c mail-index-transaction-update.c -o mail-index-transaction-update.o >/dev/null 2>&1
--- mail-index-sync-ext.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-sync-ext.lo -MD -MP -MF .deps/mail-index-sync-ext.Tpo -c mail-index-sync-ext.c -o mail-index-sync-ext.o >/dev/null 2>&1
--- mail-index-sync.lo ---
mv -f .deps/mail-index-sync.Tpo .deps/mail-index-sync.Plo
--- mail-index-sync-keywords.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-sync-keywords.lo -MD -MP -MF .deps/mail-index-sync-keywords.Tpo -c -o mail-index-sync-keywords.lo mail-index-sync-keywords.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-sync-keywords.lo -MD -MP -MF .deps/mail-index-sync-keywords.Tpo -c mail-index-sync-keywords.c  -fPIC -DPIC -o .libs/mail-index-sync-keywords.o
--- mail-index-strmap.lo ---
mv -f .deps/mail-index-strmap.Tpo .deps/mail-index-strmap.Plo
--- mail-index-sync-update.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-sync-update.lo -MD -MP -MF .deps/mail-index-sync-update.Tpo -c -o mail-index-sync-update.lo mail-index-sync-update.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-sync-update.lo -MD -MP -MF .deps/mail-index-sync-update.Tpo -c mail-index-sync-update.c  -fPIC -DPIC -o .libs/mail-index-sync-update.o
--- mail-index-sync-keywords.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-sync-keywords.lo -MD -MP -MF .deps/mail-index-sync-keywords.Tpo -c mail-index-sync-keywords.c -o mail-index-sync-keywords.o >/dev/null 2>&1
--- mail-index-sync-ext.lo ---
mv -f .deps/mail-index-sync-ext.Tpo .deps/mail-index-sync-ext.Plo
--- mail-index-view.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-view.lo -MD -MP -MF .deps/mail-index-view.Tpo -c -o mail-index-view.lo mail-index-view.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-view.lo -MD -MP -MF .deps/mail-index-view.Tpo -c mail-index-view.c  -fPIC -DPIC -o .libs/mail-index-view.o
--- mail-index-transaction-update.lo ---
mv -f .deps/mail-index-transaction-update.Tpo .deps/mail-index-transaction-update.Plo
--- mail-index-view-sync.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-view-sync.lo -MD -MP -MF .deps/mail-index-view-sync.Tpo -c -o mail-index-view-sync.lo mail-index-view-sync.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-view-sync.lo -MD -MP -MF .deps/mail-index-view-sync.Tpo -c mail-index-view-sync.c  -fPIC -DPIC -o .libs/mail-index-view-sync.o
mail-index-view-sync.c:372:30: warning: result of comparison of constant 2147483647 with expression of type 'const uint8_t' (aka 'const unsigned char') is always false [-Wtautological-constant-out-of-range-compare]
--- mail-index-sync-keywords.lo ---
mv -f .deps/mail-index-sync-keywords.Tpo .deps/mail-index-sync-keywords.Plo
--- mail-index-view-sync.lo ---
                flag_update.remove_flags = ENUM_NEGATE(new_rec->flags) & 0xff;
                                           ^~~~~~~~~~~~~~~~~~~~~~~~~~~
../../src/lib/macros.h:295:92: note: expanded from macro 'ENUM_NEGATE'
        ((unsigned int)(~(x)) + COMPILE_ERROR_IF_TRUE(sizeof((x)) > sizeof(int) || (x) < 0 || (x) > INT_MAX))
                                ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~
../../src/lib/macros.h:188:25: note: expanded from macro 'COMPILE_ERROR_IF_TRUE'
        (sizeof(char[1 - 2 * ((condition) ? 1 : 0)]) > 0 ? FALSE : FALSE)
                               ^~~~~~~~~
--- mail-index-write.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-write.lo -MD -MP -MF .deps/mail-index-write.Tpo -c -o mail-index-write.lo mail-index-write.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-write.lo -MD -MP -MF .deps/mail-index-write.Tpo -c mail-index-write.c  -fPIC -DPIC -o .libs/mail-index-write.o
--- mail-index-view.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-view.lo -MD -MP -MF .deps/mail-index-view.Tpo -c mail-index-view.c -o mail-index-view.o >/dev/null 2>&1
--- mail-index-write.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-write.lo -MD -MP -MF .deps/mail-index-write.Tpo -c mail-index-write.c -o mail-index-write.o >/dev/null 2>&1
--- mail-index-sync-update.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-sync-update.lo -MD -MP -MF .deps/mail-index-sync-update.Tpo -c mail-index-sync-update.c -o mail-index-sync-update.o >/dev/null 2>&1
--- mail-index-write.lo ---
mv -f .deps/mail-index-write.Tpo .deps/mail-index-write.Plo
--- mail-transaction-log.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -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 -mfunction-return=keep -Wall -W -Wmissing-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-transaction-log.lo -MD -MP -MF .deps/mail-transaction-log.Tpo -c -o mail-transaction-log.lo mail-transaction-log.c
--- mail-index-view-sync.lo ---
1 warning generated.
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-index-view-sync.lo -MD -MP -MF .deps/mail-index-view-sync.Tpo -c mail-index-view-sync.c -o mail-index-view-sync.o >/dev/null 2>&1
--- mail-transaction-log.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-transaction-log.lo -MD -MP -MF .deps/mail-transaction-log.Tpo -c mail-transaction-log.c  -fPIC -DPIC -o .libs/mail-transaction-log.o
--- mail-index-view.lo ---
mv -f .deps/mail-index-view.Tpo .deps/mail-index-view.Plo
--- mail-transaction-log-append.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -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 -mfunction-return=keep -Wall -W -Wmissing-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-transaction-log-append.lo -MD -MP -MF .deps/mail-transaction-log-append.Tpo -c -o mail-transaction-log-append.lo mail-transaction-log-append.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-transaction-log-append.lo -MD -MP -MF .deps/mail-transaction-log-append.Tpo -c mail-transaction-log-append.c  -fPIC -DPIC -o .libs/mail-transaction-log-append.o
--- mail-transaction-log.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-transaction-log.lo -MD -MP -MF .deps/mail-transaction-log.Tpo -c mail-transaction-log.c -o mail-transaction-log.o >/dev/null 2>&1
--- mail-index-sync-update.lo ---
mv -f .deps/mail-index-sync-update.Tpo .deps/mail-index-sync-update.Plo
--- mail-transaction-log-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-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 -mfunction-return=keep -Wall -W -Wmissing-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-transaction-log-file.lo -MD -MP -MF .deps/mail-transaction-log-file.Tpo -c -o mail-transaction-log-file.lo mail-transaction-log-file.c
--- mail-transaction-log-append.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-transaction-log-append.lo -MD -MP -MF .deps/mail-transaction-log-append.Tpo -c mail-transaction-log-append.c -o mail-transaction-log-append.o >/dev/null 2>&1
--- mail-transaction-log-file.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-transaction-log-file.lo -MD -MP -MF .deps/mail-transaction-log-file.Tpo -c mail-transaction-log-file.c  -fPIC -DPIC -o .libs/mail-transaction-log-file.o
--- mail-index-view-sync.lo ---
mv -f .deps/mail-index-view-sync.Tpo .deps/mail-index-view-sync.Plo
--- mail-transaction-log-modseq.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -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 -mfunction-return=keep -Wall -W -Wmissing-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-transaction-log-modseq.lo -MD -MP -MF .deps/mail-transaction-log-modseq.Tpo -c -o mail-transaction-log-modseq.lo mail-transaction-log-modseq.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-transaction-log-modseq.lo -MD -MP -MF .deps/mail-transaction-log-modseq.Tpo -c mail-transaction-log-modseq.c  -fPIC -DPIC -o .libs/mail-transaction-log-modseq.o
--- mail-transaction-log-append.lo ---
mv -f .deps/mail-transaction-log-append.Tpo .deps/mail-transaction-log-append.Plo
--- mail-transaction-log-view.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -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 -mfunction-return=keep -Wall -W -Wmissing-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-transaction-log-view.lo -MD -MP -MF .deps/mail-transaction-log-view.Tpo -c -o mail-transaction-log-view.lo mail-transaction-log-view.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-transaction-log-view.lo -MD -MP -MF .deps/mail-transaction-log-view.Tpo -c mail-transaction-log-view.c  -fPIC -DPIC -o .libs/mail-transaction-log-view.o
--- mail-transaction-log.lo ---
mv -f .deps/mail-transaction-log.Tpo .deps/mail-transaction-log.Plo
--- mailbox-log.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-log.lo -MD -MP -MF .deps/mailbox-log.Tpo -c -o mailbox-log.lo mailbox-log.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-log.lo -MD -MP -MF .deps/mailbox-log.Tpo -c mailbox-log.c  -fPIC -DPIC -o .libs/mailbox-log.o
--- mail-transaction-log-modseq.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-transaction-log-modseq.lo -MD -MP -MF .deps/mail-transaction-log-modseq.Tpo -c mail-transaction-log-modseq.c -o mail-transaction-log-modseq.o >/dev/null 2>&1
--- mailbox-log.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-log.lo -MD -MP -MF .deps/mailbox-log.Tpo -c mailbox-log.c -o mailbox-log.o >/dev/null 2>&1
--- mail-transaction-log-modseq.lo ---
mv -f .deps/mail-transaction-log-modseq.Tpo .deps/mail-transaction-log-modseq.Plo
--- mail-transaction-log-file.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-transaction-log-file.lo -MD -MP -MF .deps/mail-transaction-log-file.Tpo -c mail-transaction-log-file.c -o mail-transaction-log-file.o >/dev/null 2>&1
--- mailbox-log.lo ---
mv -f .deps/mailbox-log.Tpo .deps/mailbox-log.Plo
--- mail-transaction-log-view.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -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 -mfunction-return=keep -Wall -W -Wmissing-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-transaction-log-view.lo -MD -MP -MF .deps/mail-transaction-log-view.Tpo -c mail-transaction-log-view.c -o mail-transaction-log-view.o >/dev/null 2>&1
mv -f .deps/mail-transaction-log-view.Tpo .deps/mail-transaction-log-view.Plo
--- mail-transaction-log-file.lo ---
mv -f .deps/mail-transaction-log-file.Tpo .deps/mail-transaction-log-file.Plo
--- libindex.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 -mfunction-return=keep -Wall -W -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 libindex.la  mail-cache.lo mail-cache-decisions.lo  mail-cache-fields.lo mail-cache-lookup.lo mail-cache-purge.lo  mail-cache-transaction.lo mail-cache-sync-update.lo  mail-index.lo mail-index-alloc-cache.lo  mail-index-dummy-view.lo mail-index-fsck.lo mail-index-lock.lo  mail-index-map.lo mail-index-map-hdr.lo mail-index-map-read.lo  mail-index-modseq.lo mail-index-transaction.lo  mail-index-transaction-export.lo  mail-index-transaction-finish.lo  mail-index-transaction-sort-appends.lo  mail-index-transaction-update.lo  mail-index-transaction-view.lo mail-index-strmap.lo  mail-index-sync.lo mail-index-sync-ext.lo  mail-index-sync-keywords.lo mail-index-sync-update.lo  mail-index-util.lo mail-index-view.lo mail-index-view-sync.lo  mail-index-write.lo mail-transaction-log.lo  mail-transaction-log-append.lo mail-transaction-log-file.lo  mail-transaction-log-modseq.lo mail-transaction-log-view.lo  mailbox-log.lo  
libtool: link: ar cr .libs/libindex.a .libs/mail-cache.o .libs/mail-cache-decisions.o .libs/mail-cache-fields.o .libs/mail-cache-lookup.o .libs/mail-cache-purge.o .libs/mail-cache-transaction.o .libs/mail-cache-sync-update.o .libs/mail-index.o .libs/mail-index-alloc-cache.o .libs/mail-index-dummy-view.o .libs/mail-index-fsck.o .libs/mail-index-lock.o .libs/mail-index-map.o .libs/mail-index-map-hdr.o .libs/mail-index-map-read.o .libs/mail-index-modseq.o .libs/mail-index-transaction.o .libs/mail-index-transaction-export.o .libs/mail-index-transaction-finish.o .libs/mail-index-transaction-sort-appends.o .libs/mail-index-transaction-update.o .libs/mail-index-transaction-view.o .libs/mail-index-strmap.o .libs/mail-index-sync.o .libs/mail-index-sync-ext.o .libs/mail-index-sync-keywords.o .libs/mail-index-sync-update.o .libs/mail-index-util.o .libs/mail-index-view.o .libs/mail-index-view-sync.o .libs/mail-index-write.o .libs/mail-transaction-log.o .libs/mail-transaction-log-append.o .libs/mail-transaction-log-file.o .libs/mail-transaction-log-modseq.o .libs/mail-transaction-log-view.o .libs/mailbox-log.o 
libtool: link: ranlib .libs/libindex.a
libtool: link: ( cd ".libs" && rm -f "libindex.la" && ln -s "../libindex.la" "libindex.la" )
--- test-mail-cache ---
--- test-mail-cache-fields ---
--- test-mail-cache-purge ---
--- test-mail-index ---
--- test-mail-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 -mfunction-return=keep -Wall -W -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-cache test-mail-cache-common.o  test-mail-cache.o libindex.la mail-index-util.lo  ../lib-test/libtest.la  ../lib/liblib.la 
--- test-mail-cache-fields ---
/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 -mfunction-return=keep -Wall -W -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-cache-fields test-mail-cache-common.o  test-mail-cache-fields.o libindex.la mail-index-util.lo  ../lib-test/libtest.la  ../lib/liblib.la 
--- test-mail-index ---
/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 -mfunction-return=keep -Wall -W -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-index test-mail-index.o libindex.la mail-index-util.lo  ../lib-test/libtest.la  ../lib/liblib.la 
--- test-mail-cache-purge ---
/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 -mfunction-return=keep -Wall -W -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-cache-purge test-mail-cache-common.o  test-mail-cache-purge.o libindex.la mail-index-util.lo  ../lib-test/libtest.la  ../lib/liblib.la 
--- test-mail-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 -mfunction-return=keep -Wall -W -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-cache test-mail-cache-common.o test-mail-cache.o .libs/mail-index-util.o  -L/usr/local/lib ./.libs/libindex.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a 
--- test-mail-cache-fields ---
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 -mfunction-return=keep -Wall -W -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-cache-fields test-mail-cache-common.o test-mail-cache-fields.o .libs/mail-index-util.o  -L/usr/local/lib ./.libs/libindex.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a 
--- test-mail-cache-purge ---
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 -mfunction-return=keep -Wall -W -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-cache-purge test-mail-cache-common.o test-mail-cache-purge.o .libs/mail-index-util.o  -L/usr/local/lib ./.libs/libindex.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a 
--- test-mail-index ---
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 -mfunction-return=keep -Wall -W -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-index test-mail-index.o .libs/mail-index-util.o  -L/usr/local/lib ./.libs/libindex.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a 
--- test-mail-index-map ---
/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 -mfunction-return=keep -Wall -W -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-index-map test-mail-index-map.o libindex.la mail-index-util.lo  ../lib-test/libtest.la  ../lib/liblib.la 
--- test-mail-index-modseq ---
--- test-mail-index-sync-ext ---
--- test-mail-index-transaction-finish ---
--- test-mail-index-modseq ---
/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 -mfunction-return=keep -Wall -W -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-index-modseq test-mail-index-modseq.o libindex.la mail-index-util.lo  ../lib-test/libtest.la  ../lib/liblib.la 
--- test-mail-index-sync-ext ---
/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 -mfunction-return=keep -Wall -W -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-index-sync-ext test-mail-index-sync-ext.o libindex.la mail-index-util.lo  ../lib-test/libtest.la  ../lib/liblib.la 
--- test-mail-index-transaction-finish ---
/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 -mfunction-return=keep -Wall -W -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-index-transaction-finish test-mail-index-transaction-finish.o mail-index-transaction-finish.lo mail-index-util.lo  ../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 -mfunction-return=keep -Wall -W -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-index-transaction-finish test-mail-index-transaction-finish.o .libs/mail-index-transaction-finish.o .libs/mail-index-util.o  -L/usr/local/lib ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a 
--- test-mail-index-map ---
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 -mfunction-return=keep -Wall -W -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-index-map test-mail-index-map.o .libs/mail-index-util.o  -L/usr/local/lib ./.libs/libindex.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a 
--- test-mail-index-sync-ext ---
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 -mfunction-return=keep -Wall -W -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-index-sync-ext test-mail-index-sync-ext.o .libs/mail-index-util.o  -L/usr/local/lib ./.libs/libindex.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a 
--- test-mail-index-modseq ---
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 -mfunction-return=keep -Wall -W -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-index-modseq test-mail-index-modseq.o .libs/mail-index-util.o  -L/usr/local/lib ./.libs/libindex.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a 
--- test-mail-index-transaction-update ---
/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 -mfunction-return=keep -Wall -W -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-index-transaction-update test-mail-index-transaction-update.o mail-index-transaction-update.lo mail-index-util.lo  ../lib-test/libtest.la  ../lib/liblib.la 
--- test-mail-index-write ---
--- test-mail-transaction-log-append ---
--- test-mail-index-write ---
/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 -mfunction-return=keep -Wall -W -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-index-write test-mail-index-write.o mail-index-write.lo mail-index-util.lo  ../lib-test/libtest.la  ../lib/liblib.la 
--- test-mail-transaction-log-append ---
/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 -mfunction-return=keep -Wall -W -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-transaction-log-append test-mail-transaction-log-append.o mail-transaction-log-append.lo mail-index-util.lo  ../lib-test/libtest.la  ../lib/liblib.la 
--- test-mail-transaction-log-file ---
/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 -mfunction-return=keep -Wall -W -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-transaction-log-file test-mail-transaction-log-file.o libindex.la mail-index-util.lo  ../lib-test/libtest.la  ../lib/liblib.la 
--- test-mail-index-transaction-update ---
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 -mfunction-return=keep -Wall -W -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-index-transaction-update test-mail-index-transaction-update.o .libs/mail-index-transaction-update.o .libs/mail-index-util.o  -L/usr/local/lib ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a 
--- test-mail-index-write ---
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 -mfunction-return=keep -Wall -W -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-index-write test-mail-index-write.o .libs/mail-index-write.o .libs/mail-index-util.o  -L/usr/local/lib ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a 
--- test-mail-transaction-log-append ---
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 -mfunction-return=keep -Wall -W -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-transaction-log-append test-mail-transaction-log-append.o .libs/mail-transaction-log-append.o .libs/mail-index-util.o  -L/usr/local/lib ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a 
--- test-mail-transaction-log-view ---
/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 -mfunction-return=keep -Wall -W -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-transaction-log-view test-mail-transaction-log-view.o mail-transaction-log-view.lo mail-index-util.lo  ../lib-test/libtest.la  ../lib/liblib.la 
--- test-mail-transaction-log-file ---
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 -mfunction-return=keep -Wall -W -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-transaction-log-file test-mail-transaction-log-file.o .libs/mail-index-util.o  -L/usr/local/lib ./.libs/libindex.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a 
--- test-mail-transaction-log-view ---
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 -mfunction-return=keep -Wall -W -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-transaction-log-view test-mail-transaction-log-view.o .libs/mail-transaction-log-view.o .libs/mail-index-util.o  -L/usr/local/lib ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a 
Making all in lib-storage
--- all-recursive ---
Making all in list
--- mail-storage-list-index-rebuild.lo ---
--- mailbox-list-delete.lo ---
--- mailbox-list-fs.lo ---
--- mailbox-list-fs-flags.lo ---
--- mail-storage-list-index-rebuild.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-fs  -I../../../src/lib-mail  -I../../../src/lib-index  -I../../../src/lib-imap  -I../../../src/lib-storage  -I../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-storage-list-index-rebuild.lo -MD -MP -MF .deps/mail-storage-list-index-rebuild.Tpo -c -o mail-storage-list-index-rebuild.lo mail-storage-list-index-rebuild.c
--- mailbox-list-delete.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-fs  -I../../../src/lib-mail  -I../../../src/lib-index  -I../../../src/lib-imap  -I../../../src/lib-storage  -I../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-list-delete.lo -MD -MP -MF .deps/mailbox-list-delete.Tpo -c -o mailbox-list-delete.lo mailbox-list-delete.c
--- mailbox-list-fs.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-fs  -I../../../src/lib-mail  -I../../../src/lib-index  -I../../../src/lib-imap  -I../../../src/lib-storage  -I../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-list-fs.lo -MD -MP -MF .deps/mailbox-list-fs.Tpo -c -o mailbox-list-fs.lo mailbox-list-fs.c
--- mailbox-list-fs-flags.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-fs  -I../../../src/lib-mail  -I../../../src/lib-index  -I../../../src/lib-imap  -I../../../src/lib-storage  -I../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-list-fs-flags.lo -MD -MP -MF .deps/mailbox-list-fs-flags.Tpo -c -o mailbox-list-fs-flags.lo mailbox-list-fs-flags.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-index -I../../../src/lib-imap -I../../../src/lib-storage -I../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-list-fs-flags.lo -MD -MP -MF .deps/mailbox-list-fs-flags.Tpo -c mailbox-list-fs-flags.c  -fPIC -DPIC -o .libs/mailbox-list-fs-flags.o
--- mailbox-list-delete.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-index -I../../../src/lib-imap -I../../../src/lib-storage -I../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-list-delete.lo -MD -MP -MF .deps/mailbox-list-delete.Tpo -c mailbox-list-delete.c  -fPIC -DPIC -o .libs/mailbox-list-delete.o
--- mailbox-list-fs.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-index -I../../../src/lib-imap -I../../../src/lib-storage -I../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-list-fs.lo -MD -MP -MF .deps/mailbox-list-fs.Tpo -c mailbox-list-fs.c  -fPIC -DPIC -o .libs/mailbox-list-fs.o
--- mail-storage-list-index-rebuild.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-index -I../../../src/lib-imap -I../../../src/lib-storage -I../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-storage-list-index-rebuild.lo -MD -MP -MF .deps/mail-storage-list-index-rebuild.Tpo -c mail-storage-list-index-rebuild.c  -fPIC -DPIC -o .libs/mail-storage-list-index-rebuild.o
--- mailbox-list-fs-flags.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-index -I../../../src/lib-imap -I../../../src/lib-storage -I../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-list-fs-flags.lo -MD -MP -MF .deps/mailbox-list-fs-flags.Tpo -c mailbox-list-fs-flags.c -o mailbox-list-fs-flags.o >/dev/null 2>&1
--- mailbox-list-fs.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-index -I../../../src/lib-imap -I../../../src/lib-storage -I../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-list-fs.lo -MD -MP -MF .deps/mailbox-list-fs.Tpo -c mailbox-list-fs.c -o mailbox-list-fs.o >/dev/null 2>&1
--- mailbox-list-delete.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-index -I../../../src/lib-imap -I../../../src/lib-storage -I../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-list-delete.lo -MD -MP -MF .deps/mailbox-list-delete.Tpo -c mailbox-list-delete.c -o mailbox-list-delete.o >/dev/null 2>&1
--- mailbox-list-fs-flags.lo ---
mv -f .deps/mailbox-list-fs-flags.Tpo .deps/mailbox-list-fs-flags.Plo
--- mailbox-list-fs-iter.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-fs  -I../../../src/lib-mail  -I../../../src/lib-index  -I../../../src/lib-imap  -I../../../src/lib-storage  -I../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-list-fs-iter.lo -MD -MP -MF .deps/mailbox-list-fs-iter.Tpo -c -o mailbox-list-fs-iter.lo mailbox-list-fs-iter.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-index -I../../../src/lib-imap -I../../../src/lib-storage -I../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-list-fs-iter.lo -MD -MP -MF .deps/mailbox-list-fs-iter.Tpo -c mailbox-list-fs-iter.c  -fPIC -DPIC -o .libs/mailbox-list-fs-iter.o
--- mail-storage-list-index-rebuild.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-index -I../../../src/lib-imap -I../../../src/lib-storage -I../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-storage-list-index-rebuild.lo -MD -MP -MF .deps/mail-storage-list-index-rebuild.Tpo -c mail-storage-list-index-rebuild.c -o mail-storage-list-index-rebuild.o >/dev/null 2>&1
--- mailbox-list-fs.lo ---
mv -f .deps/mailbox-list-fs.Tpo .deps/mailbox-list-fs.Plo
--- mailbox-list-index.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-fs  -I../../../src/lib-mail  -I../../../src/lib-index  -I../../../src/lib-imap  -I../../../src/lib-storage  -I../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-list-index.lo -MD -MP -MF .deps/mailbox-list-index.Tpo -c -o mailbox-list-index.lo mailbox-list-index.c
--- mailbox-list-delete.lo ---
mv -f .deps/mailbox-list-delete.Tpo .deps/mailbox-list-delete.Plo
--- mailbox-list-index-backend.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-fs  -I../../../src/lib-mail  -I../../../src/lib-index  -I../../../src/lib-imap  -I../../../src/lib-storage  -I../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-list-index-backend.lo -MD -MP -MF .deps/mailbox-list-index-backend.Tpo -c -o mailbox-list-index-backend.lo mailbox-list-index-backend.c
--- mailbox-list-index.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-index -I../../../src/lib-imap -I../../../src/lib-storage -I../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-list-index.lo -MD -MP -MF .deps/mailbox-list-index.Tpo -c mailbox-list-index.c  -fPIC -DPIC -o .libs/mailbox-list-index.o
--- mailbox-list-index-backend.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-index -I../../../src/lib-imap -I../../../src/lib-storage -I../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-list-index-backend.lo -MD -MP -MF .deps/mailbox-list-index-backend.Tpo -c mailbox-list-index-backend.c  -fPIC -DPIC -o .libs/mailbox-list-index-backend.o
--- mailbox-list-fs-iter.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-index -I../../../src/lib-imap -I../../../src/lib-storage -I../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-list-fs-iter.lo -MD -MP -MF .deps/mailbox-list-fs-iter.Tpo -c mailbox-list-fs-iter.c -o mailbox-list-fs-iter.o >/dev/null 2>&1
--- mail-storage-list-index-rebuild.lo ---
mv -f .deps/mail-storage-list-index-rebuild.Tpo .deps/mail-storage-list-index-rebuild.Plo
--- mailbox-list-index-iter.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-fs  -I../../../src/lib-mail  -I../../../src/lib-index  -I../../../src/lib-imap  -I../../../src/lib-storage  -I../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-list-index-iter.lo -MD -MP -MF .deps/mailbox-list-index-iter.Tpo -c -o mailbox-list-index-iter.lo mailbox-list-index-iter.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-index -I../../../src/lib-imap -I../../../src/lib-storage -I../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-list-index-iter.lo -MD -MP -MF .deps/mailbox-list-index-iter.Tpo -c mailbox-list-index-iter.c  -fPIC -DPIC -o .libs/mailbox-list-index-iter.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-index -I../../../src/lib-imap -I../../../src/lib-storage -I../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-list-index-iter.lo -MD -MP -MF .deps/mailbox-list-index-iter.Tpo -c mailbox-list-index-iter.c -o mailbox-list-index-iter.o >/dev/null 2>&1
--- mailbox-list-index-backend.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-index -I../../../src/lib-imap -I../../../src/lib-storage -I../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-list-index-backend.lo -MD -MP -MF .deps/mailbox-list-index-backend.Tpo -c mailbox-list-index-backend.c -o mailbox-list-index-backend.o >/dev/null 2>&1
--- mailbox-list-index.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-index -I../../../src/lib-imap -I../../../src/lib-storage -I../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-list-index.lo -MD -MP -MF .deps/mailbox-list-index.Tpo -c mailbox-list-index.c -o mailbox-list-index.o >/dev/null 2>&1
--- mailbox-list-index-iter.lo ---
mv -f .deps/mailbox-list-index-iter.Tpo .deps/mailbox-list-index-iter.Plo
--- mailbox-list-index-notify.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-fs  -I../../../src/lib-mail  -I../../../src/lib-index  -I../../../src/lib-imap  -I../../../src/lib-storage  -I../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-list-index-notify.lo -MD -MP -MF .deps/mailbox-list-index-notify.Tpo -c -o mailbox-list-index-notify.lo mailbox-list-index-notify.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-index -I../../../src/lib-imap -I../../../src/lib-storage -I../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-list-index-notify.lo -MD -MP -MF .deps/mailbox-list-index-notify.Tpo -c mailbox-list-index-notify.c  -fPIC -DPIC -o .libs/mailbox-list-index-notify.o
--- mailbox-list-fs-iter.lo ---
mv -f .deps/mailbox-list-fs-iter.Tpo .deps/mailbox-list-fs-iter.Plo
--- mailbox-list-index-status.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-fs  -I../../../src/lib-mail  -I../../../src/lib-index  -I../../../src/lib-imap  -I../../../src/lib-storage  -I../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-list-index-status.lo -MD -MP -MF .deps/mailbox-list-index-status.Tpo -c -o mailbox-list-index-status.lo mailbox-list-index-status.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-index -I../../../src/lib-imap -I../../../src/lib-storage -I../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-list-index-status.lo -MD -MP -MF .deps/mailbox-list-index-status.Tpo -c mailbox-list-index-status.c  -fPIC -DPIC -o .libs/mailbox-list-index-status.o
--- mailbox-list-index-backend.lo ---
mv -f .deps/mailbox-list-index-backend.Tpo .deps/mailbox-list-index-backend.Plo
--- mailbox-list-index-sync.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-fs  -I../../../src/lib-mail  -I../../../src/lib-index  -I../../../src/lib-imap  -I../../../src/lib-storage  -I../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-list-index-sync.lo -MD -MP -MF .deps/mailbox-list-index-sync.Tpo -c -o mailbox-list-index-sync.lo mailbox-list-index-sync.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-index -I../../../src/lib-imap -I../../../src/lib-storage -I../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-list-index-sync.lo -MD -MP -MF .deps/mailbox-list-index-sync.Tpo -c mailbox-list-index-sync.c  -fPIC -DPIC -o .libs/mailbox-list-index-sync.o
--- mailbox-list-index.lo ---
mv -f .deps/mailbox-list-index.Tpo .deps/mailbox-list-index.Plo
--- mailbox-list-iter.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-fs  -I../../../src/lib-mail  -I../../../src/lib-index  -I../../../src/lib-imap  -I../../../src/lib-storage  -I../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-list-iter.lo -MD -MP -MF .deps/mailbox-list-iter.Tpo -c -o mailbox-list-iter.lo mailbox-list-iter.c
--- mailbox-list-index-sync.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-index -I../../../src/lib-imap -I../../../src/lib-storage -I../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-list-index-sync.lo -MD -MP -MF .deps/mailbox-list-index-sync.Tpo -c mailbox-list-index-sync.c -o mailbox-list-index-sync.o >/dev/null 2>&1
--- mailbox-list-index-notify.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-index -I../../../src/lib-imap -I../../../src/lib-storage -I../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-list-index-notify.lo -MD -MP -MF .deps/mailbox-list-index-notify.Tpo -c mailbox-list-index-notify.c -o mailbox-list-index-notify.o >/dev/null 2>&1
--- mailbox-list-iter.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-index -I../../../src/lib-imap -I../../../src/lib-storage -I../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-list-iter.lo -MD -MP -MF .deps/mailbox-list-iter.Tpo -c mailbox-list-iter.c  -fPIC -DPIC -o .libs/mailbox-list-iter.o
--- mailbox-list-index-status.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-index -I../../../src/lib-imap -I../../../src/lib-storage -I../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-list-index-status.lo -MD -MP -MF .deps/mailbox-list-index-status.Tpo -c mailbox-list-index-status.c -o mailbox-list-index-status.o >/dev/null 2>&1
--- mailbox-list-index-sync.lo ---
mv -f .deps/mailbox-list-index-sync.Tpo .deps/mailbox-list-index-sync.Plo
--- mailbox-list-maildir.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-fs  -I../../../src/lib-mail  -I../../../src/lib-index  -I../../../src/lib-imap  -I../../../src/lib-storage  -I../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-list-maildir.lo -MD -MP -MF .deps/mailbox-list-maildir.Tpo -c -o mailbox-list-maildir.lo mailbox-list-maildir.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-index -I../../../src/lib-imap -I../../../src/lib-storage -I../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-list-maildir.lo -MD -MP -MF .deps/mailbox-list-maildir.Tpo -c mailbox-list-maildir.c  -fPIC -DPIC -o .libs/mailbox-list-maildir.o
--- mailbox-list-index-status.lo ---
mv -f .deps/mailbox-list-index-status.Tpo .deps/mailbox-list-index-status.Plo
--- mailbox-list-maildir-iter.lo ---
--- mailbox-list-index-notify.lo ---
mv -f .deps/mailbox-list-index-notify.Tpo .deps/mailbox-list-index-notify.Plo
--- mailbox-list-none.lo ---
--- mailbox-list-maildir-iter.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-fs  -I../../../src/lib-mail  -I../../../src/lib-index  -I../../../src/lib-imap  -I../../../src/lib-storage  -I../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-list-maildir-iter.lo -MD -MP -MF .deps/mailbox-list-maildir-iter.Tpo -c -o mailbox-list-maildir-iter.lo mailbox-list-maildir-iter.c
--- mailbox-list-none.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-fs  -I../../../src/lib-mail  -I../../../src/lib-index  -I../../../src/lib-imap  -I../../../src/lib-storage  -I../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-list-none.lo -MD -MP -MF .deps/mailbox-list-none.Tpo -c -o mailbox-list-none.lo mailbox-list-none.c
--- mailbox-list-maildir-iter.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-index -I../../../src/lib-imap -I../../../src/lib-storage -I../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-list-maildir-iter.lo -MD -MP -MF .deps/mailbox-list-maildir-iter.Tpo -c mailbox-list-maildir-iter.c  -fPIC -DPIC -o .libs/mailbox-list-maildir-iter.o
--- mailbox-list-none.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-index -I../../../src/lib-imap -I../../../src/lib-storage -I../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-list-none.lo -MD -MP -MF .deps/mailbox-list-none.Tpo -c mailbox-list-none.c  -fPIC -DPIC -o .libs/mailbox-list-none.o
--- mailbox-list-iter.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-index -I../../../src/lib-imap -I../../../src/lib-storage -I../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-list-iter.lo -MD -MP -MF .deps/mailbox-list-iter.Tpo -c mailbox-list-iter.c -o mailbox-list-iter.o >/dev/null 2>&1
--- mailbox-list-maildir.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-index -I../../../src/lib-imap -I../../../src/lib-storage -I../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-list-maildir.lo -MD -MP -MF .deps/mailbox-list-maildir.Tpo -c mailbox-list-maildir.c -o mailbox-list-maildir.o >/dev/null 2>&1
--- mailbox-list-none.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-index -I../../../src/lib-imap -I../../../src/lib-storage -I../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-list-none.lo -MD -MP -MF .deps/mailbox-list-none.Tpo -c mailbox-list-none.c -o mailbox-list-none.o >/dev/null 2>&1
mv -f .deps/mailbox-list-none.Tpo .deps/mailbox-list-none.Plo
--- mailbox-list-notify-tree.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-fs  -I../../../src/lib-mail  -I../../../src/lib-index  -I../../../src/lib-imap  -I../../../src/lib-storage  -I../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-list-notify-tree.lo -MD -MP -MF .deps/mailbox-list-notify-tree.Tpo -c -o mailbox-list-notify-tree.lo mailbox-list-notify-tree.c
--- mailbox-list-maildir.lo ---
mv -f .deps/mailbox-list-maildir.Tpo .deps/mailbox-list-maildir.Plo
--- mailbox-list-subscriptions.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-fs  -I../../../src/lib-mail  -I../../../src/lib-index  -I../../../src/lib-imap  -I../../../src/lib-storage  -I../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-list-subscriptions.lo -MD -MP -MF .deps/mailbox-list-subscriptions.Tpo -c -o mailbox-list-subscriptions.lo mailbox-list-subscriptions.c
--- mailbox-list-maildir-iter.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-index -I../../../src/lib-imap -I../../../src/lib-storage -I../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-list-maildir-iter.lo -MD -MP -MF .deps/mailbox-list-maildir-iter.Tpo -c mailbox-list-maildir-iter.c -o mailbox-list-maildir-iter.o >/dev/null 2>&1
--- mailbox-list-notify-tree.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-index -I../../../src/lib-imap -I../../../src/lib-storage -I../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-list-notify-tree.lo -MD -MP -MF .deps/mailbox-list-notify-tree.Tpo -c mailbox-list-notify-tree.c  -fPIC -DPIC -o .libs/mailbox-list-notify-tree.o
--- mailbox-list-subscriptions.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-index -I../../../src/lib-imap -I../../../src/lib-storage -I../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-list-subscriptions.lo -MD -MP -MF .deps/mailbox-list-subscriptions.Tpo -c mailbox-list-subscriptions.c  -fPIC -DPIC -o .libs/mailbox-list-subscriptions.o
--- mailbox-list-notify-tree.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-index -I../../../src/lib-imap -I../../../src/lib-storage -I../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-list-notify-tree.lo -MD -MP -MF .deps/mailbox-list-notify-tree.Tpo -c mailbox-list-notify-tree.c -o mailbox-list-notify-tree.o >/dev/null 2>&1
--- mailbox-list-subscriptions.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-index -I../../../src/lib-imap -I../../../src/lib-storage -I../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-list-subscriptions.lo -MD -MP -MF .deps/mailbox-list-subscriptions.Tpo -c mailbox-list-subscriptions.c -o mailbox-list-subscriptions.o >/dev/null 2>&1
--- mailbox-list-iter.lo ---
mv -f .deps/mailbox-list-iter.Tpo .deps/mailbox-list-iter.Plo
--- subscription-file.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-fs  -I../../../src/lib-mail  -I../../../src/lib-index  -I../../../src/lib-imap  -I../../../src/lib-storage  -I../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT subscription-file.lo -MD -MP -MF .deps/subscription-file.Tpo -c -o subscription-file.lo subscription-file.c
--- mailbox-list-maildir-iter.lo ---
mv -f .deps/mailbox-list-maildir-iter.Tpo .deps/mailbox-list-maildir-iter.Plo
--- subscription-file.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-index -I../../../src/lib-imap -I../../../src/lib-storage -I../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT subscription-file.lo -MD -MP -MF .deps/subscription-file.Tpo -c subscription-file.c  -fPIC -DPIC -o .libs/subscription-file.o
--- mailbox-list-notify-tree.lo ---
mv -f .deps/mailbox-list-notify-tree.Tpo .deps/mailbox-list-notify-tree.Plo
--- mailbox-list-subscriptions.lo ---
mv -f .deps/mailbox-list-subscriptions.Tpo .deps/mailbox-list-subscriptions.Plo
--- subscription-file.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-index -I../../../src/lib-imap -I../../../src/lib-storage -I../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT subscription-file.lo -MD -MP -MF .deps/subscription-file.Tpo -c subscription-file.c -o subscription-file.o >/dev/null 2>&1
mv -f .deps/subscription-file.Tpo .deps/subscription-file.Plo
--- libstorage_list.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 -mfunction-return=keep -Wall -W -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 libstorage_list.la  mail-storage-list-index-rebuild.lo  mailbox-list-delete.lo mailbox-list-fs.lo  mailbox-list-fs-flags.lo mailbox-list-fs-iter.lo  mailbox-list-index.lo mailbox-list-index-backend.lo  mailbox-list-index-iter.lo mailbox-list-index-notify.lo  mailbox-list-index-status.lo mailbox-list-index-sync.lo  mailbox-list-iter.lo mailbox-list-maildir.lo  mailbox-list-maildir-iter.lo mailbox-list-none.lo  mailbox-list-notify-tree.lo mailbox-list-subscriptions.lo  subscription-file.lo  
libtool: link: ar cr .libs/libstorage_list.a .libs/mail-storage-list-index-rebuild.o .libs/mailbox-list-delete.o .libs/mailbox-list-fs.o .libs/mailbox-list-fs-flags.o .libs/mailbox-list-fs-iter.o .libs/mailbox-list-index.o .libs/mailbox-list-index-backend.o .libs/mailbox-list-index-iter.o .libs/mailbox-list-index-notify.o .libs/mailbox-list-index-status.o .libs/mailbox-list-index-sync.o .libs/mailbox-list-iter.o .libs/mailbox-list-maildir.o .libs/mailbox-list-maildir-iter.o .libs/mailbox-list-none.o .libs/mailbox-list-notify-tree.o .libs/mailbox-list-subscriptions.o .libs/subscription-file.o 
libtool: link: ranlib .libs/libstorage_list.a
libtool: link: ( cd ".libs" && rm -f "libstorage_list.la" && ln -s "../libstorage_list.la" "libstorage_list.la" )
Making all in index
--- all-recursive ---
Making all in maildir
--- maildir-copy.lo ---
--- maildir-filename.lo ---
--- maildir-filename-flags.lo ---
--- maildir-keywords.lo ---
--- maildir-copy.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I../../../../src/lib  -I../../../../src/lib-settings  -I../../../../src/lib-mail  -I../../../../src/lib-imap  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT maildir-copy.lo -MD -MP -MF .deps/maildir-copy.Tpo -c -o maildir-copy.lo maildir-copy.c
--- maildir-filename.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I../../../../src/lib  -I../../../../src/lib-settings  -I../../../../src/lib-mail  -I../../../../src/lib-imap  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT maildir-filename.lo -MD -MP -MF .deps/maildir-filename.Tpo -c -o maildir-filename.lo maildir-filename.c
--- maildir-keywords.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I../../../../src/lib  -I../../../../src/lib-settings  -I../../../../src/lib-mail  -I../../../../src/lib-imap  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT maildir-keywords.lo -MD -MP -MF .deps/maildir-keywords.Tpo -c -o maildir-keywords.lo maildir-keywords.c
--- maildir-filename-flags.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I../../../../src/lib  -I../../../../src/lib-settings  -I../../../../src/lib-mail  -I../../../../src/lib-imap  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT maildir-filename-flags.lo -MD -MP -MF .deps/maildir-filename-flags.Tpo -c -o maildir-filename-flags.lo maildir-filename-flags.c
--- maildir-keywords.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT maildir-keywords.lo -MD -MP -MF .deps/maildir-keywords.Tpo -c maildir-keywords.c  -fPIC -DPIC -o .libs/maildir-keywords.o
--- maildir-copy.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT maildir-copy.lo -MD -MP -MF .deps/maildir-copy.Tpo -c maildir-copy.c  -fPIC -DPIC -o .libs/maildir-copy.o
--- maildir-filename-flags.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT maildir-filename-flags.lo -MD -MP -MF .deps/maildir-filename-flags.Tpo -c maildir-filename-flags.c  -fPIC -DPIC -o .libs/maildir-filename-flags.o
--- maildir-filename.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT maildir-filename.lo -MD -MP -MF .deps/maildir-filename.Tpo -c maildir-filename.c  -fPIC -DPIC -o .libs/maildir-filename.o
--- maildir-copy.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT maildir-copy.lo -MD -MP -MF .deps/maildir-copy.Tpo -c maildir-copy.c -o maildir-copy.o >/dev/null 2>&1
--- maildir-filename-flags.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT maildir-filename-flags.lo -MD -MP -MF .deps/maildir-filename-flags.Tpo -c maildir-filename-flags.c -o maildir-filename-flags.o >/dev/null 2>&1
--- maildir-filename.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT maildir-filename.lo -MD -MP -MF .deps/maildir-filename.Tpo -c maildir-filename.c -o maildir-filename.o >/dev/null 2>&1
--- maildir-keywords.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT maildir-keywords.lo -MD -MP -MF .deps/maildir-keywords.Tpo -c maildir-keywords.c -o maildir-keywords.o >/dev/null 2>&1
--- maildir-copy.lo ---
mv -f .deps/maildir-copy.Tpo .deps/maildir-copy.Plo
--- maildir-mail.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I../../../../src/lib  -I../../../../src/lib-settings  -I../../../../src/lib-mail  -I../../../../src/lib-imap  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT maildir-mail.lo -MD -MP -MF .deps/maildir-mail.Tpo -c -o maildir-mail.lo maildir-mail.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT maildir-mail.lo -MD -MP -MF .deps/maildir-mail.Tpo -c maildir-mail.c  -fPIC -DPIC -o .libs/maildir-mail.o
--- maildir-filename-flags.lo ---
mv -f .deps/maildir-filename-flags.Tpo .deps/maildir-filename-flags.Plo
--- maildir-save.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I../../../../src/lib  -I../../../../src/lib-settings  -I../../../../src/lib-mail  -I../../../../src/lib-imap  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT maildir-save.lo -MD -MP -MF .deps/maildir-save.Tpo -c -o maildir-save.lo maildir-save.c
--- maildir-filename.lo ---
mv -f .deps/maildir-filename.Tpo .deps/maildir-filename.Plo
--- maildir-settings.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I../../../../src/lib  -I../../../../src/lib-settings  -I../../../../src/lib-mail  -I../../../../src/lib-imap  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT maildir-settings.lo -MD -MP -MF .deps/maildir-settings.Tpo -c -o maildir-settings.lo maildir-settings.c
--- maildir-save.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT maildir-save.lo -MD -MP -MF .deps/maildir-save.Tpo -c maildir-save.c  -fPIC -DPIC -o .libs/maildir-save.o
--- maildir-settings.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT maildir-settings.lo -MD -MP -MF .deps/maildir-settings.Tpo -c maildir-settings.c  -fPIC -DPIC -o .libs/maildir-settings.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT maildir-settings.lo -MD -MP -MF .deps/maildir-settings.Tpo -c maildir-settings.c -o maildir-settings.o >/dev/null 2>&1
mv -f .deps/maildir-settings.Tpo .deps/maildir-settings.Plo
--- maildir-storage.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I../../../../src/lib  -I../../../../src/lib-settings  -I../../../../src/lib-mail  -I../../../../src/lib-imap  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT maildir-storage.lo -MD -MP -MF .deps/maildir-storage.Tpo -c -o maildir-storage.lo maildir-storage.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT maildir-storage.lo -MD -MP -MF .deps/maildir-storage.Tpo -c maildir-storage.c  -fPIC -DPIC -o .libs/maildir-storage.o
--- maildir-keywords.lo ---
mv -f .deps/maildir-keywords.Tpo .deps/maildir-keywords.Plo
--- maildir-sync.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I../../../../src/lib  -I../../../../src/lib-settings  -I../../../../src/lib-mail  -I../../../../src/lib-imap  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT maildir-sync.lo -MD -MP -MF .deps/maildir-sync.Tpo -c -o maildir-sync.lo maildir-sync.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT maildir-sync.lo -MD -MP -MF .deps/maildir-sync.Tpo -c maildir-sync.c  -fPIC -DPIC -o .libs/maildir-sync.o
--- maildir-mail.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT maildir-mail.lo -MD -MP -MF .deps/maildir-mail.Tpo -c maildir-mail.c -o maildir-mail.o >/dev/null 2>&1
--- maildir-storage.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT maildir-storage.lo -MD -MP -MF .deps/maildir-storage.Tpo -c maildir-storage.c -o maildir-storage.o >/dev/null 2>&1
--- maildir-save.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT maildir-save.lo -MD -MP -MF .deps/maildir-save.Tpo -c maildir-save.c -o maildir-save.o >/dev/null 2>&1
--- maildir-mail.lo ---
mv -f .deps/maildir-mail.Tpo .deps/maildir-mail.Plo
--- maildir-sync-index.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I../../../../src/lib  -I../../../../src/lib-settings  -I../../../../src/lib-mail  -I../../../../src/lib-imap  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT maildir-sync-index.lo -MD -MP -MF .deps/maildir-sync-index.Tpo -c -o maildir-sync-index.lo maildir-sync-index.c
--- maildir-sync.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT maildir-sync.lo -MD -MP -MF .deps/maildir-sync.Tpo -c maildir-sync.c -o maildir-sync.o >/dev/null 2>&1
--- maildir-sync-index.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT maildir-sync-index.lo -MD -MP -MF .deps/maildir-sync-index.Tpo -c maildir-sync-index.c  -fPIC -DPIC -o .libs/maildir-sync-index.o
--- maildir-storage.lo ---
mv -f .deps/maildir-storage.Tpo .deps/maildir-storage.Plo
--- maildir-uidlist.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I../../../../src/lib  -I../../../../src/lib-settings  -I../../../../src/lib-mail  -I../../../../src/lib-imap  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT maildir-uidlist.lo -MD -MP -MF .deps/maildir-uidlist.Tpo -c -o maildir-uidlist.lo maildir-uidlist.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT maildir-uidlist.lo -MD -MP -MF .deps/maildir-uidlist.Tpo -c maildir-uidlist.c  -fPIC -DPIC -o .libs/maildir-uidlist.o
--- maildir-save.lo ---
mv -f .deps/maildir-save.Tpo .deps/maildir-save.Plo
--- maildir-util.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I../../../../src/lib  -I../../../../src/lib-settings  -I../../../../src/lib-mail  -I../../../../src/lib-imap  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT maildir-util.lo -MD -MP -MF .deps/maildir-util.Tpo -c -o maildir-util.lo maildir-util.c
--- maildir-sync-index.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT maildir-sync-index.lo -MD -MP -MF .deps/maildir-sync-index.Tpo -c maildir-sync-index.c -o maildir-sync-index.o >/dev/null 2>&1
--- maildir-util.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT maildir-util.lo -MD -MP -MF .deps/maildir-util.Tpo -c maildir-util.c  -fPIC -DPIC -o .libs/maildir-util.o
--- maildir-sync.lo ---
mv -f .deps/maildir-sync.Tpo .deps/maildir-sync.Plo
--- maildir-util.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT maildir-util.lo -MD -MP -MF .deps/maildir-util.Tpo -c maildir-util.c -o maildir-util.o >/dev/null 2>&1
--- maildir-sync-index.lo ---
mv -f .deps/maildir-sync-index.Tpo .deps/maildir-sync-index.Plo
--- maildir-util.lo ---
mv -f .deps/maildir-util.Tpo .deps/maildir-util.Plo
--- maildir-uidlist.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT maildir-uidlist.lo -MD -MP -MF .deps/maildir-uidlist.Tpo -c maildir-uidlist.c -o maildir-uidlist.o >/dev/null 2>&1
mv -f .deps/maildir-uidlist.Tpo .deps/maildir-uidlist.Plo
--- libstorage_maildir.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 -mfunction-return=keep -Wall -W -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 libstorage_maildir.la  maildir-copy.lo maildir-filename.lo  maildir-filename-flags.lo maildir-keywords.lo maildir-mail.lo  maildir-save.lo maildir-settings.lo maildir-storage.lo  maildir-sync.lo maildir-sync-index.lo maildir-uidlist.lo  maildir-util.lo  
libtool: link: ar cr .libs/libstorage_maildir.a .libs/maildir-copy.o .libs/maildir-filename.o .libs/maildir-filename-flags.o .libs/maildir-keywords.o .libs/maildir-mail.o .libs/maildir-save.o .libs/maildir-settings.o .libs/maildir-storage.o .libs/maildir-sync.o .libs/maildir-sync-index.o .libs/maildir-uidlist.o .libs/maildir-util.o 
libtool: link: ranlib .libs/libstorage_maildir.a
libtool: link: ( cd ".libs" && rm -f "libstorage_maildir.la" && ln -s "../libstorage_maildir.la" "libstorage_maildir.la" )
Making all in mbox
--- istream-raw-mbox.lo ---
--- mbox-file.lo ---
--- mbox-lock.lo ---
--- mbox-mail.lo ---
--- istream-raw-mbox.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I../../../../src/lib  -I../../../../src/lib-settings  -I../../../../src/lib-master  -I../../../../src/lib-mail  -I../../../../src/lib-imap  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-raw-mbox.lo -MD -MP -MF .deps/istream-raw-mbox.Tpo -c -o istream-raw-mbox.lo istream-raw-mbox.c
--- mbox-file.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I../../../../src/lib  -I../../../../src/lib-settings  -I../../../../src/lib-master  -I../../../../src/lib-mail  -I../../../../src/lib-imap  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-file.lo -MD -MP -MF .deps/mbox-file.Tpo -c -o mbox-file.lo mbox-file.c
--- mbox-lock.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I../../../../src/lib  -I../../../../src/lib-settings  -I../../../../src/lib-master  -I../../../../src/lib-mail  -I../../../../src/lib-imap  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-lock.lo -MD -MP -MF .deps/mbox-lock.Tpo -c -o mbox-lock.lo mbox-lock.c
--- mbox-mail.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I../../../../src/lib  -I../../../../src/lib-settings  -I../../../../src/lib-master  -I../../../../src/lib-mail  -I../../../../src/lib-imap  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-mail.lo -MD -MP -MF .deps/mbox-mail.Tpo -c -o mbox-mail.lo mbox-mail.c
--- mbox-file.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-master -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-file.lo -MD -MP -MF .deps/mbox-file.Tpo -c mbox-file.c  -fPIC -DPIC -o .libs/mbox-file.o
--- istream-raw-mbox.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-master -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-raw-mbox.lo -MD -MP -MF .deps/istream-raw-mbox.Tpo -c istream-raw-mbox.c  -fPIC -DPIC -o .libs/istream-raw-mbox.o
--- mbox-mail.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-master -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-mail.lo -MD -MP -MF .deps/mbox-mail.Tpo -c mbox-mail.c  -fPIC -DPIC -o .libs/mbox-mail.o
--- mbox-lock.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-master -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-lock.lo -MD -MP -MF .deps/mbox-lock.Tpo -c mbox-lock.c  -fPIC -DPIC -o .libs/mbox-lock.o
--- mbox-file.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-master -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-file.lo -MD -MP -MF .deps/mbox-file.Tpo -c mbox-file.c -o mbox-file.o >/dev/null 2>&1
--- mbox-mail.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-master -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-mail.lo -MD -MP -MF .deps/mbox-mail.Tpo -c mbox-mail.c -o mbox-mail.o >/dev/null 2>&1
--- istream-raw-mbox.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-master -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-raw-mbox.lo -MD -MP -MF .deps/istream-raw-mbox.Tpo -c istream-raw-mbox.c -o istream-raw-mbox.o >/dev/null 2>&1
--- mbox-file.lo ---
mv -f .deps/mbox-file.Tpo .deps/mbox-file.Plo
--- mbox-md5-apop3d.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I../../../../src/lib  -I../../../../src/lib-settings  -I../../../../src/lib-master  -I../../../../src/lib-mail  -I../../../../src/lib-imap  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-md5-apop3d.lo -MD -MP -MF .deps/mbox-md5-apop3d.Tpo -c -o mbox-md5-apop3d.lo mbox-md5-apop3d.c
--- mbox-lock.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-master -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-lock.lo -MD -MP -MF .deps/mbox-lock.Tpo -c mbox-lock.c -o mbox-lock.o >/dev/null 2>&1
--- mbox-md5-apop3d.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-master -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-md5-apop3d.lo -MD -MP -MF .deps/mbox-md5-apop3d.Tpo -c mbox-md5-apop3d.c  -fPIC -DPIC -o .libs/mbox-md5-apop3d.o
--- mbox-mail.lo ---
mv -f .deps/mbox-mail.Tpo .deps/mbox-mail.Plo
--- mbox-md5-all.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I../../../../src/lib  -I../../../../src/lib-settings  -I../../../../src/lib-master  -I../../../../src/lib-mail  -I../../../../src/lib-imap  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-md5-all.lo -MD -MP -MF .deps/mbox-md5-all.Tpo -c -o mbox-md5-all.lo mbox-md5-all.c
--- mbox-md5-apop3d.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-master -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-md5-apop3d.lo -MD -MP -MF .deps/mbox-md5-apop3d.Tpo -c mbox-md5-apop3d.c -o mbox-md5-apop3d.o >/dev/null 2>&1
--- mbox-md5-all.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-master -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-md5-all.lo -MD -MP -MF .deps/mbox-md5-all.Tpo -c mbox-md5-all.c  -fPIC -DPIC -o .libs/mbox-md5-all.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-master -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-md5-all.lo -MD -MP -MF .deps/mbox-md5-all.Tpo -c mbox-md5-all.c -o mbox-md5-all.o >/dev/null 2>&1
--- mbox-md5-apop3d.lo ---
mv -f .deps/mbox-md5-apop3d.Tpo .deps/mbox-md5-apop3d.Plo
--- mbox-save.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I../../../../src/lib  -I../../../../src/lib-settings  -I../../../../src/lib-master  -I../../../../src/lib-mail  -I../../../../src/lib-imap  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-save.lo -MD -MP -MF .deps/mbox-save.Tpo -c -o mbox-save.lo mbox-save.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-master -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-save.lo -MD -MP -MF .deps/mbox-save.Tpo -c mbox-save.c  -fPIC -DPIC -o .libs/mbox-save.o
--- mbox-md5-all.lo ---
mv -f .deps/mbox-md5-all.Tpo .deps/mbox-md5-all.Plo
--- mbox-settings.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I../../../../src/lib  -I../../../../src/lib-settings  -I../../../../src/lib-master  -I../../../../src/lib-mail  -I../../../../src/lib-imap  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-settings.lo -MD -MP -MF .deps/mbox-settings.Tpo -c -o mbox-settings.lo mbox-settings.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-master -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-settings.lo -MD -MP -MF .deps/mbox-settings.Tpo -c mbox-settings.c  -fPIC -DPIC -o .libs/mbox-settings.o
--- istream-raw-mbox.lo ---
mv -f .deps/istream-raw-mbox.Tpo .deps/istream-raw-mbox.Plo
--- mbox-sync-list-index.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I../../../../src/lib  -I../../../../src/lib-settings  -I../../../../src/lib-master  -I../../../../src/lib-mail  -I../../../../src/lib-imap  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-sync-list-index.lo -MD -MP -MF .deps/mbox-sync-list-index.Tpo -c -o mbox-sync-list-index.lo mbox-sync-list-index.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-master -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-sync-list-index.lo -MD -MP -MF .deps/mbox-sync-list-index.Tpo -c mbox-sync-list-index.c  -fPIC -DPIC -o .libs/mbox-sync-list-index.o
--- mbox-settings.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-master -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-settings.lo -MD -MP -MF .deps/mbox-settings.Tpo -c mbox-settings.c -o mbox-settings.o >/dev/null 2>&1
--- mbox-lock.lo ---
mv -f .deps/mbox-lock.Tpo .deps/mbox-lock.Plo
--- mbox-sync-parse.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I../../../../src/lib  -I../../../../src/lib-settings  -I../../../../src/lib-master  -I../../../../src/lib-mail  -I../../../../src/lib-imap  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-sync-parse.lo -MD -MP -MF .deps/mbox-sync-parse.Tpo -c -o mbox-sync-parse.lo mbox-sync-parse.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-master -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-sync-parse.lo -MD -MP -MF .deps/mbox-sync-parse.Tpo -c mbox-sync-parse.c  -fPIC -DPIC -o .libs/mbox-sync-parse.o
--- mbox-settings.lo ---
mv -f .deps/mbox-settings.Tpo .deps/mbox-settings.Plo
--- mbox-sync-rewrite.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I../../../../src/lib  -I../../../../src/lib-settings  -I../../../../src/lib-master  -I../../../../src/lib-mail  -I../../../../src/lib-imap  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-sync-rewrite.lo -MD -MP -MF .deps/mbox-sync-rewrite.Tpo -c -o mbox-sync-rewrite.lo mbox-sync-rewrite.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-master -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-sync-rewrite.lo -MD -MP -MF .deps/mbox-sync-rewrite.Tpo -c mbox-sync-rewrite.c  -fPIC -DPIC -o .libs/mbox-sync-rewrite.o
--- mbox-sync-list-index.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-master -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-sync-list-index.lo -MD -MP -MF .deps/mbox-sync-list-index.Tpo -c mbox-sync-list-index.c -o mbox-sync-list-index.o >/dev/null 2>&1
--- mbox-save.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-master -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-save.lo -MD -MP -MF .deps/mbox-save.Tpo -c mbox-save.c -o mbox-save.o >/dev/null 2>&1
--- mbox-sync-list-index.lo ---
mv -f .deps/mbox-sync-list-index.Tpo .deps/mbox-sync-list-index.Plo
--- mbox-sync-update.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I../../../../src/lib  -I../../../../src/lib-settings  -I../../../../src/lib-master  -I../../../../src/lib-mail  -I../../../../src/lib-imap  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-sync-update.lo -MD -MP -MF .deps/mbox-sync-update.Tpo -c -o mbox-sync-update.lo mbox-sync-update.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-master -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-sync-update.lo -MD -MP -MF .deps/mbox-sync-update.Tpo -c mbox-sync-update.c  -fPIC -DPIC -o .libs/mbox-sync-update.o
--- mbox-sync-parse.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-master -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-sync-parse.lo -MD -MP -MF .deps/mbox-sync-parse.Tpo -c mbox-sync-parse.c -o mbox-sync-parse.o >/dev/null 2>&1
--- mbox-sync-rewrite.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-master -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-sync-rewrite.lo -MD -MP -MF .deps/mbox-sync-rewrite.Tpo -c mbox-sync-rewrite.c -o mbox-sync-rewrite.o >/dev/null 2>&1
--- mbox-sync-update.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-master -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-sync-update.lo -MD -MP -MF .deps/mbox-sync-update.Tpo -c mbox-sync-update.c -o mbox-sync-update.o >/dev/null 2>&1
--- mbox-save.lo ---
mv -f .deps/mbox-save.Tpo .deps/mbox-save.Plo
--- mbox-sync.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I../../../../src/lib  -I../../../../src/lib-settings  -I../../../../src/lib-master  -I../../../../src/lib-mail  -I../../../../src/lib-imap  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-sync.lo -MD -MP -MF .deps/mbox-sync.Tpo -c -o mbox-sync.lo mbox-sync.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-master -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-sync.lo -MD -MP -MF .deps/mbox-sync.Tpo -c mbox-sync.c  -fPIC -DPIC -o .libs/mbox-sync.o
--- mbox-sync-rewrite.lo ---
mv -f .deps/mbox-sync-rewrite.Tpo .deps/mbox-sync-rewrite.Plo
--- mbox-storage.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I../../../../src/lib  -I../../../../src/lib-settings  -I../../../../src/lib-master  -I../../../../src/lib-mail  -I../../../../src/lib-imap  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-storage.lo -MD -MP -MF .deps/mbox-storage.Tpo -c -o mbox-storage.lo mbox-storage.c
--- mbox-sync-parse.lo ---
mv -f .deps/mbox-sync-parse.Tpo .deps/mbox-sync-parse.Plo
--- mbox-storage.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-master -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-storage.lo -MD -MP -MF .deps/mbox-storage.Tpo -c mbox-storage.c  -fPIC -DPIC -o .libs/mbox-storage.o
--- mbox-sync-update.lo ---
mv -f .deps/mbox-sync-update.Tpo .deps/mbox-sync-update.Plo
--- mbox-storage.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-master -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-storage.lo -MD -MP -MF .deps/mbox-storage.Tpo -c mbox-storage.c -o mbox-storage.o >/dev/null 2>&1
mv -f .deps/mbox-storage.Tpo .deps/mbox-storage.Plo
--- mbox-sync.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-master -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-sync.lo -MD -MP -MF .deps/mbox-sync.Tpo -c mbox-sync.c -o mbox-sync.o >/dev/null 2>&1
mv -f .deps/mbox-sync.Tpo .deps/mbox-sync.Plo
--- libstorage_mbox.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 -mfunction-return=keep -Wall -W -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 libstorage_mbox.la  istream-raw-mbox.lo mbox-file.lo  mbox-lock.lo mbox-mail.lo mbox-md5-apop3d.lo mbox-md5-all.lo  mbox-save.lo mbox-settings.lo mbox-sync-list-index.lo  mbox-sync-parse.lo mbox-sync-rewrite.lo mbox-sync-update.lo  mbox-sync.lo mbox-storage.lo  
libtool: link: ar cr .libs/libstorage_mbox.a .libs/istream-raw-mbox.o .libs/mbox-file.o .libs/mbox-lock.o .libs/mbox-mail.o .libs/mbox-md5-apop3d.o .libs/mbox-md5-all.o .libs/mbox-save.o .libs/mbox-settings.o .libs/mbox-sync-list-index.o .libs/mbox-sync-parse.o .libs/mbox-sync-rewrite.o .libs/mbox-sync-update.o .libs/mbox-sync.o .libs/mbox-storage.o 
libtool: link: ranlib .libs/libstorage_mbox.a
libtool: link: ( cd ".libs" && rm -f "libstorage_mbox.la" && ln -s "../libstorage_mbox.la" "libstorage_mbox.la" )
Making all in dbox-common
--- dbox-attachment.lo ---
--- dbox-file.lo ---
--- dbox-file-fix.lo ---
--- dbox-mail.lo ---
--- dbox-attachment.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I../../../../src/lib  -I../../../../src/lib-settings  -I../../../../src/lib-fs  -I../../../../src/lib-mail  -I../../../../src/lib-imap  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dbox-attachment.lo -MD -MP -MF .deps/dbox-attachment.Tpo -c -o dbox-attachment.lo dbox-attachment.c
--- dbox-file.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I../../../../src/lib  -I../../../../src/lib-settings  -I../../../../src/lib-fs  -I../../../../src/lib-mail  -I../../../../src/lib-imap  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dbox-file.lo -MD -MP -MF .deps/dbox-file.Tpo -c -o dbox-file.lo dbox-file.c
--- dbox-file-fix.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I../../../../src/lib  -I../../../../src/lib-settings  -I../../../../src/lib-fs  -I../../../../src/lib-mail  -I../../../../src/lib-imap  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dbox-file-fix.lo -MD -MP -MF .deps/dbox-file-fix.Tpo -c -o dbox-file-fix.lo dbox-file-fix.c
--- dbox-mail.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I../../../../src/lib  -I../../../../src/lib-settings  -I../../../../src/lib-fs  -I../../../../src/lib-mail  -I../../../../src/lib-imap  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dbox-mail.lo -MD -MP -MF .deps/dbox-mail.Tpo -c -o dbox-mail.lo dbox-mail.c
--- dbox-file-fix.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-fs -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dbox-file-fix.lo -MD -MP -MF .deps/dbox-file-fix.Tpo -c dbox-file-fix.c  -fPIC -DPIC -o .libs/dbox-file-fix.o
--- dbox-attachment.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-fs -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dbox-attachment.lo -MD -MP -MF .deps/dbox-attachment.Tpo -c dbox-attachment.c  -fPIC -DPIC -o .libs/dbox-attachment.o
--- dbox-file.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-fs -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dbox-file.lo -MD -MP -MF .deps/dbox-file.Tpo -c dbox-file.c  -fPIC -DPIC -o .libs/dbox-file.o
--- dbox-mail.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-fs -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dbox-mail.lo -MD -MP -MF .deps/dbox-mail.Tpo -c dbox-mail.c  -fPIC -DPIC -o .libs/dbox-mail.o
--- dbox-attachment.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-fs -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dbox-attachment.lo -MD -MP -MF .deps/dbox-attachment.Tpo -c dbox-attachment.c -o dbox-attachment.o >/dev/null 2>&1
--- dbox-mail.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-fs -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dbox-mail.lo -MD -MP -MF .deps/dbox-mail.Tpo -c dbox-mail.c -o dbox-mail.o >/dev/null 2>&1
--- dbox-attachment.lo ---
mv -f .deps/dbox-attachment.Tpo .deps/dbox-attachment.Plo
--- dbox-save.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I../../../../src/lib  -I../../../../src/lib-settings  -I../../../../src/lib-fs  -I../../../../src/lib-mail  -I../../../../src/lib-imap  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dbox-save.lo -MD -MP -MF .deps/dbox-save.Tpo -c -o dbox-save.lo dbox-save.c
--- dbox-file-fix.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-fs -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dbox-file-fix.lo -MD -MP -MF .deps/dbox-file-fix.Tpo -c dbox-file-fix.c -o dbox-file-fix.o >/dev/null 2>&1
--- dbox-save.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-fs -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dbox-save.lo -MD -MP -MF .deps/dbox-save.Tpo -c dbox-save.c  -fPIC -DPIC -o .libs/dbox-save.o
--- dbox-file.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-fs -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dbox-file.lo -MD -MP -MF .deps/dbox-file.Tpo -c dbox-file.c -o dbox-file.o >/dev/null 2>&1
--- dbox-mail.lo ---
mv -f .deps/dbox-mail.Tpo .deps/dbox-mail.Plo
--- dbox-storage.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I../../../../src/lib  -I../../../../src/lib-settings  -I../../../../src/lib-fs  -I../../../../src/lib-mail  -I../../../../src/lib-imap  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dbox-storage.lo -MD -MP -MF .deps/dbox-storage.Tpo -c -o dbox-storage.lo dbox-storage.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-fs -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dbox-storage.lo -MD -MP -MF .deps/dbox-storage.Tpo -c dbox-storage.c  -fPIC -DPIC -o .libs/dbox-storage.o
--- dbox-save.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-fs -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dbox-save.lo -MD -MP -MF .deps/dbox-save.Tpo -c dbox-save.c -o dbox-save.o >/dev/null 2>&1
--- dbox-file-fix.lo ---
mv -f .deps/dbox-file-fix.Tpo .deps/dbox-file-fix.Plo
--- dbox-save.lo ---
mv -f .deps/dbox-save.Tpo .deps/dbox-save.Plo
--- dbox-storage.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-fs -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dbox-storage.lo -MD -MP -MF .deps/dbox-storage.Tpo -c dbox-storage.c -o dbox-storage.o >/dev/null 2>&1
--- dbox-file.lo ---
mv -f .deps/dbox-file.Tpo .deps/dbox-file.Plo
--- dbox-storage.lo ---
mv -f .deps/dbox-storage.Tpo .deps/dbox-storage.Plo
--- libstorage_dbox_common.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 -mfunction-return=keep -Wall -W -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 libstorage_dbox_common.la  dbox-attachment.lo dbox-file.lo  dbox-file-fix.lo dbox-mail.lo dbox-save.lo dbox-storage.lo  
libtool: link: ar cr .libs/libstorage_dbox_common.a .libs/dbox-attachment.o .libs/dbox-file.o .libs/dbox-file-fix.o .libs/dbox-mail.o .libs/dbox-save.o .libs/dbox-storage.o 
libtool: link: ranlib .libs/libstorage_dbox_common.a
libtool: link: ( cd ".libs" && rm -f "libstorage_dbox_common.la" && ln -s "../libstorage_dbox_common.la" "libstorage_dbox_common.la" )
Making all in dbox-multi
--- mdbox-deleted-storage.lo ---
--- mdbox-file.lo ---
--- mdbox-mail.lo ---
--- mdbox-map.lo ---
--- mdbox-deleted-storage.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I../../../../src/lib  -I../../../../src/lib-settings  -I../../../../src/lib-master  -I../../../../src/lib-mail  -I../../../../src/lib-imap  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/index  -I../../../../src/lib-storage/index/dbox-common -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mdbox-deleted-storage.lo -MD -MP -MF .deps/mdbox-deleted-storage.Tpo -c -o mdbox-deleted-storage.lo mdbox-deleted-storage.c
--- mdbox-file.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I../../../../src/lib  -I../../../../src/lib-settings  -I../../../../src/lib-master  -I../../../../src/lib-mail  -I../../../../src/lib-imap  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/index  -I../../../../src/lib-storage/index/dbox-common -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mdbox-file.lo -MD -MP -MF .deps/mdbox-file.Tpo -c -o mdbox-file.lo mdbox-file.c
--- mdbox-map.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I../../../../src/lib  -I../../../../src/lib-settings  -I../../../../src/lib-master  -I../../../../src/lib-mail  -I../../../../src/lib-imap  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/index  -I../../../../src/lib-storage/index/dbox-common -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mdbox-map.lo -MD -MP -MF .deps/mdbox-map.Tpo -c -o mdbox-map.lo mdbox-map.c
--- mdbox-mail.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I../../../../src/lib  -I../../../../src/lib-settings  -I../../../../src/lib-master  -I../../../../src/lib-mail  -I../../../../src/lib-imap  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/index  -I../../../../src/lib-storage/index/dbox-common -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mdbox-mail.lo -MD -MP -MF .deps/mdbox-mail.Tpo -c -o mdbox-mail.lo mdbox-mail.c
--- mdbox-deleted-storage.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-master -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I../../../../src/lib-storage/index/dbox-common -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mdbox-deleted-storage.lo -MD -MP -MF .deps/mdbox-deleted-storage.Tpo -c mdbox-deleted-storage.c  -fPIC -DPIC -o .libs/mdbox-deleted-storage.o
--- mdbox-mail.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-master -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I../../../../src/lib-storage/index/dbox-common -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mdbox-mail.lo -MD -MP -MF .deps/mdbox-mail.Tpo -c mdbox-mail.c  -fPIC -DPIC -o .libs/mdbox-mail.o
--- mdbox-file.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-master -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I../../../../src/lib-storage/index/dbox-common -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mdbox-file.lo -MD -MP -MF .deps/mdbox-file.Tpo -c mdbox-file.c  -fPIC -DPIC -o .libs/mdbox-file.o
--- mdbox-map.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-master -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I../../../../src/lib-storage/index/dbox-common -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mdbox-map.lo -MD -MP -MF .deps/mdbox-map.Tpo -c mdbox-map.c  -fPIC -DPIC -o .libs/mdbox-map.o
--- mdbox-deleted-storage.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-master -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I../../../../src/lib-storage/index/dbox-common -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mdbox-deleted-storage.lo -MD -MP -MF .deps/mdbox-deleted-storage.Tpo -c mdbox-deleted-storage.c -o mdbox-deleted-storage.o >/dev/null 2>&1
--- mdbox-mail.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-master -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I../../../../src/lib-storage/index/dbox-common -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mdbox-mail.lo -MD -MP -MF .deps/mdbox-mail.Tpo -c mdbox-mail.c -o mdbox-mail.o >/dev/null 2>&1
--- mdbox-file.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-master -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I../../../../src/lib-storage/index/dbox-common -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mdbox-file.lo -MD -MP -MF .deps/mdbox-file.Tpo -c mdbox-file.c -o mdbox-file.o >/dev/null 2>&1
--- mdbox-deleted-storage.lo ---
mv -f .deps/mdbox-deleted-storage.Tpo .deps/mdbox-deleted-storage.Plo
--- mdbox-purge.lo ---
--- mdbox-mail.lo ---
mv -f .deps/mdbox-mail.Tpo .deps/mdbox-mail.Plo
--- mdbox-purge.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I../../../../src/lib  -I../../../../src/lib-settings  -I../../../../src/lib-master  -I../../../../src/lib-mail  -I../../../../src/lib-imap  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/index  -I../../../../src/lib-storage/index/dbox-common -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mdbox-purge.lo -MD -MP -MF .deps/mdbox-purge.Tpo -c -o mdbox-purge.lo mdbox-purge.c
--- mdbox-save.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I../../../../src/lib  -I../../../../src/lib-settings  -I../../../../src/lib-master  -I../../../../src/lib-mail  -I../../../../src/lib-imap  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/index  -I../../../../src/lib-storage/index/dbox-common -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mdbox-save.lo -MD -MP -MF .deps/mdbox-save.Tpo -c -o mdbox-save.lo mdbox-save.c
--- mdbox-purge.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-master -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I../../../../src/lib-storage/index/dbox-common -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mdbox-purge.lo -MD -MP -MF .deps/mdbox-purge.Tpo -c mdbox-purge.c  -fPIC -DPIC -o .libs/mdbox-purge.o
--- mdbox-save.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-master -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I../../../../src/lib-storage/index/dbox-common -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mdbox-save.lo -MD -MP -MF .deps/mdbox-save.Tpo -c mdbox-save.c  -fPIC -DPIC -o .libs/mdbox-save.o
--- mdbox-file.lo ---
mv -f .deps/mdbox-file.Tpo .deps/mdbox-file.Plo
--- mdbox-settings.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I../../../../src/lib  -I../../../../src/lib-settings  -I../../../../src/lib-master  -I../../../../src/lib-mail  -I../../../../src/lib-imap  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/index  -I../../../../src/lib-storage/index/dbox-common -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mdbox-settings.lo -MD -MP -MF .deps/mdbox-settings.Tpo -c -o mdbox-settings.lo mdbox-settings.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-master -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I../../../../src/lib-storage/index/dbox-common -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mdbox-settings.lo -MD -MP -MF .deps/mdbox-settings.Tpo -c mdbox-settings.c  -fPIC -DPIC -o .libs/mdbox-settings.o
--- mdbox-map.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-master -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I../../../../src/lib-storage/index/dbox-common -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mdbox-map.lo -MD -MP -MF .deps/mdbox-map.Tpo -c mdbox-map.c -o mdbox-map.o >/dev/null 2>&1
--- mdbox-settings.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-master -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I../../../../src/lib-storage/index/dbox-common -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mdbox-settings.lo -MD -MP -MF .deps/mdbox-settings.Tpo -c mdbox-settings.c -o mdbox-settings.o >/dev/null 2>&1
--- mdbox-save.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-master -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I../../../../src/lib-storage/index/dbox-common -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mdbox-save.lo -MD -MP -MF .deps/mdbox-save.Tpo -c mdbox-save.c -o mdbox-save.o >/dev/null 2>&1
--- mdbox-settings.lo ---
mv -f .deps/mdbox-settings.Tpo .deps/mdbox-settings.Plo
--- mdbox-sync.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I../../../../src/lib  -I../../../../src/lib-settings  -I../../../../src/lib-master  -I../../../../src/lib-mail  -I../../../../src/lib-imap  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/index  -I../../../../src/lib-storage/index/dbox-common -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mdbox-sync.lo -MD -MP -MF .deps/mdbox-sync.Tpo -c -o mdbox-sync.lo mdbox-sync.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-master -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I../../../../src/lib-storage/index/dbox-common -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mdbox-sync.lo -MD -MP -MF .deps/mdbox-sync.Tpo -c mdbox-sync.c  -fPIC -DPIC -o .libs/mdbox-sync.o
--- mdbox-purge.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-master -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I../../../../src/lib-storage/index/dbox-common -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mdbox-purge.lo -MD -MP -MF .deps/mdbox-purge.Tpo -c mdbox-purge.c -o mdbox-purge.o >/dev/null 2>&1
--- mdbox-save.lo ---
mv -f .deps/mdbox-save.Tpo .deps/mdbox-save.Plo
--- mdbox-storage.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I../../../../src/lib  -I../../../../src/lib-settings  -I../../../../src/lib-master  -I../../../../src/lib-mail  -I../../../../src/lib-imap  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/index  -I../../../../src/lib-storage/index/dbox-common -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mdbox-storage.lo -MD -MP -MF .deps/mdbox-storage.Tpo -c -o mdbox-storage.lo mdbox-storage.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-master -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I../../../../src/lib-storage/index/dbox-common -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mdbox-storage.lo -MD -MP -MF .deps/mdbox-storage.Tpo -c mdbox-storage.c  -fPIC -DPIC -o .libs/mdbox-storage.o
--- mdbox-sync.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-master -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I../../../../src/lib-storage/index/dbox-common -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mdbox-sync.lo -MD -MP -MF .deps/mdbox-sync.Tpo -c mdbox-sync.c -o mdbox-sync.o >/dev/null 2>&1
--- mdbox-purge.lo ---
mv -f .deps/mdbox-purge.Tpo .deps/mdbox-purge.Plo
--- mdbox-storage-rebuild.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I../../../../src/lib  -I../../../../src/lib-settings  -I../../../../src/lib-master  -I../../../../src/lib-mail  -I../../../../src/lib-imap  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/index  -I../../../../src/lib-storage/index/dbox-common -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mdbox-storage-rebuild.lo -MD -MP -MF .deps/mdbox-storage-rebuild.Tpo -c -o mdbox-storage-rebuild.lo mdbox-storage-rebuild.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-master -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I../../../../src/lib-storage/index/dbox-common -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mdbox-storage-rebuild.lo -MD -MP -MF .deps/mdbox-storage-rebuild.Tpo -c mdbox-storage-rebuild.c  -fPIC -DPIC -o .libs/mdbox-storage-rebuild.o
--- mdbox-map.lo ---
mv -f .deps/mdbox-map.Tpo .deps/mdbox-map.Plo
--- mdbox-sync.lo ---
mv -f .deps/mdbox-sync.Tpo .deps/mdbox-sync.Plo
--- mdbox-storage.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-master -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I../../../../src/lib-storage/index/dbox-common -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mdbox-storage.lo -MD -MP -MF .deps/mdbox-storage.Tpo -c mdbox-storage.c -o mdbox-storage.o >/dev/null 2>&1
mv -f .deps/mdbox-storage.Tpo .deps/mdbox-storage.Plo
--- mdbox-storage-rebuild.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-master -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I../../../../src/lib-storage/index/dbox-common -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mdbox-storage-rebuild.lo -MD -MP -MF .deps/mdbox-storage-rebuild.Tpo -c mdbox-storage-rebuild.c -o mdbox-storage-rebuild.o >/dev/null 2>&1
mv -f .deps/mdbox-storage-rebuild.Tpo .deps/mdbox-storage-rebuild.Plo
--- libstorage_dbox_multi.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 -mfunction-return=keep -Wall -W -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 libstorage_dbox_multi.la  mdbox-deleted-storage.lo  mdbox-file.lo mdbox-mail.lo mdbox-map.lo mdbox-purge.lo  mdbox-save.lo mdbox-settings.lo mdbox-sync.lo mdbox-storage.lo  mdbox-storage-rebuild.lo  
libtool: link: ar cr .libs/libstorage_dbox_multi.a .libs/mdbox-deleted-storage.o .libs/mdbox-file.o .libs/mdbox-mail.o .libs/mdbox-map.o .libs/mdbox-purge.o .libs/mdbox-save.o .libs/mdbox-settings.o .libs/mdbox-sync.o .libs/mdbox-storage.o .libs/mdbox-storage-rebuild.o 
libtool: link: ranlib .libs/libstorage_dbox_multi.a
libtool: link: ( cd ".libs" && rm -f "libstorage_dbox_multi.la" && ln -s "../libstorage_dbox_multi.la" "libstorage_dbox_multi.la" )
Making all in dbox-single
--- sdbox-copy.lo ---
--- sdbox-file.lo ---
--- sdbox-mail.lo ---
--- sdbox-save.lo ---
--- sdbox-copy.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I../../../../src/lib  -I../../../../src/lib-settings  -I../../../../src/lib-master  -I../../../../src/lib-fs  -I../../../../src/lib-mail  -I../../../../src/lib-imap  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/index  -I../../../../src/lib-storage/index/dbox-common -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT sdbox-copy.lo -MD -MP -MF .deps/sdbox-copy.Tpo -c -o sdbox-copy.lo sdbox-copy.c
--- sdbox-file.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I../../../../src/lib  -I../../../../src/lib-settings  -I../../../../src/lib-master  -I../../../../src/lib-fs  -I../../../../src/lib-mail  -I../../../../src/lib-imap  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/index  -I../../../../src/lib-storage/index/dbox-common -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT sdbox-file.lo -MD -MP -MF .deps/sdbox-file.Tpo -c -o sdbox-file.lo sdbox-file.c
--- sdbox-mail.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I../../../../src/lib  -I../../../../src/lib-settings  -I../../../../src/lib-master  -I../../../../src/lib-fs  -I../../../../src/lib-mail  -I../../../../src/lib-imap  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/index  -I../../../../src/lib-storage/index/dbox-common -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT sdbox-mail.lo -MD -MP -MF .deps/sdbox-mail.Tpo -c -o sdbox-mail.lo sdbox-mail.c
--- sdbox-save.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I../../../../src/lib  -I../../../../src/lib-settings  -I../../../../src/lib-master  -I../../../../src/lib-fs  -I../../../../src/lib-mail  -I../../../../src/lib-imap  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/index  -I../../../../src/lib-storage/index/dbox-common -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT sdbox-save.lo -MD -MP -MF .deps/sdbox-save.Tpo -c -o sdbox-save.lo sdbox-save.c
--- sdbox-mail.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-master -I../../../../src/lib-fs -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I../../../../src/lib-storage/index/dbox-common -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT sdbox-mail.lo -MD -MP -MF .deps/sdbox-mail.Tpo -c sdbox-mail.c  -fPIC -DPIC -o .libs/sdbox-mail.o
--- sdbox-copy.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-master -I../../../../src/lib-fs -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I../../../../src/lib-storage/index/dbox-common -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT sdbox-copy.lo -MD -MP -MF .deps/sdbox-copy.Tpo -c sdbox-copy.c  -fPIC -DPIC -o .libs/sdbox-copy.o
--- sdbox-file.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-master -I../../../../src/lib-fs -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I../../../../src/lib-storage/index/dbox-common -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT sdbox-file.lo -MD -MP -MF .deps/sdbox-file.Tpo -c sdbox-file.c  -fPIC -DPIC -o .libs/sdbox-file.o
--- sdbox-save.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-master -I../../../../src/lib-fs -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I../../../../src/lib-storage/index/dbox-common -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT sdbox-save.lo -MD -MP -MF .deps/sdbox-save.Tpo -c sdbox-save.c  -fPIC -DPIC -o .libs/sdbox-save.o
--- sdbox-mail.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-master -I../../../../src/lib-fs -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I../../../../src/lib-storage/index/dbox-common -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT sdbox-mail.lo -MD -MP -MF .deps/sdbox-mail.Tpo -c sdbox-mail.c -o sdbox-mail.o >/dev/null 2>&1
--- sdbox-copy.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-master -I../../../../src/lib-fs -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I../../../../src/lib-storage/index/dbox-common -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT sdbox-copy.lo -MD -MP -MF .deps/sdbox-copy.Tpo -c sdbox-copy.c -o sdbox-copy.o >/dev/null 2>&1
--- sdbox-save.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-master -I../../../../src/lib-fs -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I../../../../src/lib-storage/index/dbox-common -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT sdbox-save.lo -MD -MP -MF .deps/sdbox-save.Tpo -c sdbox-save.c -o sdbox-save.o >/dev/null 2>&1
--- sdbox-file.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-master -I../../../../src/lib-fs -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I../../../../src/lib-storage/index/dbox-common -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT sdbox-file.lo -MD -MP -MF .deps/sdbox-file.Tpo -c sdbox-file.c -o sdbox-file.o >/dev/null 2>&1
--- sdbox-mail.lo ---
mv -f .deps/sdbox-mail.Tpo .deps/sdbox-mail.Plo
--- sdbox-sync.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I../../../../src/lib  -I../../../../src/lib-settings  -I../../../../src/lib-master  -I../../../../src/lib-fs  -I../../../../src/lib-mail  -I../../../../src/lib-imap  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/index  -I../../../../src/lib-storage/index/dbox-common -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT sdbox-sync.lo -MD -MP -MF .deps/sdbox-sync.Tpo -c -o sdbox-sync.lo sdbox-sync.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-master -I../../../../src/lib-fs -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I../../../../src/lib-storage/index/dbox-common -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT sdbox-sync.lo -MD -MP -MF .deps/sdbox-sync.Tpo -c sdbox-sync.c  -fPIC -DPIC -o .libs/sdbox-sync.o
--- sdbox-copy.lo ---
mv -f .deps/sdbox-copy.Tpo .deps/sdbox-copy.Plo
--- sdbox-sync-rebuild.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I../../../../src/lib  -I../../../../src/lib-settings  -I../../../../src/lib-master  -I../../../../src/lib-fs  -I../../../../src/lib-mail  -I../../../../src/lib-imap  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/index  -I../../../../src/lib-storage/index/dbox-common -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT sdbox-sync-rebuild.lo -MD -MP -MF .deps/sdbox-sync-rebuild.Tpo -c -o sdbox-sync-rebuild.lo sdbox-sync-rebuild.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-master -I../../../../src/lib-fs -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I../../../../src/lib-storage/index/dbox-common -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT sdbox-sync-rebuild.lo -MD -MP -MF .deps/sdbox-sync-rebuild.Tpo -c sdbox-sync-rebuild.c  -fPIC -DPIC -o .libs/sdbox-sync-rebuild.o
--- sdbox-file.lo ---
mv -f .deps/sdbox-file.Tpo .deps/sdbox-file.Plo
--- sdbox-save.lo ---
mv -f .deps/sdbox-save.Tpo .deps/sdbox-save.Plo
--- sdbox-storage.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I../../../../src/lib  -I../../../../src/lib-settings  -I../../../../src/lib-master  -I../../../../src/lib-fs  -I../../../../src/lib-mail  -I../../../../src/lib-imap  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/index  -I../../../../src/lib-storage/index/dbox-common -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT sdbox-storage.lo -MD -MP -MF .deps/sdbox-storage.Tpo -c -o sdbox-storage.lo sdbox-storage.c
--- sdbox-sync.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-master -I../../../../src/lib-fs -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I../../../../src/lib-storage/index/dbox-common -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT sdbox-sync.lo -MD -MP -MF .deps/sdbox-sync.Tpo -c sdbox-sync.c -o sdbox-sync.o >/dev/null 2>&1
--- sdbox-storage.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-master -I../../../../src/lib-fs -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I../../../../src/lib-storage/index/dbox-common -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT sdbox-storage.lo -MD -MP -MF .deps/sdbox-storage.Tpo -c sdbox-storage.c  -fPIC -DPIC -o .libs/sdbox-storage.o
--- sdbox-sync-rebuild.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-master -I../../../../src/lib-fs -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I../../../../src/lib-storage/index/dbox-common -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT sdbox-sync-rebuild.lo -MD -MP -MF .deps/sdbox-sync-rebuild.Tpo -c sdbox-sync-rebuild.c -o sdbox-sync-rebuild.o >/dev/null 2>&1
mv -f .deps/sdbox-sync-rebuild.Tpo .deps/sdbox-sync-rebuild.Plo
--- sdbox-sync.lo ---
mv -f .deps/sdbox-sync.Tpo .deps/sdbox-sync.Plo
--- sdbox-storage.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-master -I../../../../src/lib-fs -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I../../../../src/lib-storage/index/dbox-common -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT sdbox-storage.lo -MD -MP -MF .deps/sdbox-storage.Tpo -c sdbox-storage.c -o sdbox-storage.o >/dev/null 2>&1
mv -f .deps/sdbox-storage.Tpo .deps/sdbox-storage.Plo
--- libstorage_dbox_single.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 -mfunction-return=keep -Wall -W -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 libstorage_dbox_single.la  sdbox-copy.lo sdbox-file.lo  sdbox-mail.lo sdbox-save.lo sdbox-sync.lo  sdbox-sync-rebuild.lo sdbox-storage.lo  
libtool: link: ar cr .libs/libstorage_dbox_single.a .libs/sdbox-copy.o .libs/sdbox-file.o .libs/sdbox-mail.o .libs/sdbox-save.o .libs/sdbox-sync.o .libs/sdbox-sync-rebuild.o .libs/sdbox-storage.o 
libtool: link: ranlib .libs/libstorage_dbox_single.a
libtool: link: ( cd ".libs" && rm -f "libstorage_dbox_single.la" && ln -s "../libstorage_dbox_single.la" "libstorage_dbox_single.la" )
Making all in imapc
--- imapc-list.lo ---
--- imapc-mail.lo ---
--- imapc-mail-fetch.lo ---
--- imapc-mailbox.lo ---
--- imapc-list.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-mail  -I../../../../src/lib-imap  -I../../../../src/lib-imap-client  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/list  -I../../../../src/lib-storage/index  -I../../../../src/lib-ssl-iostream -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imapc-list.lo -MD -MP -MF .deps/imapc-list.Tpo -c -o imapc-list.lo imapc-list.c
--- imapc-mail-fetch.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-mail  -I../../../../src/lib-imap  -I../../../../src/lib-imap-client  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/list  -I../../../../src/lib-storage/index  -I../../../../src/lib-ssl-iostream -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imapc-mail-fetch.lo -MD -MP -MF .deps/imapc-mail-fetch.Tpo -c -o imapc-mail-fetch.lo imapc-mail-fetch.c
--- imapc-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-mail  -I../../../../src/lib-imap  -I../../../../src/lib-imap-client  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/list  -I../../../../src/lib-storage/index  -I../../../../src/lib-ssl-iostream -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imapc-mail.lo -MD -MP -MF .deps/imapc-mail.Tpo -c -o imapc-mail.lo imapc-mail.c
--- imapc-mailbox.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-mail  -I../../../../src/lib-imap  -I../../../../src/lib-imap-client  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/list  -I../../../../src/lib-storage/index  -I../../../../src/lib-ssl-iostream -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imapc-mailbox.lo -MD -MP -MF .deps/imapc-mailbox.Tpo -c -o imapc-mailbox.lo imapc-mailbox.c
--- imapc-mail.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-test -I../../../../src/lib-settings -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-imap-client -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/list -I../../../../src/lib-storage/index -I../../../../src/lib-ssl-iostream -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imapc-mail.lo -MD -MP -MF .deps/imapc-mail.Tpo -c imapc-mail.c  -fPIC -DPIC -o .libs/imapc-mail.o
--- imapc-mailbox.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-test -I../../../../src/lib-settings -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-imap-client -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/list -I../../../../src/lib-storage/index -I../../../../src/lib-ssl-iostream -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imapc-mailbox.lo -MD -MP -MF .deps/imapc-mailbox.Tpo -c imapc-mailbox.c  -fPIC -DPIC -o .libs/imapc-mailbox.o
--- imapc-mail-fetch.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-test -I../../../../src/lib-settings -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-imap-client -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/list -I../../../../src/lib-storage/index -I../../../../src/lib-ssl-iostream -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imapc-mail-fetch.lo -MD -MP -MF .deps/imapc-mail-fetch.Tpo -c imapc-mail-fetch.c  -fPIC -DPIC -o .libs/imapc-mail-fetch.o
--- imapc-list.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-test -I../../../../src/lib-settings -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-imap-client -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/list -I../../../../src/lib-storage/index -I../../../../src/lib-ssl-iostream -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imapc-list.lo -MD -MP -MF .deps/imapc-list.Tpo -c imapc-list.c  -fPIC -DPIC -o .libs/imapc-list.o
--- imapc-mail.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-test -I../../../../src/lib-settings -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-imap-client -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/list -I../../../../src/lib-storage/index -I../../../../src/lib-ssl-iostream -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imapc-mail.lo -MD -MP -MF .deps/imapc-mail.Tpo -c imapc-mail.c -o imapc-mail.o >/dev/null 2>&1
--- imapc-list.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-test -I../../../../src/lib-settings -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-imap-client -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/list -I../../../../src/lib-storage/index -I../../../../src/lib-ssl-iostream -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imapc-list.lo -MD -MP -MF .deps/imapc-list.Tpo -c imapc-list.c -o imapc-list.o >/dev/null 2>&1
--- imapc-mail-fetch.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-test -I../../../../src/lib-settings -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-imap-client -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/list -I../../../../src/lib-storage/index -I../../../../src/lib-ssl-iostream -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imapc-mail-fetch.lo -MD -MP -MF .deps/imapc-mail-fetch.Tpo -c imapc-mail-fetch.c -o imapc-mail-fetch.o >/dev/null 2>&1
--- imapc-mailbox.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-test -I../../../../src/lib-settings -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-imap-client -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/list -I../../../../src/lib-storage/index -I../../../../src/lib-ssl-iostream -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imapc-mailbox.lo -MD -MP -MF .deps/imapc-mailbox.Tpo -c imapc-mailbox.c -o imapc-mailbox.o >/dev/null 2>&1
--- imapc-mail.lo ---
mv -f .deps/imapc-mail.Tpo .deps/imapc-mail.Plo
--- imapc-save.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-mail  -I../../../../src/lib-imap  -I../../../../src/lib-imap-client  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/list  -I../../../../src/lib-storage/index  -I../../../../src/lib-ssl-iostream -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imapc-save.lo -MD -MP -MF .deps/imapc-save.Tpo -c -o imapc-save.lo imapc-save.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-test -I../../../../src/lib-settings -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-imap-client -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/list -I../../../../src/lib-storage/index -I../../../../src/lib-ssl-iostream -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imapc-save.lo -MD -MP -MF .deps/imapc-save.Tpo -c imapc-save.c  -fPIC -DPIC -o .libs/imapc-save.o
--- imapc-list.lo ---
mv -f .deps/imapc-list.Tpo .deps/imapc-list.Plo
--- imapc-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-settings  -I../../../../src/lib-mail  -I../../../../src/lib-imap  -I../../../../src/lib-imap-client  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/list  -I../../../../src/lib-storage/index  -I../../../../src/lib-ssl-iostream -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imapc-search.lo -MD -MP -MF .deps/imapc-search.Tpo -c -o imapc-search.lo imapc-search.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-test -I../../../../src/lib-settings -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-imap-client -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/list -I../../../../src/lib-storage/index -I../../../../src/lib-ssl-iostream -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imapc-search.lo -MD -MP -MF .deps/imapc-search.Tpo -c imapc-search.c  -fPIC -DPIC -o .libs/imapc-search.o
--- imapc-mail-fetch.lo ---
mv -f .deps/imapc-mail-fetch.Tpo .deps/imapc-mail-fetch.Plo
--- imapc-settings.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-mail  -I../../../../src/lib-imap  -I../../../../src/lib-imap-client  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/list  -I../../../../src/lib-storage/index  -I../../../../src/lib-ssl-iostream -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imapc-settings.lo -MD -MP -MF .deps/imapc-settings.Tpo -c -o imapc-settings.lo imapc-settings.c
--- imapc-mailbox.lo ---
mv -f .deps/imapc-mailbox.Tpo .deps/imapc-mailbox.Plo
--- imapc-sync.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-mail  -I../../../../src/lib-imap  -I../../../../src/lib-imap-client  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/list  -I../../../../src/lib-storage/index  -I../../../../src/lib-ssl-iostream -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imapc-sync.lo -MD -MP -MF .deps/imapc-sync.Tpo -c -o imapc-sync.lo imapc-sync.c
--- imapc-settings.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-test -I../../../../src/lib-settings -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-imap-client -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/list -I../../../../src/lib-storage/index -I../../../../src/lib-ssl-iostream -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imapc-settings.lo -MD -MP -MF .deps/imapc-settings.Tpo -c imapc-settings.c  -fPIC -DPIC -o .libs/imapc-settings.o
--- imapc-sync.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-test -I../../../../src/lib-settings -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-imap-client -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/list -I../../../../src/lib-storage/index -I../../../../src/lib-ssl-iostream -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imapc-sync.lo -MD -MP -MF .deps/imapc-sync.Tpo -c imapc-sync.c  -fPIC -DPIC -o .libs/imapc-sync.o
--- imapc-save.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-test -I../../../../src/lib-settings -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-imap-client -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/list -I../../../../src/lib-storage/index -I../../../../src/lib-ssl-iostream -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imapc-save.lo -MD -MP -MF .deps/imapc-save.Tpo -c imapc-save.c -o imapc-save.o >/dev/null 2>&1
--- imapc-search.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-test -I../../../../src/lib-settings -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-imap-client -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/list -I../../../../src/lib-storage/index -I../../../../src/lib-ssl-iostream -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imapc-search.lo -MD -MP -MF .deps/imapc-search.Tpo -c imapc-search.c -o imapc-search.o >/dev/null 2>&1
--- imapc-settings.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-test -I../../../../src/lib-settings -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-imap-client -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/list -I../../../../src/lib-storage/index -I../../../../src/lib-ssl-iostream -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imapc-settings.lo -MD -MP -MF .deps/imapc-settings.Tpo -c imapc-settings.c -o imapc-settings.o >/dev/null 2>&1
mv -f .deps/imapc-settings.Tpo .deps/imapc-settings.Plo
--- imapc-storage.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-mail  -I../../../../src/lib-imap  -I../../../../src/lib-imap-client  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/list  -I../../../../src/lib-storage/index  -I../../../../src/lib-ssl-iostream -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imapc-storage.lo -MD -MP -MF .deps/imapc-storage.Tpo -c -o imapc-storage.lo imapc-storage.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-test -I../../../../src/lib-settings -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-imap-client -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/list -I../../../../src/lib-storage/index -I../../../../src/lib-ssl-iostream -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imapc-storage.lo -MD -MP -MF .deps/imapc-storage.Tpo -c imapc-storage.c  -fPIC -DPIC -o .libs/imapc-storage.o
--- imapc-search.lo ---
mv -f .deps/imapc-search.Tpo .deps/imapc-search.Plo
--- imapc-sync.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-test -I../../../../src/lib-settings -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-imap-client -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/list -I../../../../src/lib-storage/index -I../../../../src/lib-ssl-iostream -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imapc-sync.lo -MD -MP -MF .deps/imapc-sync.Tpo -c imapc-sync.c -o imapc-sync.o >/dev/null 2>&1
--- imapc-save.lo ---
mv -f .deps/imapc-save.Tpo .deps/imapc-save.Plo
--- imapc-storage.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-test -I../../../../src/lib-settings -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-imap-client -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/list -I../../../../src/lib-storage/index -I../../../../src/lib-ssl-iostream -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imapc-storage.lo -MD -MP -MF .deps/imapc-storage.Tpo -c imapc-storage.c -o imapc-storage.o >/dev/null 2>&1
--- imapc-sync.lo ---
mv -f .deps/imapc-sync.Tpo .deps/imapc-sync.Plo
--- imapc-storage.lo ---
mv -f .deps/imapc-storage.Tpo .deps/imapc-storage.Plo
--- libstorage_imapc.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 -mfunction-return=keep -Wall -W -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 libstorage_imapc.la  imapc-list.lo imapc-mail.lo  imapc-mail-fetch.lo imapc-mailbox.lo imapc-save.lo  imapc-search.lo imapc-settings.lo imapc-sync.lo  imapc-storage.lo  
libtool: link: ar cr .libs/libstorage_imapc.a .libs/imapc-list.o .libs/imapc-mail.o .libs/imapc-mail-fetch.o .libs/imapc-mailbox.o .libs/imapc-save.o .libs/imapc-search.o .libs/imapc-settings.o .libs/imapc-sync.o .libs/imapc-storage.o 
libtool: link: ranlib .libs/libstorage_imapc.a
libtool: link: ( cd ".libs" && rm -f "libstorage_imapc.la" && ln -s "../libstorage_imapc.la" "libstorage_imapc.la" )
Making all in pop3c
--- pop3c-client.lo ---
--- pop3c-mail.lo ---
--- pop3c-settings.lo ---
--- pop3c-storage.lo ---
--- pop3c-client.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I../../../../src/lib  -I../../../../src/lib-settings  -I../../../../src/lib-dns  -I../../../../src/lib-ssl-iostream  -I../../../../src/lib-mail  -I../../../../src/lib-imap  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT pop3c-client.lo -MD -MP -MF .deps/pop3c-client.Tpo -c -o pop3c-client.lo pop3c-client.c
--- pop3c-mail.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I../../../../src/lib  -I../../../../src/lib-settings  -I../../../../src/lib-dns  -I../../../../src/lib-ssl-iostream  -I../../../../src/lib-mail  -I../../../../src/lib-imap  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT pop3c-mail.lo -MD -MP -MF .deps/pop3c-mail.Tpo -c -o pop3c-mail.lo pop3c-mail.c
--- pop3c-settings.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I../../../../src/lib  -I../../../../src/lib-settings  -I../../../../src/lib-dns  -I../../../../src/lib-ssl-iostream  -I../../../../src/lib-mail  -I../../../../src/lib-imap  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT pop3c-settings.lo -MD -MP -MF .deps/pop3c-settings.Tpo -c -o pop3c-settings.lo pop3c-settings.c
--- pop3c-storage.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I../../../../src/lib  -I../../../../src/lib-settings  -I../../../../src/lib-dns  -I../../../../src/lib-ssl-iostream  -I../../../../src/lib-mail  -I../../../../src/lib-imap  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT pop3c-storage.lo -MD -MP -MF .deps/pop3c-storage.Tpo -c -o pop3c-storage.lo pop3c-storage.c
--- pop3c-settings.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-dns -I../../../../src/lib-ssl-iostream -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT pop3c-settings.lo -MD -MP -MF .deps/pop3c-settings.Tpo -c pop3c-settings.c  -fPIC -DPIC -o .libs/pop3c-settings.o
--- pop3c-client.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-dns -I../../../../src/lib-ssl-iostream -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT pop3c-client.lo -MD -MP -MF .deps/pop3c-client.Tpo -c pop3c-client.c  -fPIC -DPIC -o .libs/pop3c-client.o
--- pop3c-mail.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-dns -I../../../../src/lib-ssl-iostream -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT pop3c-mail.lo -MD -MP -MF .deps/pop3c-mail.Tpo -c pop3c-mail.c  -fPIC -DPIC -o .libs/pop3c-mail.o
--- pop3c-storage.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-dns -I../../../../src/lib-ssl-iostream -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT pop3c-storage.lo -MD -MP -MF .deps/pop3c-storage.Tpo -c pop3c-storage.c  -fPIC -DPIC -o .libs/pop3c-storage.o
--- pop3c-settings.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-dns -I../../../../src/lib-ssl-iostream -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT pop3c-settings.lo -MD -MP -MF .deps/pop3c-settings.Tpo -c pop3c-settings.c -o pop3c-settings.o >/dev/null 2>&1
mv -f .deps/pop3c-settings.Tpo .deps/pop3c-settings.Plo
--- pop3c-sync.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I../../../../src/lib  -I../../../../src/lib-settings  -I../../../../src/lib-dns  -I../../../../src/lib-ssl-iostream  -I../../../../src/lib-mail  -I../../../../src/lib-imap  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT pop3c-sync.lo -MD -MP -MF .deps/pop3c-sync.Tpo -c -o pop3c-sync.lo pop3c-sync.c
--- pop3c-mail.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-dns -I../../../../src/lib-ssl-iostream -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT pop3c-mail.lo -MD -MP -MF .deps/pop3c-mail.Tpo -c pop3c-mail.c -o pop3c-mail.o >/dev/null 2>&1
--- pop3c-storage.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-dns -I../../../../src/lib-ssl-iostream -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT pop3c-storage.lo -MD -MP -MF .deps/pop3c-storage.Tpo -c pop3c-storage.c -o pop3c-storage.o >/dev/null 2>&1
--- pop3c-sync.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-dns -I../../../../src/lib-ssl-iostream -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT pop3c-sync.lo -MD -MP -MF .deps/pop3c-sync.Tpo -c pop3c-sync.c  -fPIC -DPIC -o .libs/pop3c-sync.o
--- pop3c-client.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-dns -I../../../../src/lib-ssl-iostream -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT pop3c-client.lo -MD -MP -MF .deps/pop3c-client.Tpo -c pop3c-client.c -o pop3c-client.o >/dev/null 2>&1
--- pop3c-mail.lo ---
mv -f .deps/pop3c-mail.Tpo .deps/pop3c-mail.Plo
--- pop3c-storage.lo ---
mv -f .deps/pop3c-storage.Tpo .deps/pop3c-storage.Plo
--- pop3c-sync.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-settings -I../../../../src/lib-dns -I../../../../src/lib-ssl-iostream -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT pop3c-sync.lo -MD -MP -MF .deps/pop3c-sync.Tpo -c pop3c-sync.c -o pop3c-sync.o >/dev/null 2>&1
--- pop3c-client.lo ---
mv -f .deps/pop3c-client.Tpo .deps/pop3c-client.Plo
--- pop3c-sync.lo ---
mv -f .deps/pop3c-sync.Tpo .deps/pop3c-sync.Plo
--- libstorage_pop3c.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 -mfunction-return=keep -Wall -W -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 libstorage_pop3c.la  pop3c-client.lo pop3c-mail.lo  pop3c-settings.lo pop3c-storage.lo pop3c-sync.lo  
libtool: link: ar cr .libs/libstorage_pop3c.a .libs/pop3c-client.o .libs/pop3c-mail.o .libs/pop3c-settings.o .libs/pop3c-storage.o .libs/pop3c-sync.o 
libtool: link: ranlib .libs/libstorage_pop3c.a
libtool: link: ( cd ".libs" && rm -f "libstorage_pop3c.la" && ln -s "../libstorage_pop3c.la" "libstorage_pop3c.la" )
Making all in raw
--- raw-mail.lo ---
--- raw-sync.lo ---
--- raw-storage.lo ---
--- raw-mail.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I../../../../src/lib  -I../../../../src/lib-mail  -I../../../../src/lib-imap  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT raw-mail.lo -MD -MP -MF .deps/raw-mail.Tpo -c -o raw-mail.lo raw-mail.c
--- raw-sync.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I../../../../src/lib  -I../../../../src/lib-mail  -I../../../../src/lib-imap  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT raw-sync.lo -MD -MP -MF .deps/raw-sync.Tpo -c -o raw-sync.lo raw-sync.c
--- raw-storage.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I../../../../src/lib  -I../../../../src/lib-mail  -I../../../../src/lib-imap  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT raw-storage.lo -MD -MP -MF .deps/raw-storage.Tpo -c -o raw-storage.lo raw-storage.c
--- raw-mail.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT raw-mail.lo -MD -MP -MF .deps/raw-mail.Tpo -c raw-mail.c  -fPIC -DPIC -o .libs/raw-mail.o
--- raw-storage.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT raw-storage.lo -MD -MP -MF .deps/raw-storage.Tpo -c raw-storage.c  -fPIC -DPIC -o .libs/raw-storage.o
--- raw-sync.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT raw-sync.lo -MD -MP -MF .deps/raw-sync.Tpo -c raw-sync.c  -fPIC -DPIC -o .libs/raw-sync.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT raw-sync.lo -MD -MP -MF .deps/raw-sync.Tpo -c raw-sync.c -o raw-sync.o >/dev/null 2>&1
--- raw-mail.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT raw-mail.lo -MD -MP -MF .deps/raw-mail.Tpo -c raw-mail.c -o raw-mail.o >/dev/null 2>&1
--- raw-storage.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT raw-storage.lo -MD -MP -MF .deps/raw-storage.Tpo -c raw-storage.c -o raw-storage.o >/dev/null 2>&1
--- raw-sync.lo ---
mv -f .deps/raw-sync.Tpo .deps/raw-sync.Plo
--- raw-mail.lo ---
mv -f .deps/raw-mail.Tpo .deps/raw-mail.Plo
--- raw-storage.lo ---
mv -f .deps/raw-storage.Tpo .deps/raw-storage.Plo
--- libstorage_raw.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 -mfunction-return=keep -Wall -W -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 libstorage_raw.la  raw-mail.lo raw-sync.lo raw-storage.lo  
libtool: link: ar cr .libs/libstorage_raw.a .libs/raw-mail.o .libs/raw-sync.o .libs/raw-storage.o 
libtool: link: ranlib .libs/libstorage_raw.a
libtool: link: ( cd ".libs" && rm -f "libstorage_raw.la" && ln -s "../libstorage_raw.la" "libstorage_raw.la" )
Making all in shared
--- shared-list.lo ---
--- shared-storage.lo ---
--- shared-list.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I../../../../src/lib  -I../../../../src/lib-mail  -I../../../../src/lib-imap  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT shared-list.lo -MD -MP -MF .deps/shared-list.Tpo -c -o shared-list.lo shared-list.c
--- shared-storage.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I../../../../src/lib  -I../../../../src/lib-mail  -I../../../../src/lib-imap  -I../../../../src/lib-index  -I../../../../src/lib-storage  -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT shared-storage.lo -MD -MP -MF .deps/shared-storage.Tpo -c -o shared-storage.lo shared-storage.c
--- shared-list.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT shared-list.lo -MD -MP -MF .deps/shared-list.Tpo -c shared-list.c  -fPIC -DPIC -o .libs/shared-list.o
--- shared-storage.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT shared-storage.lo -MD -MP -MF .deps/shared-storage.Tpo -c shared-storage.c  -fPIC -DPIC -o .libs/shared-storage.o
--- shared-list.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT shared-list.lo -MD -MP -MF .deps/shared-list.Tpo -c shared-list.c -o shared-list.o >/dev/null 2>&1
--- shared-storage.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT shared-storage.lo -MD -MP -MF .deps/shared-storage.Tpo -c shared-storage.c -o shared-storage.o >/dev/null 2>&1
--- shared-list.lo ---
mv -f .deps/shared-list.Tpo .deps/shared-list.Plo
--- shared-storage.lo ---
mv -f .deps/shared-storage.Tpo .deps/shared-storage.Plo
--- libstorage_shared.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 -mfunction-return=keep -Wall -W -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 libstorage_shared.la  shared-list.lo shared-storage.lo  
libtool: link: ar cr .libs/libstorage_shared.a .libs/shared-list.o .libs/shared-storage.o 
libtool: link: ranlib .libs/libstorage_shared.a
libtool: link: ( cd ".libs" && rm -f "libstorage_shared.la" && ln -s "../libstorage_shared.la" "libstorage_shared.la" )
--- istream-mail.lo ---
--- index-attachment.lo ---
--- index-attribute.lo ---
--- index-mail.lo ---
--- istream-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-dict  -I../../../src/lib-fs  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-mail.lo -MD -MP -MF .deps/istream-mail.Tpo -c -o istream-mail.lo istream-mail.c
--- index-attachment.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-fs  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-attachment.lo -MD -MP -MF .deps/index-attachment.Tpo -c -o index-attachment.lo index-attachment.c
--- index-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-dict  -I../../../src/lib-fs  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-mail.lo -MD -MP -MF .deps/index-mail.Tpo -c -o index-mail.lo index-mail.c
--- index-attribute.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-fs  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-attribute.lo -MD -MP -MF .deps/index-attribute.Tpo -c -o index-attribute.lo index-attribute.c
--- index-mail.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-mail.lo -MD -MP -MF .deps/index-mail.Tpo -c index-mail.c  -fPIC -DPIC -o .libs/index-mail.o
--- istream-mail.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-mail.lo -MD -MP -MF .deps/istream-mail.Tpo -c istream-mail.c  -fPIC -DPIC -o .libs/istream-mail.o
--- index-attachment.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-attachment.lo -MD -MP -MF .deps/index-attachment.Tpo -c index-attachment.c  -fPIC -DPIC -o .libs/index-attachment.o
--- index-attribute.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-attribute.lo -MD -MP -MF .deps/index-attribute.Tpo -c index-attribute.c  -fPIC -DPIC -o .libs/index-attribute.o
--- istream-mail.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-mail.lo -MD -MP -MF .deps/istream-mail.Tpo -c istream-mail.c -o istream-mail.o >/dev/null 2>&1
--- index-attribute.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-attribute.lo -MD -MP -MF .deps/index-attribute.Tpo -c index-attribute.c -o index-attribute.o >/dev/null 2>&1
--- index-attachment.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-attachment.lo -MD -MP -MF .deps/index-attachment.Tpo -c index-attachment.c -o index-attachment.o >/dev/null 2>&1
--- istream-mail.lo ---
mv -f .deps/istream-mail.Tpo .deps/istream-mail.Plo
--- index-mail-binary.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-fs  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-mail-binary.lo -MD -MP -MF .deps/index-mail-binary.Tpo -c -o index-mail-binary.lo index-mail-binary.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-mail-binary.lo -MD -MP -MF .deps/index-mail-binary.Tpo -c index-mail-binary.c  -fPIC -DPIC -o .libs/index-mail-binary.o
--- index-attribute.lo ---
mv -f .deps/index-attribute.Tpo .deps/index-attribute.Plo
--- index-mail-headers.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-fs  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-mail-headers.lo -MD -MP -MF .deps/index-mail-headers.Tpo -c -o index-mail-headers.lo index-mail-headers.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-mail-headers.lo -MD -MP -MF .deps/index-mail-headers.Tpo -c index-mail-headers.c  -fPIC -DPIC -o .libs/index-mail-headers.o
--- index-attachment.lo ---
mv -f .deps/index-attachment.Tpo .deps/index-attachment.Plo
--- index-mailbox-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-dict  -I../../../src/lib-fs  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-mailbox-size.lo -MD -MP -MF .deps/index-mailbox-size.Tpo -c -o index-mailbox-size.lo index-mailbox-size.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-mailbox-size.lo -MD -MP -MF .deps/index-mailbox-size.Tpo -c index-mailbox-size.c  -fPIC -DPIC -o .libs/index-mailbox-size.o
--- index-mail-binary.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-mail-binary.lo -MD -MP -MF .deps/index-mail-binary.Tpo -c index-mail-binary.c -o index-mail-binary.o >/dev/null 2>&1
--- index-mailbox-size.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-mailbox-size.lo -MD -MP -MF .deps/index-mailbox-size.Tpo -c index-mailbox-size.c -o index-mailbox-size.o >/dev/null 2>&1
--- index-mail.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-mail.lo -MD -MP -MF .deps/index-mail.Tpo -c index-mail.c -o index-mail.o >/dev/null 2>&1
--- index-mail-headers.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-mail-headers.lo -MD -MP -MF .deps/index-mail-headers.Tpo -c index-mail-headers.c -o index-mail-headers.o >/dev/null 2>&1
--- index-mail-binary.lo ---
mv -f .deps/index-mail-binary.Tpo .deps/index-mail-binary.Plo
--- index-pop3-uidl.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-fs  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-pop3-uidl.lo -MD -MP -MF .deps/index-pop3-uidl.Tpo -c -o index-pop3-uidl.lo index-pop3-uidl.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-pop3-uidl.lo -MD -MP -MF .deps/index-pop3-uidl.Tpo -c index-pop3-uidl.c  -fPIC -DPIC -o .libs/index-pop3-uidl.o
--- index-mailbox-size.lo ---
mv -f .deps/index-mailbox-size.Tpo .deps/index-mailbox-size.Plo
--- index-rebuild.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-fs  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-rebuild.lo -MD -MP -MF .deps/index-rebuild.Tpo -c -o index-rebuild.lo index-rebuild.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-rebuild.lo -MD -MP -MF .deps/index-rebuild.Tpo -c index-rebuild.c  -fPIC -DPIC -o .libs/index-rebuild.o
--- index-pop3-uidl.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-pop3-uidl.lo -MD -MP -MF .deps/index-pop3-uidl.Tpo -c index-pop3-uidl.c -o index-pop3-uidl.o >/dev/null 2>&1
--- index-rebuild.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-rebuild.lo -MD -MP -MF .deps/index-rebuild.Tpo -c index-rebuild.c -o index-rebuild.o >/dev/null 2>&1
--- index-pop3-uidl.lo ---
mv -f .deps/index-pop3-uidl.Tpo .deps/index-pop3-uidl.Plo
--- index-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-dict  -I../../../src/lib-fs  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-search.lo -MD -MP -MF .deps/index-search.Tpo -c -o index-search.lo index-search.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-search.lo -MD -MP -MF .deps/index-search.Tpo -c index-search.c  -fPIC -DPIC -o .libs/index-search.o
--- index-rebuild.lo ---
mv -f .deps/index-rebuild.Tpo .deps/index-rebuild.Plo
--- index-search-mime.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-fs  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-search-mime.lo -MD -MP -MF .deps/index-search-mime.Tpo -c -o index-search-mime.lo index-search-mime.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-search-mime.lo -MD -MP -MF .deps/index-search-mime.Tpo -c index-search-mime.c  -fPIC -DPIC -o .libs/index-search-mime.o
--- index-mail-headers.lo ---
mv -f .deps/index-mail-headers.Tpo .deps/index-mail-headers.Plo
--- index-search-result.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-fs  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-search-result.lo -MD -MP -MF .deps/index-search-result.Tpo -c -o index-search-result.lo index-search-result.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-search-result.lo -MD -MP -MF .deps/index-search-result.Tpo -c index-search-result.c  -fPIC -DPIC -o .libs/index-search-result.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-search-result.lo -MD -MP -MF .deps/index-search-result.Tpo -c index-search-result.c -o index-search-result.o >/dev/null 2>&1
--- index-mail.lo ---
mv -f .deps/index-mail.Tpo .deps/index-mail.Plo
--- index-sort.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-fs  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-sort.lo -MD -MP -MF .deps/index-sort.Tpo -c -o index-sort.lo index-sort.c
--- index-search-mime.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-search-mime.lo -MD -MP -MF .deps/index-search-mime.Tpo -c index-search-mime.c -o index-search-mime.o >/dev/null 2>&1
--- index-sort.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-sort.lo -MD -MP -MF .deps/index-sort.Tpo -c index-sort.c  -fPIC -DPIC -o .libs/index-sort.o
--- index-search-result.lo ---
mv -f .deps/index-search-result.Tpo .deps/index-search-result.Plo
--- index-sort-string.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-fs  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-sort-string.lo -MD -MP -MF .deps/index-sort-string.Tpo -c -o index-sort-string.lo index-sort-string.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-sort-string.lo -MD -MP -MF .deps/index-sort-string.Tpo -c index-sort-string.c  -fPIC -DPIC -o .libs/index-sort-string.o
--- index-search.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-search.lo -MD -MP -MF .deps/index-search.Tpo -c index-search.c -o index-search.o >/dev/null 2>&1
--- index-search-mime.lo ---
mv -f .deps/index-search-mime.Tpo .deps/index-search-mime.Plo
--- index-status.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-fs  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-status.lo -MD -MP -MF .deps/index-status.Tpo -c -o index-status.lo index-status.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-status.lo -MD -MP -MF .deps/index-status.Tpo -c index-status.c  -fPIC -DPIC -o .libs/index-status.o
--- index-sort.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-sort.lo -MD -MP -MF .deps/index-sort.Tpo -c index-sort.c -o index-sort.o >/dev/null 2>&1
--- index-status.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-status.lo -MD -MP -MF .deps/index-status.Tpo -c index-status.c -o index-status.o >/dev/null 2>&1
--- index-sort.lo ---
mv -f .deps/index-sort.Tpo .deps/index-sort.Plo
--- index-storage.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-fs  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-storage.lo -MD -MP -MF .deps/index-storage.Tpo -c -o index-storage.lo index-storage.c
--- index-sort-string.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-sort-string.lo -MD -MP -MF .deps/index-sort-string.Tpo -c index-sort-string.c -o index-sort-string.o >/dev/null 2>&1
--- index-storage.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-storage.lo -MD -MP -MF .deps/index-storage.Tpo -c index-storage.c  -fPIC -DPIC -o .libs/index-storage.o
--- index-status.lo ---
mv -f .deps/index-status.Tpo .deps/index-status.Plo
--- index-sync.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-fs  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-sync.lo -MD -MP -MF .deps/index-sync.Tpo -c -o index-sync.lo index-sync.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-sync.lo -MD -MP -MF .deps/index-sync.Tpo -c index-sync.c  -fPIC -DPIC -o .libs/index-sync.o
--- index-search.lo ---
mv -f .deps/index-search.Tpo .deps/index-search.Plo
--- index-sync-changes.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-fs  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-sync-changes.lo -MD -MP -MF .deps/index-sync-changes.Tpo -c -o index-sync-changes.lo index-sync-changes.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-sync-changes.lo -MD -MP -MF .deps/index-sync-changes.Tpo -c index-sync-changes.c  -fPIC -DPIC -o .libs/index-sync-changes.o
--- index-sync.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-sync.lo -MD -MP -MF .deps/index-sync.Tpo -c index-sync.c -o index-sync.o >/dev/null 2>&1
--- index-sync-changes.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-sync-changes.lo -MD -MP -MF .deps/index-sync-changes.Tpo -c index-sync-changes.c -o index-sync-changes.o >/dev/null 2>&1
--- index-storage.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-storage.lo -MD -MP -MF .deps/index-storage.Tpo -c index-storage.c -o index-storage.o >/dev/null 2>&1
--- index-sort-string.lo ---
mv -f .deps/index-sort-string.Tpo .deps/index-sort-string.Plo
--- index-sync-pvt.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-fs  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-sync-pvt.lo -MD -MP -MF .deps/index-sync-pvt.Tpo -c -o index-sync-pvt.lo index-sync-pvt.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-sync-pvt.lo -MD -MP -MF .deps/index-sync-pvt.Tpo -c index-sync-pvt.c  -fPIC -DPIC -o .libs/index-sync-pvt.o
--- index-sync.lo ---
mv -f .deps/index-sync.Tpo .deps/index-sync.Plo
--- index-sync-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-dict  -I../../../src/lib-fs  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-sync-search.lo -MD -MP -MF .deps/index-sync-search.Tpo -c -o index-sync-search.lo index-sync-search.c
--- index-sync-changes.lo ---
mv -f .deps/index-sync-changes.Tpo .deps/index-sync-changes.Plo
--- index-thread.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-fs  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-thread.lo -MD -MP -MF .deps/index-thread.Tpo -c -o index-thread.lo index-thread.c
--- index-sync-search.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-sync-search.lo -MD -MP -MF .deps/index-sync-search.Tpo -c index-sync-search.c  -fPIC -DPIC -o .libs/index-sync-search.o
--- index-thread.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-thread.lo -MD -MP -MF .deps/index-thread.Tpo -c index-thread.c  -fPIC -DPIC -o .libs/index-thread.o
--- index-sync-pvt.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-sync-pvt.lo -MD -MP -MF .deps/index-sync-pvt.Tpo -c index-sync-pvt.c -o index-sync-pvt.o >/dev/null 2>&1
--- index-sync-search.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-sync-search.lo -MD -MP -MF .deps/index-sync-search.Tpo -c index-sync-search.c -o index-sync-search.o >/dev/null 2>&1
mv -f .deps/index-sync-search.Tpo .deps/index-sync-search.Plo
--- index-thread-finish.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-fs  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-thread-finish.lo -MD -MP -MF .deps/index-thread-finish.Tpo -c -o index-thread-finish.lo index-thread-finish.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-thread-finish.lo -MD -MP -MF .deps/index-thread-finish.Tpo -c index-thread-finish.c  -fPIC -DPIC -o .libs/index-thread-finish.o
--- index-storage.lo ---
mv -f .deps/index-storage.Tpo .deps/index-storage.Plo
--- index-sync-pvt.lo ---
mv -f .deps/index-sync-pvt.Tpo .deps/index-sync-pvt.Plo
--- index-thread-links.lo ---
--- index-transaction.lo ---
--- index-thread-links.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-fs  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-thread-links.lo -MD -MP -MF .deps/index-thread-links.Tpo -c -o index-thread-links.lo index-thread-links.c
--- index-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-dict  -I../../../src/lib-fs  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-transaction.lo -MD -MP -MF .deps/index-transaction.Tpo -c -o index-transaction.lo index-transaction.c
--- index-thread-links.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-thread-links.lo -MD -MP -MF .deps/index-thread-links.Tpo -c index-thread-links.c  -fPIC -DPIC -o .libs/index-thread-links.o
--- index-transaction.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-transaction.lo -MD -MP -MF .deps/index-transaction.Tpo -c index-transaction.c  -fPIC -DPIC -o .libs/index-transaction.o
--- index-thread.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-thread.lo -MD -MP -MF .deps/index-thread.Tpo -c index-thread.c -o index-thread.o >/dev/null 2>&1
--- index-thread-links.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-thread-links.lo -MD -MP -MF .deps/index-thread-links.Tpo -c index-thread-links.c -o index-thread-links.o >/dev/null 2>&1
--- index-transaction.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-transaction.lo -MD -MP -MF .deps/index-transaction.Tpo -c index-transaction.c -o index-transaction.o >/dev/null 2>&1
--- index-thread-links.lo ---
mv -f .deps/index-thread-links.Tpo .deps/index-thread-links.Plo
--- index-transaction.lo ---
mv -f .deps/index-transaction.Tpo .deps/index-transaction.Plo
--- index-thread-finish.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-fs -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT index-thread-finish.lo -MD -MP -MF .deps/index-thread-finish.Tpo -c index-thread-finish.c -o index-thread-finish.o >/dev/null 2>&1
--- index-thread.lo ---
mv -f .deps/index-thread.Tpo .deps/index-thread.Plo
--- index-thread-finish.lo ---
mv -f .deps/index-thread-finish.Tpo .deps/index-thread-finish.Plo
--- libstorage_index.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 -mfunction-return=keep -Wall -W -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 libstorage_index.la  istream-mail.lo index-attachment.lo  index-attribute.lo index-mail.lo index-mail-binary.lo  index-mail-headers.lo index-mailbox-size.lo index-pop3-uidl.lo  index-rebuild.lo index-search.lo index-search-mime.lo  index-search-result.lo index-sort.lo index-sort-string.lo  index-status.lo index-storage.lo index-sync.lo  index-sync-changes.lo index-sync-pvt.lo index-sync-search.lo  index-thread.lo index-thread-finish.lo index-thread-links.lo  index-transaction.lo  
libtool: link: ar cr .libs/libstorage_index.a .libs/istream-mail.o .libs/index-attachment.o .libs/index-attribute.o .libs/index-mail.o .libs/index-mail-binary.o .libs/index-mail-headers.o .libs/index-mailbox-size.o .libs/index-pop3-uidl.o .libs/index-rebuild.o .libs/index-search.o .libs/index-search-mime.o .libs/index-search-result.o .libs/index-sort.o .libs/index-sort-string.o .libs/index-status.o .libs/index-storage.o .libs/index-sync.o .libs/index-sync-changes.o .libs/index-sync-pvt.o .libs/index-sync-search.o .libs/index-thread.o .libs/index-thread-finish.o .libs/index-thread-links.o .libs/index-transaction.o 
libtool: link: ranlib .libs/libstorage_index.a
libtool: link: ( cd ".libs" && rm -f "libstorage_index.la" && ln -s "../libstorage_index.la" "libstorage_index.la" )
--- test-mail-search-args-imap.o ---
--- test-mail-search-args-simplify.o ---
--- test-mail.o ---
--- test-mail-storage.o ---
--- test-mail-search-args-imap.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-dict  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-fs  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-charset  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-index  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DMODULEDIR=\""/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 -mfunction-return=keep -Wall -W -Wmissing-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-search-args-imap.o -MD -MP -MF .deps/test-mail-search-args-imap.Tpo -c -o test-mail-search-args-imap.o test-mail-search-args-imap.c
--- test-mail-search-args-simplify.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-dict  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-fs  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-charset  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-index  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DMODULEDIR=\""/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 -mfunction-return=keep -Wall -W -Wmissing-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-search-args-simplify.o -MD -MP -MF .deps/test-mail-search-args-simplify.Tpo -c -o test-mail-search-args-simplify.o test-mail-search-args-simplify.c
--- test-mail.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-dict  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-fs  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-charset  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-index  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DMODULEDIR=\""/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 -mfunction-return=keep -Wall -W -Wmissing-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.o -MD -MP -MF .deps/test-mail.Tpo -c -o test-mail.o test-mail.c
--- test-mail-storage.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-dict  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-fs  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-charset  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-index  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DMODULEDIR=\""/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 -mfunction-return=keep -Wall -W -Wmissing-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-storage.o -MD -MP -MF .deps/test-mail-storage.Tpo -c -o test-mail-storage.o test-mail-storage.c
--- test-mail-search-args-imap.o ---
mv -f .deps/test-mail-search-args-imap.Tpo .deps/test-mail-search-args-imap.Po
--- test-mailbox-get.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-dict  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-fs  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-charset  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-index  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DMODULEDIR=\""/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 -mfunction-return=keep -Wall -W -Wmissing-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-mailbox-get.o -MD -MP -MF .deps/test-mailbox-get.Tpo -c -o test-mailbox-get.o test-mailbox-get.c
--- test-mail-search-args-simplify.o ---
mv -f .deps/test-mail-search-args-simplify.Tpo .deps/test-mail-search-args-simplify.Po
--- test-mailbox-list.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-dict  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-fs  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-charset  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-index  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DMODULEDIR=\""/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 -mfunction-return=keep -Wall -W -Wmissing-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-mailbox-list.o -MD -MP -MF .deps/test-mailbox-list.Tpo -c -o test-mailbox-list.o test-mailbox-list.c
--- test-mailbox-get.o ---
mv -f .deps/test-mailbox-get.Tpo .deps/test-mailbox-get.Po
--- fail-mail-storage.lo ---
--- test-mail.o ---
mv -f .deps/test-mail.Tpo .deps/test-mail.Po
--- fail-mail-storage.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-dict  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-fs  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-charset  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-index  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DMODULEDIR=\""/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fail-mail-storage.lo -MD -MP -MF .deps/fail-mail-storage.Tpo -c -o fail-mail-storage.lo fail-mail-storage.c
--- fail-mailbox.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-dict  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-fs  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-charset  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-index  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DMODULEDIR=\""/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fail-mailbox.lo -MD -MP -MF .deps/fail-mailbox.Tpo -c -o fail-mailbox.lo fail-mailbox.c
--- test-mail-storage.o ---
mv -f .deps/test-mail-storage.Tpo .deps/test-mail-storage.Po
--- fail-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-auth  -I../../src/lib-dict  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-fs  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-charset  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-index  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DMODULEDIR=\""/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fail-mail.lo -MD -MP -MF .deps/fail-mail.Tpo -c -o fail-mail.lo fail-mail.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- fail-mail-storage.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fail-mail-storage.lo -MD -MP -MF .deps/fail-mail-storage.Tpo -c fail-mail-storage.c  -fPIC -DPIC -o .libs/fail-mail-storage.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- fail-mailbox.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fail-mailbox.lo -MD -MP -MF .deps/fail-mailbox.Tpo -c fail-mailbox.c  -fPIC -DPIC -o .libs/fail-mailbox.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- fail-mail.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fail-mail.lo -MD -MP -MF .deps/fail-mail.Tpo -c fail-mail.c  -fPIC -DPIC -o .libs/fail-mail.o
--- test-mailbox-list.o ---
mv -f .deps/test-mailbox-list.Tpo .deps/test-mailbox-list.Po
--- 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-auth  -I../../src/lib-dict  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-fs  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-charset  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-index  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DMODULEDIR=\""/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 -mfunction-return=keep -Wall -W -Wmissing-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.lo -MD -MP -MF .deps/mail.Tpo -c -o mail.lo mail.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-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.lo -MD -MP -MF .deps/mail.Tpo -c mail.c  -fPIC -DPIC -o .libs/mail.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- fail-mail-storage.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fail-mail-storage.lo -MD -MP -MF .deps/fail-mail-storage.Tpo -c fail-mail-storage.c -o fail-mail-storage.o >/dev/null 2>&1
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- fail-mail.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fail-mail.lo -MD -MP -MF .deps/fail-mail.Tpo -c fail-mail.c -o fail-mail.o >/dev/null 2>&1
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- fail-mailbox.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fail-mailbox.lo -MD -MP -MF .deps/fail-mailbox.Tpo -c fail-mailbox.c -o fail-mailbox.o >/dev/null 2>&1
--- fail-mail-storage.lo ---
mv -f .deps/fail-mail-storage.Tpo .deps/fail-mail-storage.Plo
--- mail-autoexpunge.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-dict  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-fs  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-charset  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-index  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DMODULEDIR=\""/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 -mfunction-return=keep -Wall -W -Wmissing-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-autoexpunge.lo -MD -MP -MF .deps/mail-autoexpunge.Tpo -c -o mail-autoexpunge.lo mail-autoexpunge.c
--- fail-mail.lo ---
mv -f .deps/fail-mail.Tpo .deps/fail-mail.Plo
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mail-autoexpunge.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-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-autoexpunge.lo -MD -MP -MF .deps/mail-autoexpunge.Tpo -c mail-autoexpunge.c  -fPIC -DPIC -o .libs/mail-autoexpunge.o
--- mail-copy.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-dict  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-fs  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-charset  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-index  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DMODULEDIR=\""/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 -mfunction-return=keep -Wall -W -Wmissing-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-copy.lo -MD -MP -MF .deps/mail-copy.Tpo -c -o mail-copy.lo mail-copy.c
--- fail-mailbox.lo ---
mv -f .deps/fail-mailbox.Tpo .deps/fail-mailbox.Plo
--- mail-duplicate.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-dict  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-fs  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-charset  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-index  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DMODULEDIR=\""/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 -mfunction-return=keep -Wall -W -Wmissing-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-duplicate.lo -MD -MP -MF .deps/mail-duplicate.Tpo -c -o mail-duplicate.lo mail-duplicate.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mail-copy.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-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-copy.lo -MD -MP -MF .deps/mail-copy.Tpo -c mail-copy.c  -fPIC -DPIC -o .libs/mail-copy.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mail.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-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.lo -MD -MP -MF .deps/mail.Tpo -c mail.c -o mail.o >/dev/null 2>&1
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mail-duplicate.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-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-duplicate.lo -MD -MP -MF .deps/mail-duplicate.Tpo -c mail-duplicate.c  -fPIC -DPIC -o .libs/mail-duplicate.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mail-autoexpunge.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-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-autoexpunge.lo -MD -MP -MF .deps/mail-autoexpunge.Tpo -c mail-autoexpunge.c -o mail-autoexpunge.o >/dev/null 2>&1
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mail-copy.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-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-copy.lo -MD -MP -MF .deps/mail-copy.Tpo -c mail-copy.c -o mail-copy.o >/dev/null 2>&1
mv -f .deps/mail-copy.Tpo .deps/mail-copy.Plo
--- mail-error.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-dict  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-fs  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-charset  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-index  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DMODULEDIR=\""/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 -mfunction-return=keep -Wall -W -Wmissing-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-error.lo -MD -MP -MF .deps/mail-error.Tpo -c -o mail-error.lo mail-error.c
--- mail-autoexpunge.lo ---
mv -f .deps/mail-autoexpunge.Tpo .deps/mail-autoexpunge.Plo
--- mail-namespace.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-dict  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-fs  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-charset  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-index  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DMODULEDIR=\""/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 -mfunction-return=keep -Wall -W -Wmissing-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-namespace.lo -MD -MP -MF .deps/mail-namespace.Tpo -c -o mail-namespace.lo mail-namespace.c
--- mail.lo ---
mv -f .deps/mail.Tpo .deps/mail.Plo
--- mail-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-auth  -I../../src/lib-dict  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-fs  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-charset  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-index  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DMODULEDIR=\""/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 -mfunction-return=keep -Wall -W -Wmissing-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-search.lo -MD -MP -MF .deps/mail-search.Tpo -c -o mail-search.lo mail-search.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mail-error.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-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-error.lo -MD -MP -MF .deps/mail-error.Tpo -c mail-error.c  -fPIC -DPIC -o .libs/mail-error.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mail-duplicate.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-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-duplicate.lo -MD -MP -MF .deps/mail-duplicate.Tpo -c mail-duplicate.c -o mail-duplicate.o >/dev/null 2>&1
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mail-namespace.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-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-namespace.lo -MD -MP -MF .deps/mail-namespace.Tpo -c mail-namespace.c  -fPIC -DPIC -o .libs/mail-namespace.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mail-search.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-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-search.lo -MD -MP -MF .deps/mail-search.Tpo -c mail-search.c  -fPIC -DPIC -o .libs/mail-search.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mail-error.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-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-error.lo -MD -MP -MF .deps/mail-error.Tpo -c mail-error.c -o mail-error.o >/dev/null 2>&1
mv -f .deps/mail-error.Tpo .deps/mail-error.Plo
--- mail-search-args-cmdline.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-dict  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-fs  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-charset  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-index  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DMODULEDIR=\""/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 -mfunction-return=keep -Wall -W -Wmissing-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-search-args-cmdline.lo -MD -MP -MF .deps/mail-search-args-cmdline.Tpo -c -o mail-search-args-cmdline.lo mail-search-args-cmdline.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-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-search-args-cmdline.lo -MD -MP -MF .deps/mail-search-args-cmdline.Tpo -c mail-search-args-cmdline.c  -fPIC -DPIC -o .libs/mail-search-args-cmdline.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-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-search-args-cmdline.lo -MD -MP -MF .deps/mail-search-args-cmdline.Tpo -c mail-search-args-cmdline.c -o mail-search-args-cmdline.o >/dev/null 2>&1
--- mail-duplicate.lo ---
mv -f .deps/mail-duplicate.Tpo .deps/mail-duplicate.Plo
--- mail-search-args-imap.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-dict  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-fs  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-charset  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-index  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DMODULEDIR=\""/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 -mfunction-return=keep -Wall -W -Wmissing-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-search-args-imap.lo -MD -MP -MF .deps/mail-search-args-imap.Tpo -c -o mail-search-args-imap.lo mail-search-args-imap.c
--- mail-search-args-cmdline.lo ---
mv -f .deps/mail-search-args-cmdline.Tpo .deps/mail-search-args-cmdline.Plo
--- mail-search-args-simplify.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-dict  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-fs  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-charset  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-index  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DMODULEDIR=\""/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 -mfunction-return=keep -Wall -W -Wmissing-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-search-args-simplify.lo -MD -MP -MF .deps/mail-search-args-simplify.Tpo -c -o mail-search-args-simplify.lo mail-search-args-simplify.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mail-search.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-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-search.lo -MD -MP -MF .deps/mail-search.Tpo -c mail-search.c -o mail-search.o >/dev/null 2>&1
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mail-search-args-imap.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-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-search-args-imap.lo -MD -MP -MF .deps/mail-search-args-imap.Tpo -c mail-search-args-imap.c  -fPIC -DPIC -o .libs/mail-search-args-imap.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mail-namespace.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-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-namespace.lo -MD -MP -MF .deps/mail-namespace.Tpo -c mail-namespace.c -o mail-namespace.o >/dev/null 2>&1
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mail-search-args-simplify.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-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-search-args-simplify.lo -MD -MP -MF .deps/mail-search-args-simplify.Tpo -c mail-search-args-simplify.c  -fPIC -DPIC -o .libs/mail-search-args-simplify.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mail-search-args-imap.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-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-search-args-imap.lo -MD -MP -MF .deps/mail-search-args-imap.Tpo -c mail-search-args-imap.c -o mail-search-args-imap.o >/dev/null 2>&1
--- mail-search.lo ---
mv -f .deps/mail-search.Tpo .deps/mail-search.Plo
--- mail-search-build.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-dict  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-fs  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-charset  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-index  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DMODULEDIR=\""/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 -mfunction-return=keep -Wall -W -Wmissing-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-search-build.lo -MD -MP -MF .deps/mail-search-build.Tpo -c -o mail-search-build.lo mail-search-build.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mail-search-args-simplify.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-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-search-args-simplify.lo -MD -MP -MF .deps/mail-search-args-simplify.Tpo -c mail-search-args-simplify.c -o mail-search-args-simplify.o >/dev/null 2>&1
--- mail-search-args-imap.lo ---
mv -f .deps/mail-search-args-imap.Tpo .deps/mail-search-args-imap.Plo
--- mail-search-mime.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-dict  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-fs  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-charset  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-index  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DMODULEDIR=\""/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 -mfunction-return=keep -Wall -W -Wmissing-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-search-mime.lo -MD -MP -MF .deps/mail-search-mime.Tpo -c -o mail-search-mime.lo mail-search-mime.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mail-search-build.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-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-search-build.lo -MD -MP -MF .deps/mail-search-build.Tpo -c mail-search-build.c  -fPIC -DPIC -o .libs/mail-search-build.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mail-search-mime.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-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-search-mime.lo -MD -MP -MF .deps/mail-search-mime.Tpo -c mail-search-mime.c  -fPIC -DPIC -o .libs/mail-search-mime.o
--- mail-namespace.lo ---
mv -f .deps/mail-namespace.Tpo .deps/mail-namespace.Plo
--- mail-search-mime-build.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-dict  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-fs  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-charset  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-index  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DMODULEDIR=\""/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 -mfunction-return=keep -Wall -W -Wmissing-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-search-mime-build.lo -MD -MP -MF .deps/mail-search-mime-build.Tpo -c -o mail-search-mime-build.lo mail-search-mime-build.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-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-search-mime-build.lo -MD -MP -MF .deps/mail-search-mime-build.Tpo -c mail-search-mime-build.c  -fPIC -DPIC -o .libs/mail-search-mime-build.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mail-search-build.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-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-search-build.lo -MD -MP -MF .deps/mail-search-build.Tpo -c mail-search-build.c -o mail-search-build.o >/dev/null 2>&1
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mail-search-mime.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-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-search-mime.lo -MD -MP -MF .deps/mail-search-mime.Tpo -c mail-search-mime.c -o mail-search-mime.o >/dev/null 2>&1
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mail-search-mime-build.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-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-search-mime-build.lo -MD -MP -MF .deps/mail-search-mime-build.Tpo -c mail-search-mime-build.c -o mail-search-mime-build.o >/dev/null 2>&1
--- mail-search-args-simplify.lo ---
mv -f .deps/mail-search-args-simplify.Tpo .deps/mail-search-args-simplify.Plo
--- mail-search-mime-register.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-dict  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-fs  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-charset  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-index  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DMODULEDIR=\""/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 -mfunction-return=keep -Wall -W -Wmissing-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-search-mime-register.lo -MD -MP -MF .deps/mail-search-mime-register.Tpo -c -o mail-search-mime-register.lo mail-search-mime-register.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-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-search-mime-register.lo -MD -MP -MF .deps/mail-search-mime-register.Tpo -c mail-search-mime-register.c  -fPIC -DPIC -o .libs/mail-search-mime-register.o
--- mail-search-build.lo ---
mv -f .deps/mail-search-build.Tpo .deps/mail-search-build.Plo
--- mail-search-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-auth  -I../../src/lib-dict  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-fs  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-charset  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-index  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DMODULEDIR=\""/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 -mfunction-return=keep -Wall -W -Wmissing-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-search-parser.lo -MD -MP -MF .deps/mail-search-parser.Tpo -c -o mail-search-parser.lo mail-search-parser.c
--- mail-search-mime-build.lo ---
mv -f .deps/mail-search-mime-build.Tpo .deps/mail-search-mime-build.Plo
--- mail-search-parser-imap.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-dict  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-fs  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-charset  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-index  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DMODULEDIR=\""/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 -mfunction-return=keep -Wall -W -Wmissing-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-search-parser-imap.lo -MD -MP -MF .deps/mail-search-parser-imap.Tpo -c -o mail-search-parser-imap.lo mail-search-parser-imap.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mail-search-parser.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-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-search-parser.lo -MD -MP -MF .deps/mail-search-parser.Tpo -c mail-search-parser.c  -fPIC -DPIC -o .libs/mail-search-parser.o
--- mail-search-mime.lo ---
mv -f .deps/mail-search-mime.Tpo .deps/mail-search-mime.Plo
--- mail-search-parser-cmdline.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-dict  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-fs  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-charset  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-index  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DMODULEDIR=\""/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 -mfunction-return=keep -Wall -W -Wmissing-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-search-parser-cmdline.lo -MD -MP -MF .deps/mail-search-parser-cmdline.Tpo -c -o mail-search-parser-cmdline.lo mail-search-parser-cmdline.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mail-search-parser-imap.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-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-search-parser-imap.lo -MD -MP -MF .deps/mail-search-parser-imap.Tpo -c mail-search-parser-imap.c  -fPIC -DPIC -o .libs/mail-search-parser-imap.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mail-search-parser.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-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-search-parser.lo -MD -MP -MF .deps/mail-search-parser.Tpo -c mail-search-parser.c -o mail-search-parser.o >/dev/null 2>&1
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mail-search-parser-cmdline.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-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-search-parser-cmdline.lo -MD -MP -MF .deps/mail-search-parser-cmdline.Tpo -c mail-search-parser-cmdline.c  -fPIC -DPIC -o .libs/mail-search-parser-cmdline.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mail-search-mime-register.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-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-search-mime-register.lo -MD -MP -MF .deps/mail-search-mime-register.Tpo -c mail-search-mime-register.c -o mail-search-mime-register.o >/dev/null 2>&1
--- mail-search-parser.lo ---
mv -f .deps/mail-search-parser.Tpo .deps/mail-search-parser.Plo
--- mail-search-register.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-dict  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-fs  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-charset  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-index  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DMODULEDIR=\""/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 -mfunction-return=keep -Wall -W -Wmissing-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-search-register.lo -MD -MP -MF .deps/mail-search-register.Tpo -c -o mail-search-register.lo mail-search-register.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mail-search-parser-imap.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-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-search-parser-imap.lo -MD -MP -MF .deps/mail-search-parser-imap.Tpo -c mail-search-parser-imap.c -o mail-search-parser-imap.o >/dev/null 2>&1
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mail-search-parser-cmdline.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-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-search-parser-cmdline.lo -MD -MP -MF .deps/mail-search-parser-cmdline.Tpo -c mail-search-parser-cmdline.c -o mail-search-parser-cmdline.o >/dev/null 2>&1libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mail-search-register.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-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-search-register.lo -MD -MP -MF .deps/mail-search-register.Tpo -c mail-search-register.c  -fPIC -DPIC -o .libs/mail-search-register.o
--- mail-search-parser-imap.lo ---
mv -f .deps/mail-search-parser-imap.Tpo .deps/mail-search-parser-imap.Plo
--- mail-search-register-human.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-dict  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-fs  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-charset  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-index  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DMODULEDIR=\""/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 -mfunction-return=keep -Wall -W -Wmissing-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-search-register-human.lo -MD -MP -MF .deps/mail-search-register-human.Tpo -c -o mail-search-register-human.lo mail-search-register-human.c
--- mail-search-parser-cmdline.lo ---
mv -f .deps/mail-search-parser-cmdline.Tpo .deps/mail-search-parser-cmdline.Plo
--- mail-search-register-imap.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-dict  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-fs  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-charset  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-index  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DMODULEDIR=\""/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 -mfunction-return=keep -Wall -W -Wmissing-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-search-register-imap.lo -MD -MP -MF .deps/mail-search-register-imap.Tpo -c -o mail-search-register-imap.lo mail-search-register-imap.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mail-search-register.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-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-search-register.lo -MD -MP -MF .deps/mail-search-register.Tpo -c mail-search-register.c -o mail-search-register.o >/dev/null 2>&1
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mail-search-register-human.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-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-search-register-human.lo -MD -MP -MF .deps/mail-search-register-human.Tpo -c mail-search-register-human.c  -fPIC -DPIC -o .libs/mail-search-register-human.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mail-search-register-imap.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-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-search-register-imap.lo -MD -MP -MF .deps/mail-search-register-imap.Tpo -c mail-search-register-imap.c  -fPIC -DPIC -o .libs/mail-search-register-imap.o
--- mail-search-mime-register.lo ---
mv -f .deps/mail-search-mime-register.Tpo .deps/mail-search-mime-register.Plo
--- mail-storage.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-dict  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-fs  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-charset  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-index  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DMODULEDIR=\""/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 -mfunction-return=keep -Wall -W -Wmissing-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-storage.lo -MD -MP -MF .deps/mail-storage.Tpo -c -o mail-storage.lo mail-storage.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-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-storage.lo -MD -MP -MF .deps/mail-storage.Tpo -c mail-storage.c  -fPIC -DPIC -o .libs/mail-storage.o
--- mail-search-register.lo ---
mv -f .deps/mail-search-register.Tpo .deps/mail-search-register.Plo
--- mail-storage-hooks.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-dict  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-fs  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-charset  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-index  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DMODULEDIR=\""/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 -mfunction-return=keep -Wall -W -Wmissing-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-storage-hooks.lo -MD -MP -MF .deps/mail-storage-hooks.Tpo -c -o mail-storage-hooks.lo mail-storage-hooks.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-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-storage-hooks.lo -MD -MP -MF .deps/mail-storage-hooks.Tpo -c mail-storage-hooks.c  -fPIC -DPIC -o .libs/mail-storage-hooks.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mail-search-register-human.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-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-search-register-human.lo -MD -MP -MF .deps/mail-search-register-human.Tpo -c mail-search-register-human.c -o mail-search-register-human.o >/dev/null 2>&1libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mail-search-register-imap.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-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-search-register-imap.lo -MD -MP -MF .deps/mail-search-register-imap.Tpo -c mail-search-register-imap.c -o mail-search-register-imap.o >/dev/null 2>&1
--- mail-search-register-human.lo ---
mv -f .deps/mail-search-register-human.Tpo .deps/mail-search-register-human.Plo
--- mail-storage-register.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-dict  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-fs  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-charset  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-index  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DMODULEDIR=\""/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 -mfunction-return=keep -Wall -W -Wmissing-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-storage-register.lo -MD -MP -MF .deps/mail-storage-register.Tpo -c -o mail-storage-register.lo mail-storage-register.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-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-storage-register.lo -MD -MP -MF .deps/mail-storage-register.Tpo -c mail-storage-register.c  -fPIC -DPIC -o .libs/mail-storage-register.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mail-storage-hooks.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-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-storage-hooks.lo -MD -MP -MF .deps/mail-storage-hooks.Tpo -c mail-storage-hooks.c -o mail-storage-hooks.o >/dev/null 2>&1
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mail-storage-register.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-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-storage-register.lo -MD -MP -MF .deps/mail-storage-register.Tpo -c mail-storage-register.c -o mail-storage-register.o >/dev/null 2>&1
--- mail-search-register-imap.lo ---
mv -f .deps/mail-search-register-imap.Tpo .deps/mail-search-register-imap.Plo
--- mail-storage-service.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-dict  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-fs  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-charset  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-index  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DMODULEDIR=\""/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 -mfunction-return=keep -Wall -W -Wmissing-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-storage-service.lo -MD -MP -MF .deps/mail-storage-service.Tpo -c -o mail-storage-service.lo mail-storage-service.c
--- mail-storage-register.lo ---
mv -f .deps/mail-storage-register.Tpo .deps/mail-storage-register.Plo
--- mail-storage-settings.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-dict  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-fs  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-charset  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-index  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DMODULEDIR=\""/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 -mfunction-return=keep -Wall -W -Wmissing-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-storage-settings.lo -MD -MP -MF .deps/mail-storage-settings.Tpo -c -o mail-storage-settings.lo mail-storage-settings.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mail-storage-service.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-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-storage-service.lo -MD -MP -MF .deps/mail-storage-service.Tpo -c mail-storage-service.c  -fPIC -DPIC -o .libs/mail-storage-service.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mail-storage-settings.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-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-storage-settings.lo -MD -MP -MF .deps/mail-storage-settings.Tpo -c mail-storage-settings.c  -fPIC -DPIC -o .libs/mail-storage-settings.o
--- mail-storage-hooks.lo ---
mv -f .deps/mail-storage-hooks.Tpo .deps/mail-storage-hooks.Plo
--- mail-thread.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-dict  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-fs  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-charset  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-index  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DMODULEDIR=\""/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 -mfunction-return=keep -Wall -W -Wmissing-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-thread.lo -MD -MP -MF .deps/mail-thread.Tpo -c -o mail-thread.lo mail-thread.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-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-thread.lo -MD -MP -MF .deps/mail-thread.Tpo -c mail-thread.c  -fPIC -DPIC -o .libs/mail-thread.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-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-thread.lo -MD -MP -MF .deps/mail-thread.Tpo -c mail-thread.c -o mail-thread.o >/dev/null 2>&1
mv -f .deps/mail-thread.Tpo .deps/mail-thread.Plo
--- mail-user.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-dict  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-fs  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-charset  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-index  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DMODULEDIR=\""/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 -mfunction-return=keep -Wall -W -Wmissing-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.lo -MD -MP -MF .deps/mail-user.Tpo -c -o mail-user.lo mail-user.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mail-storage-settings.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-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-storage-settings.lo -MD -MP -MF .deps/mail-storage-settings.Tpo -c mail-storage-settings.c -o mail-storage-settings.o >/dev/null 2>&1
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mail-user.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-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.lo -MD -MP -MF .deps/mail-user.Tpo -c mail-user.c  -fPIC -DPIC -o .libs/mail-user.o
--- mail-storage-settings.lo ---
mv -f .deps/mail-storage-settings.Tpo .deps/mail-storage-settings.Plo
--- mailbox-attribute.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-dict  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-fs  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-charset  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-index  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DMODULEDIR=\""/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-attribute.lo -MD -MP -MF .deps/mailbox-attribute.Tpo -c -o mailbox-attribute.lo mailbox-attribute.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-attribute.lo -MD -MP -MF .deps/mailbox-attribute.Tpo -c mailbox-attribute.c  -fPIC -DPIC -o .libs/mailbox-attribute.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mail-storage-service.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-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-storage-service.lo -MD -MP -MF .deps/mail-storage-service.Tpo -c mail-storage-service.c -o mail-storage-service.o >/dev/null 2>&1
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mail-storage.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-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-storage.lo -MD -MP -MF .deps/mail-storage.Tpo -c mail-storage.c -o mail-storage.o >/dev/null 2>&1
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mail-user.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-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.lo -MD -MP -MF .deps/mail-user.Tpo -c mail-user.c -o mail-user.o >/dev/null 2>&1
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mailbox-attribute.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-attribute.lo -MD -MP -MF .deps/mailbox-attribute.Tpo -c mailbox-attribute.c -o mailbox-attribute.o >/dev/null 2>&1
--- mail-user.lo ---
mv -f .deps/mail-user.Tpo .deps/mail-user.Plo
--- mailbox-attribute-internal.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-dict  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-fs  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-charset  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-index  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DMODULEDIR=\""/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-attribute-internal.lo -MD -MP -MF .deps/mailbox-attribute-internal.Tpo -c -o mailbox-attribute-internal.lo mailbox-attribute-internal.c
--- mailbox-attribute.lo ---
mv -f .deps/mailbox-attribute.Tpo .deps/mailbox-attribute.Plo
--- mailbox-get.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-dict  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-fs  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-charset  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-index  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DMODULEDIR=\""/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-get.lo -MD -MP -MF .deps/mailbox-get.Tpo -c -o mailbox-get.lo mailbox-get.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mailbox-attribute-internal.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-attribute-internal.lo -MD -MP -MF .deps/mailbox-attribute-internal.Tpo -c mailbox-attribute-internal.c  -fPIC -DPIC -o .libs/mailbox-attribute-internal.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mailbox-get.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-get.lo -MD -MP -MF .deps/mailbox-get.Tpo -c mailbox-get.c  -fPIC -DPIC -o .libs/mailbox-get.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mailbox-attribute-internal.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-attribute-internal.lo -MD -MP -MF .deps/mailbox-attribute-internal.Tpo -c mailbox-attribute-internal.c -o mailbox-attribute-internal.o >/dev/null 2>&1--- mail-storage-service.lo ---
mv -f .deps/mail-storage-service.Tpo .deps/mail-storage-service.Plo
--- mailbox-guid-cache.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-dict  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-fs  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-charset  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-index  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DMODULEDIR=\""/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-guid-cache.lo -MD -MP -MF .deps/mailbox-guid-cache.Tpo -c -o mailbox-guid-cache.lo mailbox-guid-cache.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-guid-cache.lo -MD -MP -MF .deps/mailbox-guid-cache.Tpo -c mailbox-guid-cache.c  -fPIC -DPIC -o .libs/mailbox-guid-cache.o
--- mailbox-attribute-internal.lo ---
mv -f .deps/mailbox-attribute-internal.Tpo .deps/mailbox-attribute-internal.Plo
--- mailbox-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-auth  -I../../src/lib-dict  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-fs  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-charset  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-index  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DMODULEDIR=\""/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-header.lo -MD -MP -MF .deps/mailbox-header.Tpo -c -o mailbox-header.lo mailbox-header.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mailbox-get.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-get.lo -MD -MP -MF .deps/mailbox-get.Tpo -c mailbox-get.c -o mailbox-get.o >/dev/null 2>&1
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mailbox-header.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-header.lo -MD -MP -MF .deps/mailbox-header.Tpo -c mailbox-header.c  -fPIC -DPIC -o .libs/mailbox-header.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mailbox-guid-cache.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-guid-cache.lo -MD -MP -MF .deps/mailbox-guid-cache.Tpo -c mailbox-guid-cache.c -o mailbox-guid-cache.o >/dev/null 2>&1
--- mailbox-get.lo ---
mv -f .deps/mailbox-get.Tpo .deps/mailbox-get.Plo
--- mailbox-keywords.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-dict  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-fs  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-charset  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-index  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DMODULEDIR=\""/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-keywords.lo -MD -MP -MF .deps/mailbox-keywords.Tpo -c -o mailbox-keywords.lo mailbox-keywords.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mailbox-header.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-header.lo -MD -MP -MF .deps/mailbox-header.Tpo -c mailbox-header.c -o mailbox-header.o >/dev/null 2>&1
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mailbox-keywords.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-keywords.lo -MD -MP -MF .deps/mailbox-keywords.Tpo -c mailbox-keywords.c  -fPIC -DPIC -o .libs/mailbox-keywords.o
--- mailbox-guid-cache.lo ---
mv -f .deps/mailbox-guid-cache.Tpo .deps/mailbox-guid-cache.Plo
--- mailbox-list.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-dict  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-fs  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-charset  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-index  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DMODULEDIR=\""/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-list.lo -MD -MP -MF .deps/mailbox-list.Tpo -c -o mailbox-list.lo mailbox-list.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-list.lo -MD -MP -MF .deps/mailbox-list.Tpo -c mailbox-list.c  -fPIC -DPIC -o .libs/mailbox-list.o
--- mailbox-header.lo ---
mv -f .deps/mailbox-header.Tpo .deps/mailbox-header.Plo
--- mailbox-list-notify.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-dict  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-fs  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-charset  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-index  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DMODULEDIR=\""/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-list-notify.lo -MD -MP -MF .deps/mailbox-list-notify.Tpo -c -o mailbox-list-notify.lo mailbox-list-notify.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mailbox-keywords.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-keywords.lo -MD -MP -MF .deps/mailbox-keywords.Tpo -c mailbox-keywords.c -o mailbox-keywords.o >/dev/null 2>&1
--- mail-storage.lo ---
mv -f .deps/mail-storage.Tpo .deps/mail-storage.Plo
--- mailbox-list-register.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-dict  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-fs  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-charset  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-index  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DMODULEDIR=\""/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-list-register.lo -MD -MP -MF .deps/mailbox-list-register.Tpo -c -o mailbox-list-register.lo mailbox-list-register.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mailbox-list-notify.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-list-notify.lo -MD -MP -MF .deps/mailbox-list-notify.Tpo -c mailbox-list-notify.c  -fPIC -DPIC -o .libs/mailbox-list-notify.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mailbox-list-register.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-list-register.lo -MD -MP -MF .deps/mailbox-list-register.Tpo -c mailbox-list-register.c  -fPIC -DPIC -o .libs/mailbox-list-register.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mailbox-list-notify.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-list-notify.lo -MD -MP -MF .deps/mailbox-list-notify.Tpo -c mailbox-list-notify.c -o mailbox-list-notify.o >/dev/null 2>&1
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mailbox-list-register.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-list-register.lo -MD -MP -MF .deps/mailbox-list-register.Tpo -c mailbox-list-register.c -o mailbox-list-register.o >/dev/null 2>&1
--- mailbox-keywords.lo ---
mv -f .deps/mailbox-keywords.Tpo .deps/mailbox-keywords.Plo
--- mailbox-match-plugin.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-dict  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-fs  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-charset  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-index  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DMODULEDIR=\""/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-match-plugin.lo -MD -MP -MF .deps/mailbox-match-plugin.Tpo -c -o mailbox-match-plugin.lo mailbox-match-plugin.c
--- mailbox-list-register.lo ---
mv -f .deps/mailbox-list-register.Tpo .deps/mailbox-list-register.Plo
--- mailbox-recent-flags.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-dict  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-fs  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-charset  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-index  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DMODULEDIR=\""/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-recent-flags.lo -MD -MP -MF .deps/mailbox-recent-flags.Tpo -c -o mailbox-recent-flags.lo mailbox-recent-flags.c
--- mailbox-list-notify.lo ---
mv -f .deps/mailbox-list-notify.Tpo .deps/mailbox-list-notify.Plo
--- mailbox-search-result.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-dict  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-fs  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-charset  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-index  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DMODULEDIR=\""/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-search-result.lo -MD -MP -MF .deps/mailbox-search-result.Tpo -c -o mailbox-search-result.lo mailbox-search-result.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mailbox-match-plugin.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-match-plugin.lo -MD -MP -MF .deps/mailbox-match-plugin.Tpo -c mailbox-match-plugin.c  -fPIC -DPIC -o .libs/mailbox-match-plugin.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mailbox-recent-flags.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-recent-flags.lo -MD -MP -MF .deps/mailbox-recent-flags.Tpo -c mailbox-recent-flags.c  -fPIC -DPIC -o .libs/mailbox-recent-flags.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mailbox-search-result.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-search-result.lo -MD -MP -MF .deps/mailbox-search-result.Tpo -c mailbox-search-result.c  -fPIC -DPIC -o .libs/mailbox-search-result.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mailbox-match-plugin.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-match-plugin.lo -MD -MP -MF .deps/mailbox-match-plugin.Tpo -c mailbox-match-plugin.c -o mailbox-match-plugin.o >/dev/null 2>&1
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mailbox-recent-flags.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-recent-flags.lo -MD -MP -MF .deps/mailbox-recent-flags.Tpo -c mailbox-recent-flags.c -o mailbox-recent-flags.o >/dev/null 2>&1
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mailbox-search-result.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-search-result.lo -MD -MP -MF .deps/mailbox-search-result.Tpo -c mailbox-search-result.c -o mailbox-search-result.o >/dev/null 2>&1
--- mailbox-match-plugin.lo ---
mv -f .deps/mailbox-match-plugin.Tpo .deps/mailbox-match-plugin.Plo
--- mailbox-tree.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-dict  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-fs  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-charset  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-index  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DMODULEDIR=\""/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-tree.lo -MD -MP -MF .deps/mailbox-tree.Tpo -c -o mailbox-tree.lo mailbox-tree.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-tree.lo -MD -MP -MF .deps/mailbox-tree.Tpo -c mailbox-tree.c  -fPIC -DPIC -o .libs/mailbox-tree.o
--- mailbox-recent-flags.lo ---
mv -f .deps/mailbox-recent-flags.Tpo .deps/mailbox-recent-flags.Plo
--- mailbox-uidvalidity.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-dict  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-fs  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-charset  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-index  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DMODULEDIR=\""/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-uidvalidity.lo -MD -MP -MF .deps/mailbox-uidvalidity.Tpo -c -o mailbox-uidvalidity.lo mailbox-uidvalidity.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-uidvalidity.lo -MD -MP -MF .deps/mailbox-uidvalidity.Tpo -c mailbox-uidvalidity.c  -fPIC -DPIC -o .libs/mailbox-uidvalidity.o
--- mailbox-search-result.lo ---
mv -f .deps/mailbox-search-result.Tpo .deps/mailbox-search-result.Plo
--- mailbox-watch.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-dict  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-fs  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-charset  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-index  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DMODULEDIR=\""/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-watch.lo -MD -MP -MF .deps/mailbox-watch.Tpo -c -o mailbox-watch.lo mailbox-watch.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-watch.lo -MD -MP -MF .deps/mailbox-watch.Tpo -c mailbox-watch.c  -fPIC -DPIC -o .libs/mailbox-watch.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mailbox-tree.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-tree.lo -MD -MP -MF .deps/mailbox-tree.Tpo -c mailbox-tree.c -o mailbox-tree.o >/dev/null 2>&1
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mailbox-list.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-list.lo -MD -MP -MF .deps/mailbox-list.Tpo -c mailbox-list.c -o mailbox-list.o >/dev/null 2>&1
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mailbox-uidvalidity.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-uidvalidity.lo -MD -MP -MF .deps/mailbox-uidvalidity.Tpo -c mailbox-uidvalidity.c -o mailbox-uidvalidity.o >/dev/null 2>&1
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- mailbox-watch.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-watch.lo -MD -MP -MF .deps/mailbox-watch.Tpo -c mailbox-watch.c -o mailbox-watch.o >/dev/null 2>&1
--- mailbox-uidvalidity.lo ---
mv -f .deps/mailbox-uidvalidity.Tpo .deps/mailbox-uidvalidity.Plo
--- test-mail-storage-common.lo ---
--- mailbox-tree.lo ---
mv -f .deps/mailbox-tree.Tpo .deps/mailbox-tree.Plo
--- test-mail-storage-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-auth  -I../../src/lib-dict  -I../../src/lib-sasl  -I../../src/lib-ssl-iostream  -I../../src/lib-fs  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-charset  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-index  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DMODULEDIR=\""/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 -mfunction-return=keep -Wall -W -Wmissing-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-storage-common.lo -MD -MP -MF .deps/test-mail-storage-common.Tpo -c -o test-mail-storage-common.lo test-mail-storage-common.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-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-storage-common.lo -MD -MP -MF .deps/test-mail-storage-common.Tpo -c test-mail-storage-common.c  -fPIC -DPIC -o .libs/test-mail-storage-common.o
--- mailbox-watch.lo ---
mv -f .deps/mailbox-watch.Tpo .deps/mailbox-watch.Plo
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-auth -I../../src/lib-dict -I../../src/lib-sasl -I../../src/lib-ssl-iostream -I../../src/lib-fs -I../../src/lib-master -I../../src/lib-settings -I../../src/lib-char--- test-mail-storage-common.lo ---
../../src/lib-mail -I../../src/lib-smtp -I../../src/lib-imap -I../../src/lib-index -DPKG_RUNDIR=\"/var/run/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-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-storage-common.lo -MD -MP -MF .deps/test-mail-storage-common.Tpo -c test-mail-storage-common.c -o test-mail-storage-common.o >/dev/null 2>&1
mv -f .deps/test-mail-storage-common.Tpo .deps/test-mail-storage-common.Plo
--- mailbox-list.lo ---
mv -f .deps/mailbox-list.Tpo .deps/mailbox-list.Plo
--- libstorage.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 -mfunction-return=keep -Wall -W -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 libstorage.la  fail-mail-storage.lo fail-mailbox.lo  fail-mail.lo mail.lo mail-autoexpunge.lo mail-copy.lo  mail-duplicate.lo mail-error.lo mail-namespace.lo  mail-search.lo mail-search-args-cmdline.lo  mail-search-args-imap.lo mail-search-args-simplify.lo  mail-search-build.lo mail-search-mime.lo  mail-search-mime-build.lo mail-search-mime-register.lo  mail-search-parser.lo mail-search-parser-imap.lo  mail-search-parser-cmdline.lo mail-search-register.lo  mail-search-register-human.lo mail-search-register-imap.lo  mail-storage.lo mail-storage-hooks.lo mail-storage-register.lo  mail-storage-service.lo mail-storage-settings.lo  mail-thread.lo mail-user.lo mailbox-attribute.lo  mailbox-attribute-internal.lo mailbox-get.lo  mailbox-guid-cache.lo mailbox-header.lo mailbox-keywords.lo  mailbox-list.lo mailbox-list-notify.lo  mailbox-list-register.lo mailbox-match-plugin.lo  mailbox-recent-flags.lo mailbox-search-result.lo  mailbox-tree.lo mailbox-uidvalidity.lo mailbox-watch.lo  test-mail-storage-common.lo index/shared/libstorage_shared.la  index/dbox-multi/libstorage_dbox_multi.la  index/dbox-single/libstorage_dbox_single.la  index/dbox-common/libstorage_dbox_common.la  index/maildir/libstorage_maildir.la  index/mbox/libstorage_mbox.la  index/imapc/libstorage_imapc.la  ../lib-imap-client/libimap_client.la  index/pop3c/libstorage_pop3c.la  index/raw/libstorage_raw.la  list/libstorage_list.la  index/libstorage_index.la  ../lib-index/libindex.la  ../lib-imap-storage/libimap-storage.la 
libtool: link: (cd .libs/libstorage.lax/libstorage_shared.a && ar x "/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-storage/index/shared/.libs/libstorage_shared.a")
libtool: link: (cd .libs/libstorage.lax/libstorage_dbox_multi.a && ar x "/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-storage/index/dbox-multi/.libs/libstorage_dbox_multi.a")
libtool: link: (cd .libs/libstorage.lax/libstorage_dbox_single.a && ar x "/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-storage/index/dbox-single/.libs/libstorage_dbox_single.a")
libtool: link: (cd .libs/libstorage.lax/libstorage_dbox_common.a && ar x "/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-storage/index/dbox-common/.libs/libstorage_dbox_common.a")
libtool: link: (cd .libs/libstorage.lax/libstorage_maildir.a && ar x "/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-storage/index/maildir/.libs/libstorage_maildir.a")
libtool: link: (cd .libs/libstorage.lax/libstorage_mbox.a && ar x "/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-storage/index/mbox/.libs/libstorage_mbox.a")
libtool: link: (cd .libs/libstorage.lax/libstorage_imapc.a && ar x "/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-storage/index/imapc/.libs/libstorage_imapc.a")
libtool: link: (cd .libs/libstorage.lax/libimap_client.a && ar x "/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-storage/../lib-imap-client/.libs/libimap_client.a")
libtool: link: (cd .libs/libstorage.lax/libstorage_pop3c.a && ar x "/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-storage/index/pop3c/.libs/libstorage_pop3c.a")
libtool: link: (cd .libs/libstorage.lax/libstorage_raw.a && ar x "/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-storage/index/raw/.libs/libstorage_raw.a")
libtool: link: (cd .libs/libstorage.lax/libstorage_list.a && ar x "/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-storage/list/.libs/libstorage_list.a")
libtool: link: (cd .libs/libstorage.lax/libstorage_index.a && ar x "/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-storage/index/.libs/libstorage_index.a")
libtool: link: (cd .libs/libstorage.lax/libindex.a && ar x "/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-storage/../lib-index/.libs/libindex.a")
libtool: link: (cd .libs/libstorage.lax/libimap-storage.a && ar x "/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-storage/../lib-imap-storage/.libs/libimap-storage.a")
libtool: link: ar cr .libs/libstorage.a .libs/fail-mail-storage.o .libs/fail-mailbox.o .libs/fail-mail.o .libs/mail.o .libs/mail-autoexpunge.o .libs/mail-copy.o .libs/mail-duplicate.o .libs/mail-error.o .libs/mail-namespace.o .libs/mail-search.o .libs/mail-search-args-cmdline.o .libs/mail-search-args-imap.o .libs/mail-search-args-simplify.o .libs/mail-search-build.o .libs/mail-search-mime.o .libs/mail-search-mime-build.o .libs/mail-search-mime-register.o .libs/mail-search-parser.o .libs/mail-search-parser-imap.o .libs/mail-search-parser-cmdline.o .libs/mail-search-register.o .libs/mail-search-register-human.o .libs/mail-search-register-imap.o .libs/mail-storage.o .libs/mail-storage-hooks.o .libs/mail-storage-register.o .libs/mail-storage-service.o .libs/mail-storage-settings.o .libs/mail-thread.o .libs/mail-user.o .libs/mailbox-attribute.o .libs/mailbox-attribute-internal.o .libs/mailbox-get.o .libs/mailbox-guid-cache.o .libs/mailbox-header.o .libs/mailbox-keywords.o .libs/mailbox-list.o .libs/mailbox-list-notify.o .libs/mailbox-list-register.o .libs/mailbox-match-plugin.o .libs/mailbox-recent-flags.o .libs/mailbox-search-result.o .libs/mailbox-tree.o .libs/mailbox-uidvalidity.o .libs/mailbox-watch.o .libs/test-mail-storage-common.o   .libs/libstorage.lax/libstorage_shared.a/shared-list.o .libs/libstorage.lax/libstorage_shared.a/shared-storage.o  .libs/libstorage.lax/libstorage_dbox_multi.a/mdbox-deleted-storage.o .libs/libstorage.lax/libstorage_dbox_multi.a/mdbox-file.o .libs/libstorage.lax/libstorage_dbox_multi.a/mdbox-mail.o .libs/libstorage.lax/libstorage_dbox_multi.a/mdbox-map.o .libs/libstorage.lax/libstorage_dbox_multi.a/mdbox-purge.o .libs/libstorage.lax/libstorage_dbox_multi.a/mdbox-save.o .libs/libstorage.lax/libstorage_dbox_multi.a/mdbox-settings.o .libs/libstorage.lax/libstorage_dbox_multi.a/mdbox-storage-rebuild.o .libs/libstorage.lax/libstorage_dbox_multi.a/mdbox-storage.o .libs/libstorage.lax/libstorage_dbox_multi.a/mdbox-sync.o  .libs/libstorage.lax/libstorage_dbox_single.a/sdbox-copy.o .libs/libstorage.lax/libstorage_dbox_single.a/sdbox-file.o .libs/libstorage.lax/libstorage_dbox_single.a/sdbox-mail.o .libs/libstorage.lax/libstorage_dbox_single.a/sdbox-save.o .libs/libstorage.lax/libstorage_dbox_single.a/sdbox-storage.o .libs/libstorage.lax/libstorage_dbox_single.a/sdbox-sync-rebuild.o .libs/libstorage.lax/libstorage_dbox_single.a/sdbox-sync.o  .libs/libstorage.lax/libstorage_dbox_common.a/dbox-attachment.o .libs/libstorage.lax/libstorage_dbox_common.a/dbox-file-fix.o .libs/libstorage.lax/libstorage_dbox_common.a/dbox-file.o .libs/libstorage.lax/libstorage_dbox_common.a/dbox-mail.o .libs/libstorage.lax/libstorage_dbox_common.a/dbox-save.o .libs/libstorage.lax/libstorage_dbox_common.a/dbox-storage.o  .libs/libstorage.lax/libstorage_maildir.a/maildir-copy.o .libs/libstorage.lax/libstorage_maildir.a/maildir-filename-flags.o .libs/libstorage.lax/libstorage_maildir.a/maildir-filename.o .libs/libstorage.lax/libstorage_maildir.a/maildir-keywords.o .libs/libstorage.lax/libstorage_maildir.a/maildir-mail.o .libs/libstorage.lax/libstorage_maildir.a/maildir-save.o .libs/libstorage.lax/libstorage_maildir.a/maildir-settings.o .libs/libstorage.lax/libstorage_maildir.a/maildir-storage.o .libs/libstorage.lax/libstorage_maildir.a/maildir-sync-index.o .libs/libstorage.lax/libstorage_maildir.a/maildir-sync.o .libs/libstorage.lax/libstorage_maildir.a/maildir-uidlist.o .libs/libstorage.lax/libstorage_maildir.a/maildir-util.o  .libs/libstorage.lax/libstorage_mbox.a/istream-raw-mbox.o .libs/libstorage.lax/libstorage_mbox.a/mbox-file.o .libs/libstorage.lax/libstorage_mbox.a/mbox-lock.o .libs/libstorage.lax/libstorage_mbox.a/mbox-mail.o .libs/libstorage.lax/libstorage_mbox.a/mbox-md5-all.o .libs/libstorage.lax/libstorage_mbox.a/mbox-md5-apop3d.o .libs/libstorage.lax/libstorage_mbox.a/mbox-save.o .libs/libstorage.lax/libstorage_mbox.a/mbox-settings.o .libs/libstorage.lax/libstorage_mbox.a/mbox-storage.o .libs/libstorage.lax/libstorage_mbox.a/mbox-sync-list-index.o .libs/libstorage.lax/libstorage_mbox.a/mbox-sync-parse.o .libs/libstorage.lax/libstorage_mbox.a/mbox-sync-rewrite.o .libs/libstorage.lax/libstorage_mbox.a/mbox-sync-update.o .libs/libstorage.lax/libstorage_mbox.a/mbox-sync.o  .libs/libstorage.lax/libstorage_imapc.a/imapc-list.o .libs/libstorage.lax/libstorage_imapc.a/imapc-mail-fetch.o .libs/libstorage.lax/libstorage_imapc.a/imapc-mail.o .libs/libstorage.lax/libstorage_imapc.a/imapc-mailbox.o .libs/libstorage.lax/libstorage_imapc.a/imapc-save.o .libs/libstorage.lax/libstorage_imapc.a/imapc-search.o .libs/libstorage.lax/libstorage_imapc.a/imapc-settings.o .libs/libstorage.lax/libstorage_imapc.a/imapc-storage.o .libs/libstorage.lax/libstorage_imapc.a/imapc-sync.o  .libs/libstorage.lax/libimap_client.a/imapc-client.o .libs/libstorage.lax/libimap_client.a/imapc-connection.o .libs/libstorage.lax/libimap_client.a/imapc-msgmap.o  .libs/libstorage.lax/libstorage_pop3c.a/pop3c-client.o .libs/libstorage.lax/libstorage_pop3c.a/pop3c-mail.o .libs/libstorage.lax/libstorage_pop3c.a/pop3c-settings.o .libs/libstorage.lax/libstorage_pop3c.a/pop3c-storage.o .libs/libstorage.lax/libstorage_pop3c.a/pop3c-sync.o  .libs/libstorage.lax/libstorage_raw.a/raw-mail.o .libs/libstorage.lax/libstorage_raw.a/raw-storage.o .libs/libstorage.lax/libstorage_raw.a/raw-sync.o  .libs/libstorage.lax/libstorage_list.a/mail-storage-list-index-rebuild.o .libs/libstorage.lax/libstorage_list.a/mailbox-list-delete.o .libs/libstorage.lax/libstorage_list.a/mailbox-list-fs-flags.o .libs/libstorage.lax/libstorage_list.a/mailbox-list-fs-iter.o .libs/libstorage.lax/libstorage_list.a/mailbox-list-fs.o .libs/libstorage.lax/libstorage_list.a/mailbox-list-index-backend.o .libs/libstorage.lax/libstorage_list.a/mailbox-list-index-iter.o .libs/libstorage.lax/libstorage_list.a/mailbox-list-index-notify.o .libs/libstorage.lax/libstorage_list.a/mailbox-list-index-status.o .libs/libstorage.lax/libstorage_list.a/mailbox-list-index-sync.o .libs/libstorage.lax/libstorage_list.a/mailbox-list-index.o .libs/libstorage.lax/libstorage_list.a/mailbox-list-iter.o .libs/libstorage.lax/libstorage_list.a/mailbox-list-maildir-iter.o .libs/libstorage.lax/libstorage_list.a/mailbox-list-maildir.o .libs/libstorage.lax/libstorage_list.a/mailbox-list-none.o .libs/libstorage.lax/libstorage_list.a/mailbox-list-notify-tree.o .libs/libstorage.lax/libstorage_list.a/mailbox-list-subscriptions.o .libs/libstorage.lax/libstorage_list.a/subscription-file.o  .libs/libstorage.lax/libstorage_index.a/index-attachment.o .libs/libstorage.lax/libstorage_index.a/index-attribute.o .libs/libstorage.lax/libstorage_index.a/index-mail-binary.o .libs/libstorage.lax/libstorage_index.a/index-mail-headers.o .libs/libstorage.lax/libstorage_index.a/index-mail.o .libs/libstorage.lax/libstorage_index.a/index-mailbox-size.o .libs/libstorage.lax/libstorage_index.a/index-pop3-uidl.o .libs/libstorage.lax/libstorage_index.a/index-rebuild.o .libs/libstorage.lax/libstorage_index.a/index-search-mime.o .libs/libstorage.lax/libstorage_index.a/index-search-result.o .libs/libstorage.lax/libstorage_index.a/index-search.o .libs/libstorage.lax/libstorage_index.a/index-sort-string.o .libs/libstorage.lax/libstorage_index.a/index-sort.o .libs/libstorage.lax/libstorage_index.a/index-status.o .libs/libstorage.lax/libstorage_index.a/index-storage.o .libs/libstorage.lax/libstorage_index.a/index-sync-changes.o .libs/libstorage.lax/libstorage_index.a/index-sync-pvt.o .libs/libstorage.lax/libstorage_index.a/index-sync-search.o .libs/libstorage.lax/libstorage_index.a/index-sync.o .libs/libstorage.lax/libstorage_index.a/index-thread-finish.o .libs/libstorage.lax/libstorage_index.a/index-thread-links.o .libs/libstorage.lax/libstorage_index.a/index-thread.o .libs/libstorage.lax/libstorage_index.a/index-transaction.o .libs/libstorage.lax/libstorage_index.a/istream-mail.o  .libs/libstorage.lax/libindex.a/mail-cache-decisions.o .libs/libstorage.lax/libindex.a/mail-cache-fields.o .libs/libstorage.lax/libindex.a/mail-cache-lookup.o .libs/libstorage.lax/libindex.a/mail-cache-purge.o .libs/libstorage.lax/libindex.a/mail-cache-sync-update.o .libs/libstorage.lax/libindex.a/mail-cache-transaction.o .libs/libstorage.lax/libindex.a/mail-cache.o .libs/libstorage.lax/libindex.a/mail-index-alloc-cache.o .libs/libstorage.lax/libindex.a/mail-index-dummy-view.o .libs/libstorage.lax/libindex.a/mail-index-fsck.o .libs/libstorage.lax/libindex.a/mail-index-lock.o .libs/libstorage.lax/libindex.a/mail-index-map-hdr.o .libs/libstorage.lax/libindex.a/mail-index-map-read.o .libs/libstorage.lax/libindex.a/mail-index-map.o .libs/libstorage.lax/libindex.a/mail-index-modseq.o .libs/libstorage.lax/libindex.a/mail-index-strmap.o .libs/libstorage.lax/libindex.a/mail-index-sync-ext.o .libs/libstorage.lax/libindex.a/mail-index-sync-keywords.o .libs/libstorage.lax/libindex.a/mail-index-sync-update.o .libs/libstorage.lax/libindex.a/mail-index-sync.o .libs/libstorage.lax/libindex.a/mail-index-transaction-export.o .libs/libstorage.lax/libindex.a/mail-index-transaction-finish.o .libs/libstorage.lax/libindex.a/mail-index-transaction-sort-appends.o .libs/libstorage.lax/libindex.a/mail-index-transaction-update.o .libs/libstorage.lax/libindex.a/mail-index-transaction-view.o .libs/libstorage.lax/libindex.a/mail-index-transaction.o .libs/libstorage.lax/libindex.a/mail-index-util.o .libs/libstorage.lax/libindex.a/mail-index-view-sync.o .libs/libstorage.lax/libindex.a/mail-index-view.o .libs/libstorage.lax/libindex.a/mail-index-write.o .libs/libstorage.lax/libindex.a/mail-index.o .libs/libstorage.lax/libindex.a/mail-transaction-log-append.o .libs/libstorage.lax/libindex.a/mail-transaction-log-file.o .libs/libstorage.lax/libindex.a/mail-transaction-log-modseq.o .libs/libstorage.lax/libindex.a/mail-transaction-log-view.o .libs/libstorage.lax/libindex.a/mail-transaction-log.o .libs/libstorage.lax/libindex.a/mailbox-log.o  .libs/libstorage.lax/libimap-storage.a/imap-metadata.o .libs/libstorage.lax/libimap-storage.a/imap-msgpart-url.o .libs/libstorage.lax/libimap-storage.a/imap-msgpart.o 
libtool: link: ranlib .libs/libstorage.a
libtool: link: rm -fr .libs/libstorage.lax
libtool: link: ( cd ".libs" && rm -f "libstorage.la" && ln -s "../libstorage.la" "libstorage.la" )
--- libdovecot-storage.la ---
--- test-mail ---
--- test-mail-search-args-imap ---
--- test-mail-search-args-simplify ---
--- libdovecot-storage.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 -mfunction-return=keep -Wall -W -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 libdovecot-storage.la -rpath /usr/local/lib/dovecot  libstorage.la  ../lib-dovecot/libdovecot.la   
--- test-mail ---
/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 -mfunction-return=keep -Wall -W -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 test-mail.o libstorage.la ../../src/lib-dovecot/libdovecot.la -export-dynamic 
--- test-mail-search-args-imap ---
/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 -mfunction-return=keep -Wall -W -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-search-args-imap test-mail-search-args-imap.o libstorage.la ../../src/lib-dovecot/libdovecot.la -export-dynamic 
--- test-mail-search-args-simplify ---
/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 -mfunction-return=keep -Wall -W -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-search-args-simplify test-mail-search-args-simplify.o libstorage.la ../../src/lib-dovecot/libdovecot.la -export-dynamic 
--- libdovecot-storage.la ---
libtool: link: cc -shared  -fPIC -DPIC  -Wl,--whole-archive ./.libs/libstorage.a -Wl,--no-whole-archive  -Wl,-rpath -Wl,/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-dovecot/.libs -Wl,-rpath -Wl,/usr/local/lib/dovecot -L/usr/local/lib ../lib-dovecot/.libs/libdovecot.so  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,libdovecot-storage.so.0 -o .libs/libdovecot-storage.so.0.0.0
--- test-mail ---
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 -mfunction-return=keep -Wall -W -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-mail test-mail.o -Wl,--export-dynamic  -L/usr/local/lib ./.libs/libstorage.a ../../src/lib-dovecot/.libs/libdovecot.so -Wl,-rpath -Wl,/usr/local/lib/dovecot
--- test-mail-search-args-simplify ---
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 -mfunction-return=keep -Wall -W -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-mail-search-args-simplify test-mail-search-args-simplify.o -Wl,--export-dynamic  -L/usr/local/lib ./.libs/libstorage.a ../../src/lib-dovecot/.libs/libdovecot.so -Wl,-rpath -Wl,/usr/local/lib/dovecot
--- test-mail-search-args-imap ---
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 -mfunction-return=keep -Wall -W -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-mail-search-args-imap test-mail-search-args-imap.o -Wl,--export-dynamic  -L/usr/local/lib ./.libs/libstorage.a ../../src/lib-dovecot/.libs/libdovecot.so -Wl,-rpath -Wl,/usr/local/lib/dovecot
--- libdovecot-storage.la ---
libtool: link: (cd ".libs" && rm -f "libdovecot-storage.so.0" && ln -s "libdovecot-storage.so.0.0.0" "libdovecot-storage.so.0")
libtool: link: (cd ".libs" && rm -f "libdovecot-storage.so" && ln -s "libdovecot-storage.so.0.0.0" "libdovecot-storage.so")
--- test-mail-storage ---
/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 -mfunction-return=keep -Wall -W -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-storage test-mail-storage.o libstorage.la ../../src/lib-dovecot/libdovecot.la -export-dynamic 
--- test-mailbox-get ---
--- test-mailbox-list ---
--- test-mailbox-get ---
/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 -mfunction-return=keep -Wall -W -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-mailbox-get test-mailbox-get.o mailbox-get.lo ../../src/lib-test/libtest.la  ../../src/lib/liblib.la 
--- test-mailbox-list ---
/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 -mfunction-return=keep -Wall -W -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-mailbox-list test-mailbox-list.o libstorage.la ../../src/lib-dovecot/libdovecot.la -export-dynamic 
--- libdovecot-storage.la ---
libtool: link: (cd .libs/libdovecot-storage.lax/libstorage.a && ar x "/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-storage/./.libs/libstorage.a")
--- test-mail-storage ---
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 -mfunction-return=keep -Wall -W -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-mail-storage test-mail-storage.o -Wl,--export-dynamic  -L/usr/local/lib ./.libs/libstorage.a ../../src/lib-dovecot/.libs/libdovecot.so -Wl,-rpath -Wl,/usr/local/lib/dovecot
--- test-mailbox-list ---
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 -mfunction-return=keep -Wall -W -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-mailbox-list test-mailbox-list.o -Wl,--export-dynamic  -L/usr/local/lib ./.libs/libstorage.a ../../src/lib-dovecot/.libs/libdovecot.so -Wl,-rpath -Wl,/usr/local/lib/dovecot
--- test-mailbox-get ---
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 -mfunction-return=keep -Wall -W -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-mailbox-get test-mailbox-get.o .libs/mailbox-get.o  -L/usr/local/lib ../../src/lib-test/.libs/libtest.a ../../src/lib/.libs/liblib.a 
--- libdovecot-storage.la ---
libtool: link: ar cr .libs/libdovecot-storage.a   .libs/libdovecot-storage.lax/libstorage.a/dbox-attachment.o .libs/libdovecot-storage.lax/libstorage.a/dbox-file-fix.o .libs/libdovecot-storage.lax/libstorage.a/dbox-file.o .libs/libdovecot-storage.lax/libstorage.a/dbox-mail.o .libs/libdovecot-storage.lax/libstorage.a/dbox-save.o .libs/libdovecot-storage.lax/libstorage.a/dbox-storage.o .libs/libdovecot-storage.lax/libstorage.a/fail-mail-storage.o .libs/libdovecot-storage.lax/libstorage.a/fail-mail.o .libs/libdovecot-storage.lax/libstorage.a/fail-mailbox.o .libs/libdovecot-storage.lax/libstorage.a/imap-metadata.o .libs/libdovecot-storage.lax/libstorage.a/imap-msgpart-url.o .libs/libdovecot-storage.lax/libstorage.a/imap-msgpart.o .libs/libdovecot-storage.lax/libstorage.a/imapc-client.o .libs/libdovecot-storage.lax/libstorage.a/imapc-connection.o .libs/libdovecot-storage.lax/libstorage.a/imapc-list.o .libs/libdovecot-storage.lax/libstorage.a/imapc-mail-fetch.o .libs/libdovecot-storage.lax/libstorage.a/imapc-mail.o .libs/libdovecot-storage.lax/libstorage.a/imapc-mailbox.o .libs/libdovecot-storage.lax/libstorage.a/imapc-msgmap.o .libs/libdovecot-storage.lax/libstorage.a/imapc-save.o .libs/libdovecot-storage.lax/libstorage.a/imapc-search.o .libs/libdovecot-storage.lax/libstorage.a/imapc-settings.o .libs/libdovecot-storage.lax/libstorage.a/imapc-storage.o .libs/libdovecot-storage.lax/libstorage.a/imapc-sync.o .libs/libdovecot-storage.lax/libstorage.a/index-attachment.o .libs/libdovecot-storage.lax/libstorage.a/index-attribute.o .libs/libdovecot-storage.lax/libstorage.a/index-mail-binary.o .libs/libdovecot-storage.lax/libstorage.a/index-mail-headers.o .libs/libdovecot-storage.lax/libstorage.a/index-mail.o .libs/libdovecot-storage.lax/libstorage.a/index-mailbox-size.o .libs/libdovecot-storage.lax/libstorage.a/index-pop3-uidl.o .libs/libdovecot-storage.lax/libstorage.a/index-rebuild.o .libs/libdovecot-storage.lax/libstorage.a/index-search-mime.o .libs/libdovecot-storage.lax/libstorage.a/index-search-result.o .libs/libdovecot-storage.lax/libstorage.a/index-search.o .libs/libdovecot-storage.lax/libstorage.a/index-sort-string.o .libs/libdovecot-storage.lax/libstorage.a/index-sort.o .libs/libdovecot-storage.lax/libstorage.a/index-status.o .libs/libdovecot-storage.lax/libstorage.a/index-storage.o .libs/libdovecot-storage.lax/libstorage.a/index-sync-changes.o .libs/libdovecot-storage.lax/libstorage.a/index-sync-pvt.o .libs/libdovecot-storage.lax/libstorage.a/index-sync-search.o .libs/libdovecot-storage.lax/libstorage.a/index-sync.o .libs/libdovecot-storage.lax/libstorage.a/index-thread-finish.o .libs/libdovecot-storage.lax/libstorage.a/index-thread-links.o .libs/libdovecot-storage.lax/libstorage.a/index-thread.o .libs/libdovecot-storage.lax/libstorage.a/index-transaction.o .libs/libdovecot-storage.lax/libstorage.a/istream-mail.o .libs/libdovecot-storage.lax/libstorage.a/istream-raw-mbox.o .libs/libdovecot-storage.lax/libstorage.a/mail-autoexpunge.o .libs/libdovecot-storage.lax/libstorage.a/mail-cache-decisions.o .libs/libdovecot-storage.lax/libstorage.a/mail-cache-fields.o .libs/libdovecot-storage.lax/libstorage.a/mail-cache-lookup.o .libs/libdovecot-storage.lax/libstorage.a/mail-cache-purge.o .libs/libdovecot-storage.lax/libstorage.a/mail-cache-sync-update.o .libs/libdovecot-storage.lax/libstorage.a/mail-cache-transaction.o .libs/libdovecot-storage.lax/libstorage.a/mail-cache.o .libs/libdovecot-storage.lax/libstorage.a/mail-copy.o .libs/libdovecot-storage.lax/libstorage.a/mail-duplicate.o .libs/libdovecot-storage.lax/libstorage.a/mail-error.o .libs/libdovecot-storage.lax/libstorage.a/mail-index-alloc-cache.o .libs/libdovecot-storage.lax/libstorage.a/mail-index-dummy-view.o .libs/libdovecot-storage.lax/libstorage.a/mail-index-fsck.o .libs/libdovecot-storage.lax/libstorage.a/mail-index-lock.o .libs/libdovecot-storage.lax/libstorage.a/mail-index-map-hdr.o .libs/libdovecot-storage.lax/libstorage.a/mail-index-map-read.o .libs/libdovecot-storage.lax/libstorage.a/mail-index-map.o .libs/libdovecot-storage.lax/libstorage.a/mail-index-modseq.o .libs/libdovecot-storage.lax/libstorage.a/mail-index-strmap.o .libs/libdovecot-storage.lax/libstorage.a/mail-index-sync-ext.o .libs/libdovecot-storage.lax/libstorage.a/mail-index-sync-keywords.o .libs/libdovecot-storage.lax/libstorage.a/mail-index-sync-update.o .libs/libdovecot-storage.lax/libstorage.a/mail-index-sync.o .libs/libdovecot-storage.lax/libstorage.a/mail-index-transaction-export.o .libs/libdovecot-storage.lax/libstorage.a/mail-index-transaction-finish.o .libs/libdovecot-storage.lax/libstorage.a/mail-index-transaction-sort-appends.o .libs/libdovecot-storage.lax/libstorage.a/mail-index-transaction-update.o .libs/libdovecot-storage.lax/libstorage.a/mail-index-transaction-view.o .libs/libdovecot-storage.lax/libstorage.a/mail-index-transaction.o .libs/libdovecot-storage.lax/libstorage.a/mail-index-util.o .libs/libdovecot-storage.lax/libstorage.a/mail-index-view-sync.o .libs/libdovecot-storage.lax/libstorage.a/mail-index-view.o .libs/libdovecot-storage.lax/libstorage.a/mail-index-write.o .libs/libdovecot-storage.lax/libstorage.a/mail-index.o .libs/libdovecot-storage.lax/libstorage.a/mail-namespace.o .libs/libdovecot-storage.lax/libstorage.a/mail-search-args-cmdline.o .libs/libdovecot-storage.lax/libstorage.a/mail-search-args-imap.o .libs/libdovecot-storage.lax/libstorage.a/mail-search-args-simplify.o .libs/libdovecot-storage.lax/libstorage.a/mail-search-build.o .libs/libdovecot-storage.lax/libstorage.a/mail-search-mime-build.o .libs/libdovecot-storage.lax/libstorage.a/mail-search-mime-register.o .libs/libdovecot-storage.lax/libstorage.a/mail-search-mime.o .libs/libdovecot-storage.lax/libstorage.a/mail-search-parser-cmdline.o .libs/libdovecot-storage.lax/libstorage.a/mail-search-parser-imap.o .libs/libdovecot-storage.lax/libstorage.a/mail-search-parser.o .libs/libdovecot-storage.lax/libstorage.a/mail-search-register-human.o .libs/libdovecot-storage.lax/libstorage.a/mail-search-register-imap.o .libs/libdovecot-storage.lax/libstorage.a/mail-search-register.o .libs/libdovecot-storage.lax/libstorage.a/mail-search.o .libs/libdovecot-storage.lax/libstorage.a/mail-storage-hooks.o .libs/libdovecot-storage.lax/libstorage.a/mail-storage-list-index-rebuild.o .libs/libdovecot-storage.lax/libstorage.a/mail-storage-register.o .libs/libdovecot-storage.lax/libstorage.a/mail-storage-service.o .libs/libdovecot-storage.lax/libstorage.a/mail-storage-settings.o .libs/libdovecot-storage.lax/libstorage.a/mail-storage.o .libs/libdovecot-storage.lax/libstorage.a/mail-thread.o .libs/libdovecot-storage.lax/libstorage.a/mail-transaction-log-append.o .libs/libdovecot-storage.lax/libstorage.a/mail-transaction-log-file.o .libs/libdovecot-storage.lax/libstorage.a/mail-transaction-log-modseq.o .libs/libdovecot-storage.lax/libstorage.a/mail-transaction-log-view.o .libs/libdovecot-storage.lax/libstorage.a/mail-transaction-log.o .libs/libdovecot-storage.lax/libstorage.a/mail-user.o .libs/libdovecot-storage.lax/libstorage.a/mail.o .libs/libdovecot-storage.lax/libstorage.a/mailbox-attribute-internal.o .libs/libdovecot-storage.lax/libstorage.a/mailbox-attribute.o .libs/libdovecot-storage.lax/libstorage.a/mailbox-get.o .libs/libdovecot-storage.lax/libstorage.a/mailbox-guid-cache.o .libs/libdovecot-storage.lax/libstorage.a/mailbox-header.o .libs/libdovecot-storage.lax/libstorage.a/mailbox-keywords.o .libs/libdovecot-storage.lax/libstorage.a/mailbox-list-delete.o .libs/libdovecot-storage.lax/libstorage.a/mailbox-list-fs-flags.o .libs/libdovecot-storage.lax/libstorage.a/mailbox-list-fs-iter.o .libs/libdovecot-storage.lax/libstorage.a/mailbox-list-fs.o .libs/libdovecot-storage.lax/libstorage.a/mailbox-list-index-backend.o .libs/libdovecot-storage.lax/libstorage.a/mailbox-list-index-iter.o .libs/libdovecot-storage.lax/libstorage.a/mailbox-list-index-notify.o .libs/libdovecot-storage.lax/libstorage.a/mailbox-list-index-status.o .libs/libdovecot-storage.lax/libstorage.a/mailbox-list-index-sync.o .libs/libdovecot-storage.lax/libstorage.a/mailbox-list-index.o .libs/libdovecot-storage.lax/libstorage.a/mailbox-list-iter.o .libs/libdovecot-storage.lax/libstorage.a/mailbox-list-maildir-iter.o .libs/libdovecot-storage.lax/libstorage.a/mailbox-list-maildir.o .libs/libdovecot-storage.lax/libstorage.a/mailbox-list-none.o .libs/libdovecot-storage.lax/libstorage.a/mailbox-list-notify-tree.o .libs/libdovecot-storage.lax/libstorage.a/mailbox-list-notify.o .libs/libdovecot-storage.lax/libstorage.a/mailbox-list-register.o .libs/libdovecot-storage.lax/libstorage.a/mailbox-list-subscriptions.o .libs/libdovecot-storage.lax/libstorage.a/mailbox-list.o .libs/libdovecot-storage.lax/libstorage.a/mailbox-log.o .libs/libdovecot-storage.lax/libstorage.a/mailbox-match-plugin.o .libs/libdovecot-storage.lax/libstorage.a/mailbox-recent-flags.o .libs/libdovecot-storage.lax/libstorage.a/mailbox-search-result.o .libs/libdovecot-storage.lax/libstorage.a/mailbox-tree.o .libs/libdovecot-storage.lax/libstorage.a/mailbox-uidvalidity.o .libs/libdovecot-storage.lax/libstorage.a/mailbox-watch.o .libs/libdovecot-storage.lax/libstorage.a/maildir-copy.o .libs/libdovecot-storage.lax/libstorage.a/maildir-filename-flags.o .libs/libdovecot-storage.lax/libstorage.a/maildir-filename.o .libs/libdovecot-storage.lax/libstorage.a/maildir-keywords.o .libs/libdovecot-storage.lax/libstorage.a/maildir-mail.o .libs/libdovecot-storage.lax/libstorage.a/maildir-save.o .libs/libdovecot-storage.lax/libstorage.a/maildir-settings.o .libs/libdovecot-storage.lax/libstorage.a/maildir-storage.o .libs/libdovecot-storage.lax/libstorage.a/maildir-sync-index.o .libs/libdovecot-storage.lax/libstorage.a/maildir-sync.o .libs/libdovecot-storage.lax/libstorage.a/maildir-uidlist.o .libs/libdovecot-storage.lax/libstorage.a/maildir-util.o .libs/libdovecot-storage.lax/libstorage.a/mbox-file.o .libs/libdovecot-storage.lax/libstorage.a/mbox-lock.o .libs/libdovecot-storage.lax/libstorage.a/mbox-mail.o .libs/libdovecot-storage.lax/libstorage.a/mbox-md5-all.o .libs/libdovecot-storage.lax/libstorage.a/mbox-md5-apop3d.o .libs/libdovecot-storage.lax/libstorage.a/mbox-save.o .libs/libdovecot-storage.lax/libstorage.a/mbox-settings.o .libs/libdovecot-storage.lax/libstorage.a/mbox-storage.o .libs/libdovecot-storage.lax/libstorage.a/mbox-sync-list-index.o .libs/libdovecot-storage.lax/libstorage.a/mbox-sync-parse.o .libs/libdovecot-storage.lax/libstorage.a/mbox-sync-rewrite.o .libs/libdovecot-storage.lax/libstorage.a/mbox-sync-update.o .libs/libdovecot-storage.lax/libstorage.a/mbox-sync.o .libs/libdovecot-storage.lax/libstorage.a/mdbox-deleted-storage.o .libs/libdovecot-storage.lax/libstorage.a/mdbox-file.o .libs/libdovecot-storage.lax/libstorage.a/mdbox-mail.o .libs/libdovecot-storage.lax/libstorage.a/mdbox-map.o .libs/libdovecot-storage.lax/libstorage.a/mdbox-purge.o .libs/libdovecot-storage.lax/libstorage.a/mdbox-save.o .libs/libdovecot-storage.lax/libstorage.a/mdbox-settings.o .libs/libdovecot-storage.lax/libstorage.a/mdbox-storage-rebuild.o .libs/libdovecot-storage.lax/libstorage.a/mdbox-storage.o .libs/libdovecot-storage.lax/libstorage.a/mdbox-sync.o .libs/libdovecot-storage.lax/libstorage.a/pop3c-client.o .libs/libdovecot-storage.lax/libstorage.a/pop3c-mail.o .libs/libdovecot-storage.lax/libstorage.a/pop3c-settings.o .libs/libdovecot-storage.lax/libstorage.a/pop3c-storage.o .libs/libdovecot-storage.lax/libstorage.a/pop3c-sync.o .libs/libdovecot-storage.lax/libstorage.a/raw-mail.o .libs/libdovecot-storage.lax/libstorage.a/raw-storage.o .libs/libdovecot-storage.lax/libstorage.a/raw-sync.o .libs/libdovecot-storage.lax/libstorage.a/sdbox-copy.o .libs/libdovecot-storage.lax/libstorage.a/sdbox-file.o .libs/libdovecot-storage.lax/libstorage.a/sdbox-mail.o .libs/libdovecot-storage.lax/libstorage.a/sdbox-save.o .libs/libdovecot-storage.lax/libstorage.a/sdbox-storage.o .libs/libdovecot-storage.lax/libstorage.a/sdbox-sync-rebuild.o .libs/libdovecot-storage.lax/libstorage.a/sdbox-sync.o .libs/libdovecot-storage.lax/libstorage.a/shared-list.o .libs/libdovecot-storage.lax/libstorage.a/shared-storage.o .libs/libdovecot-storage.lax/libstorage.a/subscription-file.o .libs/libdovecot-storage.lax/libstorage.a/test-mail-storage-common.o 
libtool: link: ranlib .libs/libdovecot-storage.a
libtool: link: rm -fr .libs/libdovecot-storage.lax
libtool: link: ( cd ".libs" && rm -f "libdovecot-storage.la" && ln -s "../libdovecot-storage.la" "libdovecot-storage.la" )
Making all in lib-sql
--- sql-api.lo ---
--- sql-db-cache.lo ---
--- driver-mysql.lo ---
--- driver-pgsql.lo ---
--- sql-api.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I/usr/local/include/mysql -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT sql-api.lo -MD -MP -MF .deps/sql-api.Tpo -c -o sql-api.lo sql-api.c
--- sql-db-cache.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I/usr/local/include/mysql -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT sql-db-cache.lo -MD -MP -MF .deps/sql-db-cache.Tpo -c -o sql-db-cache.lo sql-db-cache.c
--- driver-mysql.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I/usr/local/include/mysql -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT driver-mysql.lo -MD -MP -MF .deps/driver-mysql.Tpo -c -o driver-mysql.lo driver-mysql.c
--- driver-pgsql.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I/usr/local/include/mysql -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT driver-pgsql.lo -MD -MP -MF .deps/driver-pgsql.Tpo -c -o driver-pgsql.lo driver-pgsql.c
--- sql-db-cache.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I/usr/local/include/mysql -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT sql-db-cache.lo -MD -MP -MF .deps/sql-db-cache.Tpo -c sql-db-cache.c  -fPIC -DPIC -o .libs/sql-db-cache.o
--- sql-api.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I/usr/local/include/mysql -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT sql-api.lo -MD -MP -MF .deps/sql-api.Tpo -c sql-api.c  -fPIC -DPIC -o .libs/sql-api.o
--- driver-mysql.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I/usr/local/include/mysql -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT driver-mysql.lo -MD -MP -MF .deps/driver-mysql.Tpo -c driver-mysql.c  -fPIC -DPIC -o .libs/driver-mysql.o
--- driver-pgsql.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I/usr/local/include/mysql -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT driver-pgsql.lo -MD -MP -MF .deps/driver-pgsql.Tpo -c driver-pgsql.c  -fPIC -DPIC -o .libs/driver-pgsql.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I/usr/local/include/mysql -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT driver-pgsql.lo -MD -MP -MF .deps/driver-pgsql.Tpo -c driver-pgsql.c -o driver-pgsql.o >/dev/null 2>&1
mv -f .deps/driver-pgsql.Tpo .deps/driver-pgsql.Plo
--- driver-sqlite.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I/usr/local/include/mysql -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT driver-sqlite.lo -MD -MP -MF .deps/driver-sqlite.Tpo -c -o driver-sqlite.lo driver-sqlite.c
--- sql-db-cache.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I/usr/local/include/mysql -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT sql-db-cache.lo -MD -MP -MF .deps/sql-db-cache.Tpo -c sql-db-cache.c -o sql-db-cache.o >/dev/null 2>&1
--- driver-sqlite.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I/usr/local/include/mysql -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT driver-sqlite.lo -MD -MP -MF .deps/driver-sqlite.Tpo -c driver-sqlite.c  -fPIC -DPIC -o .libs/driver-sqlite.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I/usr/local/include/mysql -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT driver-sqlite.lo -MD -MP -MF .deps/driver-sqlite.Tpo -c driver-sqlite.c -o driver-sqlite.o >/dev/null 2>&1
--- sql-db-cache.lo ---
mv -f .deps/sql-db-cache.Tpo .deps/sql-db-cache.Plo
--- driver-cassandra.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I/usr/local/include/mysql -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT driver-cassandra.lo -MD -MP -MF .deps/driver-cassandra.Tpo -c -o driver-cassandra.lo driver-cassandra.c
--- driver-sqlite.lo ---
mv -f .deps/driver-sqlite.Tpo .deps/driver-sqlite.Plo
--- driver-mysql.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I/usr/local/include/mysql -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT driver-mysql.lo -MD -MP -MF .deps/driver-mysql.Tpo -c driver-mysql.c -o driver-mysql.o >/dev/null 2>&1
--- driver-sqlpool.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I/usr/local/include/mysql -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT driver-sqlpool.lo -MD -MP -MF .deps/driver-sqlpool.Tpo -c -o driver-sqlpool.lo driver-sqlpool.c
--- driver-cassandra.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I/usr/local/include/mysql -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT driver-cassandra.lo -MD -MP -MF .deps/driver-cassandra.Tpo -c driver-cassandra.c  -fPIC -DPIC -o .libs/driver-cassandra.o
--- sql-api.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I/usr/local/include/mysql -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT sql-api.lo -MD -MP -MF .deps/sql-api.Tpo -c sql-api.c -o sql-api.o >/dev/null 2>&1
--- driver-sqlpool.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I/usr/local/include/mysql -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT driver-sqlpool.lo -MD -MP -MF .deps/driver-sqlpool.Tpo -c driver-sqlpool.c  -fPIC -DPIC -o .libs/driver-sqlpool.o
--- driver-cassandra.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I/usr/local/include/mysql -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT driver-cassandra.lo -MD -MP -MF .deps/driver-cassandra.Tpo -c driver-cassandra.c -o driver-cassandra.o >/dev/null 2>&1
mv -f .deps/driver-cassandra.Tpo .deps/driver-cassandra.Plo
--- libdriver_test_la-driver-test.lo ---
/bin/sh ../../libtool  --tag=CC   --mode=compile cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I/usr/local/include/mysql  -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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT libdriver_test_la-driver-test.lo -MD -MP -MF .deps/libdriver_test_la-driver-test.Tpo -c -o libdriver_test_la-driver-test.lo `test -f 'driver-test.c' || echo './'`driver-test.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I/usr/local/include/mysql -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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT libdriver_test_la-driver-test.lo -MD -MP -MF .deps/libdriver_test_la-driver-test.Tpo -c driver-test.c  -fPIC -DPIC -o .libs/libdriver_test_la-driver-test.o
--- driver-mysql.lo ---
mv -f .deps/driver-mysql.Tpo .deps/driver-mysql.Plo
--- sql-drivers-register.c ---
rm -f sql-drivers-register.c
echo '/* this file automatically generated by Makefile */' >sql-drivers-register.c
echo '#include "lib.h"' >>sql-drivers-register.c
echo '#include "sql-api.h"' >>sql-drivers-register.c
for i in mysql null; do  if [ "${i}" != "null" ]; then  echo "extern struct sql_db driver_${i}_db;" >>sql-drivers-register.c ;  fi;  done
echo 'void sql_drivers_register_all(void) {' >>sql-drivers-register.c
for i in mysql null; do  if [ "${i}" != "null" ]; then  echo "sql_driver_register(&driver_${i}_db);" >>sql-drivers-register.c ;  fi;  done
echo '}' >>sql-drivers-register.c
--- sql-drivers-register.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I/usr/local/include/mysql -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT sql-drivers-register.lo -MD -MP -MF .deps/sql-drivers-register.Tpo -c -o sql-drivers-register.lo sql-drivers-register.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I/usr/local/include/mysql -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT sql-drivers-register.lo -MD -MP -MF .deps/sql-drivers-register.Tpo -c sql-drivers-register.c  -fPIC -DPIC -o .libs/sql-drivers-register.o
--- sql-api.lo ---
mv -f .deps/sql-api.Tpo .deps/sql-api.Plo
--- sql-drivers-register.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I/usr/local/include/mysql -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT sql-drivers-register.lo -MD -MP -MF .deps/sql-drivers-register.Tpo -c sql-drivers-register.c -o sql-drivers-register.o >/dev/null 2>&1
--- libdriver_test_la-driver-test.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I/usr/local/include/mysql -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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT libdriver_test_la-driver-test.lo -MD -MP -MF .deps/libdriver_test_la-driver-test.Tpo -c driver-test.c -o libdriver_test_la-driver-test.o >/dev/null 2>&1
--- driver-sqlpool.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I/usr/local/include/mysql -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT driver-sqlpool.lo -MD -MP -MF .deps/driver-sqlpool.Tpo -c driver-sqlpool.c -o driver-sqlpool.o >/dev/null 2>&1
--- sql-drivers-register.lo ---
mv -f .deps/sql-drivers-register.Tpo .deps/sql-drivers-register.Plo
--- libdriver_test_la-driver-test.lo ---
mv -f .deps/libdriver_test_la-driver-test.Tpo .deps/libdriver_test_la-driver-test.Plo
--- libdriver_test.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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -avoid-version   -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong  -o libdriver_test.la  libdriver_test_la-driver-test.lo  
libtool: link: ar cr .libs/libdriver_test.a .libs/libdriver_test_la-driver-test.o 
libtool: link: ranlib .libs/libdriver_test.a
libtool: link: ( cd ".libs" && rm -f "libdriver_test.la" && ln -s "../libdriver_test.la" "libdriver_test.la" )
--- driver-sqlpool.lo ---
mv -f .deps/driver-sqlpool.Tpo .deps/driver-sqlpool.Plo
--- libsql.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 -mfunction-return=keep -Wall -W -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 libsql.la  sql-api.lo sql-db-cache.lo driver-mysql.lo driver-pgsql.lo  driver-sqlite.lo driver-cassandra.lo  driver-sqlpool.lo  sql-drivers-register.lo -L/usr/local/lib/mysql -lmysqlclient -lpthread -lssl -lcrypto -lm -lrt -lexecinfo  -L/usr/local/lib  -lunwind 
libtool: link: ar cr .libs/libsql.a .libs/sql-api.o .libs/sql-db-cache.o .libs/driver-mysql.o .libs/driver-pgsql.o .libs/driver-sqlite.o .libs/driver-cassandra.o .libs/driver-sqlpool.o .libs/sql-drivers-register.o 
libtool: link: ranlib .libs/libsql.a
libtool: link: ( cd ".libs" && rm -f "libsql.la" && ln -s "../libsql.la" "libsql.la" )
--- libdovecot-sql.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 -mfunction-return=keep -Wall -W -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   -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong  -o libdovecot-sql.la -rpath /usr/local/lib/dovecot  libsql.la ../lib-dovecot/libdovecot.la 
libtool: link: cc -shared  -fPIC -DPIC  -Wl,--whole-archive ./.libs/libsql.a -Wl,--no-whole-archive  -Wl,-rpath -Wl,/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-dovecot/.libs -Wl,-rpath -Wl,/usr/local/lib/dovecot -L/usr/local/lib -L/usr/local/lib/mysql -lmysqlclient -lpthread -lssl -lcrypto -lm -lrt -lexecinfo -lunwind ../lib-dovecot/.libs/libdovecot.so  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,libdovecot-sql.so.0 -o .libs/libdovecot-sql.so.0.0.0
libtool: link: (cd ".libs" && rm -f "libdovecot-sql.so.0" && ln -s "libdovecot-sql.so.0.0.0" "libdovecot-sql.so.0")
libtool: link: (cd ".libs" && rm -f "libdovecot-sql.so" && ln -s "libdovecot-sql.so.0.0.0" "libdovecot-sql.so")
libtool: link: (cd .libs/libdovecot-sql.lax/libsql.a && ar x "/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-sql/./.libs/libsql.a")
libtool: link: ar cr .libs/libdovecot-sql.a   .libs/libdovecot-sql.lax/libsql.a/driver-cassandra.o .libs/libdovecot-sql.lax/libsql.a/driver-mysql.o .libs/libdovecot-sql.lax/libsql.a/driver-pgsql.o .libs/libdovecot-sql.lax/libsql.a/driver-sqlite.o .libs/libdovecot-sql.lax/libsql.a/driver-sqlpool.o .libs/libdovecot-sql.lax/libsql.a/sql-api.o .libs/libdovecot-sql.lax/libsql.a/sql-db-cache.o .libs/libdovecot-sql.lax/libsql.a/sql-drivers-register.o 
libtool: link: ranlib .libs/libdovecot-sql.a
libtool: link: rm -fr .libs/libdovecot-sql.lax
libtool: link: ( cd ".libs" && rm -f "libdovecot-sql.la" && ln -s "../libdovecot-sql.la" "libdovecot-sql.la" )
Making all in lib-otp
--- otp-dictionary.lo ---
--- otp-hash.lo ---
--- otp-parity.lo ---
--- otp-parse.lo ---
--- otp-dictionary.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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT otp-dictionary.lo -MD -MP -MF .deps/otp-dictionary.Tpo -c -o otp-dictionary.lo otp-dictionary.c
--- otp-hash.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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT otp-hash.lo -MD -MP -MF .deps/otp-hash.Tpo -c -o otp-hash.lo otp-hash.c
--- otp-parity.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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT otp-parity.lo -MD -MP -MF .deps/otp-parity.Tpo -c -o otp-parity.lo otp-parity.c
--- otp-parse.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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT otp-parse.lo -MD -MP -MF .deps/otp-parse.Tpo -c -o otp-parse.lo otp-parse.c
--- otp-dictionary.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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT otp-dictionary.lo -MD -MP -MF .deps/otp-dictionary.Tpo -c otp-dictionary.c  -fPIC -DPIC -o .libs/otp-dictionary.o
--- otp-parity.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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT otp-parity.lo -MD -MP -MF .deps/otp-parity.Tpo -c otp-parity.c  -fPIC -DPIC -o .libs/otp-parity.o
--- otp-parse.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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT otp-parse.lo -MD -MP -MF .deps/otp-parse.Tpo -c otp-parse.c  -fPIC -DPIC -o .libs/otp-parse.o
--- otp-hash.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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT otp-hash.lo -MD -MP -MF .deps/otp-hash.Tpo -c otp-hash.c  -fPIC -DPIC -o .libs/otp-hash.o
--- otp-parity.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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT otp-parity.lo -MD -MP -MF .deps/otp-parity.Tpo -c otp-parity.c -o otp-parity.o >/dev/null 2>&1
--- otp-dictionary.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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT otp-dictionary.lo -MD -MP -MF .deps/otp-dictionary.Tpo -c otp-dictionary.c -o otp-dictionary.o >/dev/null 2>&1
--- otp-hash.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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT otp-hash.lo -MD -MP -MF .deps/otp-hash.Tpo -c otp-hash.c -o otp-hash.o >/dev/null 2>&1
--- otp-parity.lo ---
mv -f .deps/otp-parity.Tpo .deps/otp-parity.Plo
--- otp-parse.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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT otp-parse.lo -MD -MP -MF .deps/otp-parse.Tpo -c otp-parse.c -o otp-parse.o >/dev/null 2>&1
--- otp-dictionary.lo ---
mv -f .deps/otp-dictionary.Tpo .deps/otp-dictionary.Plo
--- otp-hash.lo ---
mv -f .deps/otp-hash.Tpo .deps/otp-hash.Plo
--- otp-parse.lo ---
mv -f .deps/otp-parse.Tpo .deps/otp-parse.Plo
--- libotp.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 -mfunction-return=keep -Wall -W -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 libotp.la  otp-dictionary.lo otp-hash.lo otp-parity.lo  otp-parse.lo  
libtool: link: ar cr .libs/libotp.a .libs/otp-dictionary.o .libs/otp-hash.o .libs/otp-parity.o .libs/otp-parse.o 
libtool: link: ranlib .libs/libotp.a
libtool: link: ( cd ".libs" && rm -f "libotp.la" && ln -s "../libotp.la" "libotp.la" )
Making all in lib-lda
--- lda-settings.lo ---
--- mail-deliver.lo ---
--- mail-send.lo ---
--- lda-settings.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-smtp  -I../../src/lib-index  -I../../src/lib-imap  -I../../src/lib-smtp  -I../../src/lib-mail  -I../../src/lib-storage  -I../../src/lib-ssl-iostream -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT lda-settings.lo -MD -MP -MF .deps/lda-settings.Tpo -c -o lda-settings.lo lda-settings.c
--- mail-deliver.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-smtp  -I../../src/lib-index  -I../../src/lib-imap  -I../../src/lib-smtp  -I../../src/lib-mail  -I../../src/lib-storage  -I../../src/lib-ssl-iostream -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-deliver.lo -MD -MP -MF .deps/mail-deliver.Tpo -c -o mail-deliver.lo mail-deliver.c
--- mail-send.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-smtp  -I../../src/lib-index  -I../../src/lib-imap  -I../../src/lib-smtp  -I../../src/lib-mail  -I../../src/lib-storage  -I../../src/lib-ssl-iostream -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-send.lo -MD -MP -MF .deps/mail-send.Tpo -c -o mail-send.lo mail-send.c
--- lda-settings.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I../../src/lib-smtp -I../../src/lib-index -I../../src/lib-imap -I../../src/lib-smtp -I../../src/lib-mail -I../../src/lib-storage -I../../src/lib-ssl-iostream -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT lda-settings.lo -MD -MP -MF .deps/lda-settings.Tpo -c lda-settings.c  -fPIC -DPIC -o .libs/lda-settings.o
--- mail-deliver.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I../../src/lib-smtp -I../../src/lib-index -I../../src/lib-imap -I../../src/lib-smtp -I../../src/lib-mail -I../../src/lib-storage -I../../src/lib-ssl-iostream -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-deliver.lo -MD -MP -MF .deps/mail-deliver.Tpo -c mail-deliver.c  -fPIC -DPIC -o .libs/mail-deliver.o
--- mail-send.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I../../src/lib-smtp -I../../src/lib-index -I../../src/lib-imap -I../../src/lib-smtp -I../../src/lib-mail -I../../src/lib-storage -I../../src/lib-ssl-iostream -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-send.lo -MD -MP -MF .deps/mail-send.Tpo -c mail-send.c  -fPIC -DPIC -o .libs/mail-send.o
--- lda-settings.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I../../src/lib-smtp -I../../src/lib-index -I../../src/lib-imap -I../../src/lib-smtp -I../../src/lib-mail -I../../src/lib-storage -I../../src/lib-ssl-iostream -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT lda-settings.lo -MD -MP -MF .deps/lda-settings.Tpo -c lda-settings.c -o lda-settings.o >/dev/null 2>&1
mv -f .deps/lda-settings.Tpo .deps/lda-settings.Plo
--- mail-send.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I../../src/lib-smtp -I../../src/lib-index -I../../src/lib-imap -I../../src/lib-smtp -I../../src/lib-mail -I../../src/lib-storage -I../../src/lib-ssl-iostream -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-send.lo -MD -MP -MF .deps/mail-send.Tpo -c mail-send.c -o mail-send.o >/dev/null 2>&1
mv -f .deps/mail-send.Tpo .deps/mail-send.Plo
--- mail-deliver.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I../../src/lib-smtp -I../../src/lib-index -I../../src/lib-imap -I../../src/lib-smtp -I../../src/lib-mail -I../../src/lib-storage -I../../src/lib-ssl-iostream -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-deliver.lo -MD -MP -MF .deps/mail-deliver.Tpo -c mail-deliver.c -o mail-deliver.o >/dev/null 2>&1
mv -f .deps/mail-deliver.Tpo .deps/mail-deliver.Plo
--- liblda.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 -mfunction-return=keep -Wall -W -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 liblda.la  lda-settings.lo mail-deliver.lo mail-send.lo  
libtool: link: ar cr .libs/liblda.a .libs/lda-settings.o .libs/mail-deliver.o .libs/mail-send.o 
libtool: link: ranlib .libs/liblda.a
libtool: link: ( cd ".libs" && rm -f "liblda.la" && ln -s "../liblda.la" "liblda.la" )
--- libdovecot-lda.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 -mfunction-return=keep -Wall -W -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 libdovecot-lda.la -rpath /usr/local/lib/dovecot  liblda.la ../lib-storage/libdovecot-storage.la ../lib-dovecot/libdovecot.la 
libtool: link: cc -shared  -fPIC -DPIC  -Wl,--whole-archive ./.libs/liblda.a -Wl,--no-whole-archive  -Wl,-rpath -Wl,/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-storage/.libs -Wl,-rpath -Wl,/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-dovecot/.libs -Wl,-rpath -Wl,/usr/local/lib/dovecot -L/usr/local/lib ../lib-storage/.libs/libdovecot-storage.so ../lib-dovecot/.libs/libdovecot.so  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,libdovecot-lda.so.0 -o .libs/libdovecot-lda.so.0.0.0
libtool: link: (cd ".libs" && rm -f "libdovecot-lda.so.0" && ln -s "libdovecot-lda.so.0.0.0" "libdovecot-lda.so.0")
libtool: link: (cd ".libs" && rm -f "libdovecot-lda.so" && ln -s "libdovecot-lda.so.0.0.0" "libdovecot-lda.so")
libtool: link: (cd .libs/libdovecot-lda.lax/liblda.a && ar x "/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-lda/./.libs/liblda.a")
libtool: link: ar cr .libs/libdovecot-lda.a   .libs/libdovecot-lda.lax/liblda.a/lda-settings.o .libs/libdovecot-lda.lax/liblda.a/mail-deliver.o .libs/libdovecot-lda.lax/liblda.a/mail-send.o 
libtool: link: ranlib .libs/libdovecot-lda.a
libtool: link: rm -fr .libs/libdovecot-lda.lax
libtool: link: ( cd ".libs" && rm -f "libdovecot-lda.la" && ln -s "../libdovecot-lda.la" "libdovecot-lda.la" )
Making all in lib-dict-backend
--- test_dict_sql-test-dict-sql.o ---
--- dict-cdb.lo ---
--- dict-sql.lo ---
--- dict-sql-settings.lo ---
--- test_dict_sql-test-dict-sql.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-ldap  -I../../src/lib-sql  -I../../src/lib-settings  -I/usr/local/include/mysql -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-ldap  -I../../src/lib-sql  -I../../src/lib-settings  -I/usr/local/include/mysql -DDICT_SRC_DIR=\"../../src/lib-dict-backend\" -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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_sql-test-dict-sql.o -MD -MP -MF .deps/test_dict_sql-test-dict-sql.Tpo -c -o test_dict_sql-test-dict-sql.o `test -f 'test-dict-sql.c' || echo './'`test-dict-sql.c
--- dict-cdb.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-ldap  -I../../src/lib-sql  -I../../src/lib-settings  -I/usr/local/include/mysql -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-cdb.lo -MD -MP -MF .deps/dict-cdb.Tpo -c -o dict-cdb.lo dict-cdb.c
--- dict-sql.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-ldap  -I../../src/lib-sql  -I../../src/lib-settings  -I/usr/local/include/mysql -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-sql.lo -MD -MP -MF .deps/dict-sql.Tpo -c -o dict-sql.lo dict-sql.c
--- dict-sql-settings.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-ldap  -I../../src/lib-sql  -I../../src/lib-settings  -I/usr/local/include/mysql -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-sql-settings.lo -MD -MP -MF .deps/dict-sql-settings.Tpo -c -o dict-sql-settings.lo dict-sql-settings.c
--- dict-sql.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-ldap -I../../src/lib-sql -I../../src/lib-settings -I/usr/local/include/mysql -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-sql.lo -MD -MP -MF .deps/dict-sql.Tpo -c dict-sql.c  -fPIC -DPIC -o .libs/dict-sql.o
--- dict-sql-settings.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-ldap -I../../src/lib-sql -I../../src/lib-settings -I/usr/local/include/mysql -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-sql-settings.lo -MD -MP -MF .deps/dict-sql-settings.Tpo -c dict-sql-settings.c  -fPIC -DPIC -o .libs/dict-sql-settings.o
--- dict-cdb.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-ldap -I../../src/lib-sql -I../../src/lib-settings -I/usr/local/include/mysql -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-cdb.lo -MD -MP -MF .deps/dict-cdb.Tpo -c dict-cdb.c  -fPIC -DPIC -o .libs/dict-cdb.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-ldap -I../../src/lib-sql -I../../src/lib-settings -I/usr/local/include/mysql -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-cdb.lo -MD -MP -MF .deps/dict-cdb.Tpo -c dict-cdb.c -o dict-cdb.o >/dev/null 2>&1
--- test_dict_sql-test-dict-sql.o ---
mv -f .deps/test_dict_sql-test-dict-sql.Tpo .deps/test_dict_sql-test-dict-sql.Po
--- dict-ldap.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-ldap  -I../../src/lib-sql  -I../../src/lib-settings  -I/usr/local/include/mysql -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-ldap.lo -MD -MP -MF .deps/dict-ldap.Tpo -c -o dict-ldap.lo dict-ldap.c
--- dict-cdb.lo ---
mv -f .deps/dict-cdb.Tpo .deps/dict-cdb.Plo
--- dict-ldap-settings.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-ldap  -I../../src/lib-sql  -I../../src/lib-settings  -I/usr/local/include/mysql -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-ldap-settings.lo -MD -MP -MF .deps/dict-ldap-settings.Tpo -c -o dict-ldap-settings.lo dict-ldap-settings.c
--- dict-ldap.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-ldap -I../../src/lib-sql -I../../src/lib-settings -I/usr/local/include/mysql -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-ldap.lo -MD -MP -MF .deps/dict-ldap.Tpo -c dict-ldap.c  -fPIC -DPIC -o .libs/dict-ldap.o
--- dict-ldap-settings.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-ldap -I../../src/lib-sql -I../../src/lib-settings -I/usr/local/include/mysql -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-ldap-settings.lo -MD -MP -MF .deps/dict-ldap-settings.Tpo -c dict-ldap-settings.c  -fPIC -DPIC -o .libs/dict-ldap-settings.o
--- dict-sql-settings.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-ldap -I../../src/lib-sql -I../../src/lib-settings -I/usr/local/include/mysql -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-sql-settings.lo -MD -MP -MF .deps/dict-sql-settings.Tpo -c dict-sql-settings.c -o dict-sql-settings.o >/dev/null 2>&1
--- dict-ldap-settings.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-ldap -I../../src/lib-sql -I../../src/lib-settings -I/usr/local/include/mysql -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-ldap-settings.lo -MD -MP -MF .deps/dict-ldap-settings.Tpo -c dict-ldap-settings.c -o dict-ldap-settings.o >/dev/null 2>&1
--- dict-ldap.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-ldap -I../../src/lib-sql -I../../src/lib-settings -I/usr/local/include/mysql -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-ldap.lo -MD -MP -MF .deps/dict-ldap.Tpo -c dict-ldap.c -o dict-ldap.o >/dev/null 2>&1
--- dict-sql-settings.lo ---
mv -f .deps/dict-sql-settings.Tpo .deps/dict-sql-settings.Plo
--- dict-drivers-register.c ---
rm -f dict-drivers-register.c
echo '/* this file automatically generated by Makefile */' >dict-drivers-register.c
echo '#include "lib.h"' >>dict-drivers-register.c
echo '#include "dict.h"' >>dict-drivers-register.c
echo '#include "ldap-client.h"' >>dict-drivers-register.c
echo '#include "dict-sql.h"' >>dict-drivers-register.c
for i in ldap null; do  if [ "${i}" != "null" ]; then  echo "extern struct dict dict_driver_${i};" >>dict-drivers-register.c ;  fi;  done
echo 'void dict_drivers_register_all(void) {' >>dict-drivers-register.c
echo 'dict_drivers_register_builtin();' >>dict-drivers-register.c
echo 'dict_sql_register();' >>dict-drivers-register.c
for i in ldap null; do  if [ "${i}" != "null" ]; then  echo "dict_driver_register(&dict_driver_${i});" >>dict-drivers-register.c ;  fi;  done
echo '}' >>dict-drivers-register.c
echo 'void dict_drivers_unregister_all(void) {' >>dict-drivers-register.c
echo '#ifdef BUILTIN_LDAP' >>dict-drivers-register.c
echo 'ldap_clients_cleanup();' >>dict-drivers-register.c
echo '#endif' >>dict-drivers-register.c
echo 'dict_drivers_unregister_builtin();' >>dict-drivers-register.c
echo 'dict_sql_unregister();' >>dict-drivers-register.c
for i in ldap null; do  if [ "${i}" != "null" ]; then  echo "dict_driver_unregister(&dict_driver_${i});" >>dict-drivers-register.c ;  fi;  done
echo '}' >>dict-drivers-register.c
--- dict-drivers-register.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-ldap  -I../../src/lib-sql  -I../../src/lib-settings  -I/usr/local/include/mysql -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-drivers-register.lo -MD -MP -MF .deps/dict-drivers-register.Tpo -c -o dict-drivers-register.lo dict-drivers-register.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-ldap -I../../src/lib-sql -I../../src/lib-settings -I/usr/local/include/mysql -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-drivers-register.lo -MD -MP -MF .deps/dict-drivers-register.Tpo -c dict-drivers-register.c  -fPIC -DPIC -o .libs/dict-drivers-register.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-ldap -I../../src/lib-sql -I../../src/lib-settings -I/usr/local/include/mysql -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-drivers-register.lo -MD -MP -MF .deps/dict-drivers-register.Tpo -c dict-drivers-register.c -o dict-drivers-register.o >/dev/null 2>&1
--- dict-ldap-settings.lo ---
mv -f .deps/dict-ldap-settings.Tpo .deps/dict-ldap-settings.Plo
--- dict-drivers-register.lo ---
mv -f .deps/dict-drivers-register.Tpo .deps/dict-drivers-register.Plo
--- dict-ldap.lo ---
mv -f .deps/dict-ldap.Tpo .deps/dict-ldap.Plo
--- dict-sql.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-ldap -I../../src/lib-sql -I../../src/lib-settings -I/usr/local/include/mysql -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-sql.lo -MD -MP -MF .deps/dict-sql.Tpo -c dict-sql.c -o dict-sql.o >/dev/null 2>&1
mv -f .deps/dict-sql.Tpo .deps/dict-sql.Plo
--- libdict_backend.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 -mfunction-return=keep -Wall -W -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 libdict_backend.la  dict-cdb.lo dict-sql.lo  dict-sql-settings.lo dict-ldap.lo dict-ldap-settings.lo  dict-drivers-register.lo ../../src/lib-ldap/libdovecot-ldap.la 
libtool: link: ar cr .libs/libdict_backend.a .libs/dict-cdb.o .libs/dict-sql.o .libs/dict-sql-settings.o .libs/dict-ldap.o .libs/dict-ldap-settings.o .libs/dict-drivers-register.o 
libtool: link: ranlib .libs/libdict_backend.a
libtool: link: ( cd ".libs" && rm -f "libdict_backend.la" && ln -s "../libdict_backend.la" "libdict_backend.la" )
--- test-dict-sql ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-ldap  -I../../src/lib-sql  -I../../src/lib-settings  -I/usr/local/include/mysql -DDICT_SRC_DIR=\"../../src/lib-dict-backend\"  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -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-dict-sql test_dict_sql-test-dict-sql.o libdict_backend.la  -lldap -llber  ../lib-sql/libdriver_test.la  ../lib-sql/libsql.la  ../lib-dovecot/libdovecot.la 
libtool: link: cc -I../../src/lib -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-ldap -I../../src/lib-sql -I../../src/lib-settings -I/usr/local/include/mysql -DDICT_SRC_DIR=\"../../src/lib-dict-backend\" -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -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-dict-sql test_dict_sql-test-dict-sql.o  -L/usr/local/lib ./.libs/libdict_backend.a /usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-ldap/.libs/libdovecot-ldap.so /usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-dovecot/.libs/libdovecot.so /usr/local/lib/libldap.so /usr/local/lib/liblber.so ../lib-sql/.libs/libdriver_test.a ../lib-sql/.libs/libsql.a -L/usr/local/lib/mysql -lmysqlclient -lpthread -lssl -lcrypto -lm -lrt -lexecinfo -lunwind ../lib-dovecot/.libs/libdovecot.so -pthread -Wl,-rpath -Wl,/usr/local/lib/dovecot -Wl,-rpath -Wl,/usr/local/lib
Making all in anvil
--- test-penalty.o ---
--- main.o ---
--- anvil-connection.o ---
--- anvil-settings.o ---
--- test-penalty.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-master  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-penalty.o -MD -MP -MF .deps/test-penalty.Tpo -c -o test-penalty.o test-penalty.c
--- main.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-master  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT main.o -MD -MP -MF .deps/main.Tpo -c -o main.o main.c
--- anvil-connection.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-master  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-connection.o -MD -MP -MF .deps/anvil-connection.Tpo -c -o anvil-connection.o anvil-connection.c
--- anvil-settings.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-master  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-settings.o -MD -MP -MF .deps/anvil-settings.Tpo -c -o anvil-settings.o anvil-settings.c
mv -f .deps/anvil-settings.Tpo .deps/anvil-settings.Po
--- connect-limit.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-master  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT connect-limit.o -MD -MP -MF .deps/connect-limit.Tpo -c -o connect-limit.o connect-limit.c
--- test-penalty.o ---
mv -f .deps/test-penalty.Tpo .deps/test-penalty.Po
--- penalty.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-master  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT penalty.o -MD -MP -MF .deps/penalty.Tpo -c -o penalty.o penalty.c
--- main.o ---
mv -f .deps/main.Tpo .deps/main.Po
--- anvil-connection.o ---
mv -f .deps/anvil-connection.Tpo .deps/anvil-connection.Po
--- connect-limit.o ---
mv -f .deps/connect-limit.Tpo .deps/connect-limit.Po
--- penalty.o ---
mv -f .deps/penalty.Tpo .deps/penalty.Po
--- anvil ---
/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 -mfunction-return=keep -Wall -W -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 anvil main.o anvil-connection.o  anvil-settings.o connect-limit.o  penalty.o ../../src/lib-dovecot/libdovecot.la -export-dynamic    -pie 
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 -mfunction-return=keep -Wall -W -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/anvil main.o anvil-connection.o anvil-settings.o connect-limit.o penalty.o -pie -Wl,--export-dynamic  -L/usr/local/lib ../../src/lib-dovecot/.libs/libdovecot.so -Wl,-rpath -Wl,/usr/local/lib/dovecot
--- test-penalty ---
/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 -mfunction-return=keep -Wall -W -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-penalty test-penalty.o penalty.o ../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 -mfunction-return=keep -Wall -W -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-penalty test-penalty.o penalty.o  -L/usr/local/lib ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a
Making all in auth
--- auth-cache.lo ---
--- test_libpassword-test-libpassword.o ---
--- test_auth_cache-auth-cache.o ---
--- test_auth_cache-test-auth-cache.o ---
--- auth-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-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-cache.lo -MD -MP -MF .deps/auth-cache.Tpo -c -o auth-cache.lo auth-cache.c
--- test_libpassword-test-libpassword.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/dovecot"\"     -fPIE -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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_auth_cache-auth-cache.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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_cache-auth--- test_auth_cache-test-auth-cache.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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_cache-test--- test_libpassword-test-libpassword.o ---
password-test-libpassword.o -MD -MP -MF .deps/test_libpassword-test-libpassword.Tpo -c -o test_libpassword-test-libpassword.o `test -f 'test-libpassword.c' || echo './'`test-libpassword.c
--- test_auth_cache-auth-cache.o ---
-cache.o -MD -MP -MF .deps/test_auth_cache-auth-cache.Tpo -c -o test_auth_cache-auth-cache.o `test -f 'auth-cache.c' || echo './'`auth-cache.c
--- test_auth_cache-test-auth-cache.o ---
-auth-cache.o -MD -MP -MF .deps/test_auth_cache-test-auth-cache.Tpo -c -o test_auth_cache-test-auth-cache.o `test -f 'test-auth-cache.c' || echo './'`test-auth-cache.c
--- auth-cache.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-cache.lo -MD -MP -MF .deps/auth-cache.Tpo -c auth-cache.c  -fPIC -DPIC -o .libs/auth-cache.o
--- test_auth_cache-test-auth-cache.o ---
mv -f .deps/test_auth_cache-test-auth-cache.Tpo .deps/test_auth_cache-test-auth-cache.Po
--- test-auth-request-var-expand.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-request-var-expand.o -MD -MP -MF .deps/test-auth-request-var-expand.Tpo -c -o test-auth-request-var-expand.o test-auth-request-var-expand.c
--- test_libpassword-test-libpassword.o ---
mv -f .deps/test_libpassword-test-libpassword.Tpo .deps/test_libpassword-test-libpassword.Po
--- test-auth-request-fields.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-request-fields.o -MD -MP -MF .deps/test-auth-request-fields.Tpo -c -o test-auth-request-fields.o test-auth-request-fields.c
mv -f .deps/test-auth-request-fields.Tpo .deps/test-auth-request-fields.Po
--- test-username-filter.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-username-filter.o -MD -MP -MF .deps/test-username-filter.Tpo -c -o test-username-filter.o test-username-filter.c
--- test_auth_cache-auth-cache.o ---
mv -f .deps/test_auth_cache-auth-cache.Tpo .deps/test_auth_cache-auth-cache.Po
--- test-db-dict.o ---
--- test-auth-request-var-expand.o ---
mv -f .deps/test-auth-request-var-expand.Tpo .deps/test-auth-request-var-expand.Po
--- test-db-dict.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-db-dict.o -MD -MP -MF .deps/test-db-dict.Tpo -c -o test-db-dict.o test-db-dict.c
--- test-lua.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-lua.o -MD -MP -MF .deps/test-lua.Tpo -c -o test-lua.o test-lua.c
mv -f .deps/test-lua.Tpo .deps/test-lua.Po
--- test-mock.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-mock.o -MD -MP -MF .deps/test-mock.Tpo -c -o test-mock.o test-mock.c
--- test-db-dict.o ---
mv -f .deps/test-db-dict.Tpo .deps/test-db-dict.Po
--- test-main.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-main.o -MD -MP -MF .deps/test-main.Tpo -c -o test-main.o test-main.c
--- test-username-filter.o ---
mv -f .deps/test-username-filter.Tpo .deps/test-username-filter.Po
--- test-mech.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-mech.o -MD -MP -MF .deps/test-mech.Tpo -c -o test-mech.o test-mech.c
--- auth-cache.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-cache.lo -MD -MP -MF .deps/auth-cache.Tpo -c auth-cache.c -o auth-cache.o >/dev/null 2>&1
--- test-main.o ---
mv -f .deps/test-main.Tpo .deps/test-main.Po
--- test-mock.o ---
mv -f .deps/test-mock.Tpo .deps/test-mock.Po
--- auth-main.o ---
--- checkpassword_reply-checkpassword-reply.o ---
--- auth-main.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/dovecot"\"     -fPIE -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-main.o -MD -MP -MF .deps/auth-main.Tpo -c -o auth-main.o `test -f 'main.c' || echo './'`main.c
--- checkpassword_reply-checkpassword-reply.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/dovecot"\"     -fPIE -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT checkpassword_reply-checkpassword-reply.o -MD -MP -MF .deps/checkpassword_reply-checkpassword-reply.Tpo -c -o checkpassword_reply-checkpassword-reply.o `test -f 'checkpassword-reply.c' || echo './'`checkpassword-reply.c
mv -f .deps/checkpassword_reply-checkpassword-reply.Tpo .deps/checkpassword_reply-checkpassword-reply.Po
--- test-mech.o ---
mv -f .deps/test-mech.Tpo .deps/test-mech.Po
--- libauthdb_imap_la-passdb-imap.lo ---
--- libpassword_la-crypt-blowfish.lo ---
--- libauthdb_imap_la-passdb-imap.lo ---
/bin/sh ../../libtool  --tag=CC   --mode=compile cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/dovecot"\"      -I../../src/lib-imap  -I../../src/lib-imap-client -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT libauthdb_imap_la-passdb-imap.lo -MD -MP -MF .deps/libauthdb_imap_la-passdb-imap.Tpo -c -o libauthdb_imap_la-passdb-imap.lo `test -f 'passdb-imap.c' || echo './'`passdb-imap.c
--- libpassword_la-crypt-blowfish.lo ---
/bin/sh ../../libtool  --tag=CC   --mode=compile cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/dovecot"\"     -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT libpassword_la-crypt-blowfish.lo -MD -MP -MF .deps/libpassword_la-crypt-blowfish.Tpo -c -o libpassword_la-crypt-blowfish.lo `test -f 'crypt-blowfish.c' || echo './'`crypt-blowfish.c
--- auth-cache.lo ---
mv -f .deps/auth-cache.Tpo .deps/auth-cache.Plo
--- libpassword_la-mycrypt.lo ---
/bin/sh ../../libtool  --tag=CC   --mode=compile cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/dovecot"\"     -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT libpassword_la-mycrypt.lo -MD -MP -MF .deps/libpassword_la-mycrypt.Tpo -c -o libpassword_la-mycrypt.lo `test -f 'mycrypt.c' || echo './'`mycrypt.c
--- auth-main.o ---
mv -f .deps/auth-main.Tpo .deps/auth-main.Po
--- libpassword_la-password-scheme.lo ---
/bin/sh ../../libtool  --tag=CC   --mode=compile cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/dovecot"\"     -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT libpassword_la-password-scheme.lo -MD -MP -MF .deps/libpassword_la-password-scheme.Tpo -c -o libpassword_la-password-scheme.lo `test -f 'password-scheme.c' || echo './'`password-scheme.c
--- libauthdb_imap_la-passdb-imap.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -I../../src/lib-imap -I../../src/lib-imap-client -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT libauthdb_imap_la-passdb-imap.lo -MD -MP -MF .deps/libauthdb_imap_la-passdb-imap.Tpo -c passdb-imap.c  -fPIC -DPIC -o .libs/libauthdb_imap_la-passdb-imap.o
--- libpassword_la-crypt-blowfish.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT libpassword_la-crypt-blowfish.lo -MD -MP -MF .deps/libpassword_la-crypt-blowfish.Tpo -c crypt-blowfish.c  -fPIC -DPIC -o .libs/libpassword_la-crypt-blowfish.o
--- libpassword_la-mycrypt.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT libpassword_la-mycrypt.lo -MD -MP -MF .deps/libpassword_la-mycrypt.Tpo -c mycrypt.c  -fPIC -DPIC -o .libs/libpassword_la-mycrypt.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT libpassword_la-mycrypt.lo -MD -MP -MF .deps/libpassword_la-mycrypt.Tpo -c mycrypt.c -o libpassword_la-mycrypt.o >/dev/null 2>&1
--- libpassword_la-password-scheme.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT libpassword_la-password-scheme.lo -MD -MP -MF .deps/libpassword_la-password-scheme.Tpo -c password-scheme.c  -fPIC -DPIC -o .libs/libpassword_la-password-scheme.o
--- libauthdb_imap_la-passdb-imap.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -I../../src/lib-imap -I../../src/lib-imap-client -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT libauthdb_imap_la-passdb-imap.lo -MD -MP -MF .deps/libauthdb_imap_la-passdb-imap.Tpo -c passdb-imap.c -o libauthdb_imap_la-passdb-imap.o >/dev/null 2>&1
--- libpassword_la-mycrypt.lo ---
mv -f .deps/libpassword_la-mycrypt.Tpo .deps/libpassword_la-mycrypt.Plo
--- libpassword_la-password-scheme-crypt.lo ---
/bin/sh ../../libtool  --tag=CC   --mode=compile cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/dovecot"\"     -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT libpassword_la-password-scheme-crypt.lo -MD -MP -MF .deps/libpassword_la-password-scheme-crypt.Tpo -c -o libpassword_la-password-scheme-crypt.lo `test -f 'password-scheme-crypt.c' || echo './'`password-scheme-crypt.c
--- libauthdb_imap_la-passdb-imap.lo ---
mv -f .deps/libauthdb_imap_la-passdb-imap.Tpo .deps/libauthdb_imap_la-passdb-imap.Plo
--- libpassword_la-password-scheme-md5crypt.lo ---
/bin/sh ../../libtool  --tag=CC   --mode=compile cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/dovecot"\"     -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT libpassword_la-password-scheme-md5crypt.lo -MD -MP -MF .deps/libpassword_la-password-scheme-md5crypt.Tpo -c -o libpassword_la-password-scheme-md5crypt.lo `test -f 'password-scheme-md5crypt.c' || echo './'`password-scheme-md5crypt.c
--- libpassword_la-password-scheme-crypt.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT libpassword_la-password-scheme-crypt.lo -MD -MP -MF .deps/libpassword_la-password-scheme-crypt.Tpo -c password-scheme-crypt.c  -fPIC -DPIC -o .libs/libpassword_la-password-scheme-crypt.o
--- libpassword_la-password-scheme.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT libpassword_la-password-scheme.lo -MD -MP -MF .deps/libpassword_la-password-scheme.Tpo -c password-scheme.c -o libpassword_la-password-scheme.o >/dev/null 2>&1
--- libpassword_la-password-scheme-crypt.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT libpassword_la-password-scheme-crypt.lo -MD -MP -MF .deps/libpassword_la-password-scheme-crypt.Tpo -c password-scheme-crypt.c -o libpassword_la-password-scheme-crypt.o >/dev/null 2>&1
--- libpassword_la-password-scheme-md5crypt.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT libpassword_la-password-scheme-md5crypt.lo -MD -MP -MF .deps/libpassword_la-password-scheme-md5crypt.Tpo -c password-scheme-md5crypt.c  -fPIC -DPIC -o .libs/libpassword_la-password-scheme-md5crypt.o
--- libpassword_la-password-scheme-crypt.lo ---
mv -f .deps/libpassword_la-password-scheme-crypt.Tpo .deps/libpassword_la-password-scheme-crypt.Plo
--- libpassword_la-password-scheme-scram.lo ---
/bin/sh ../../libtool  --tag=CC   --mode=compile cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/dovecot"\"     -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT libpassword_la-password-scheme-scram.lo -MD -MP -MF .deps/libpassword_la-password-scheme-scram.Tpo -c -o libpassword_la-password-scheme-scram.lo `test -f 'password-scheme-scram.c' || echo './'`password-scheme-scram.c
--- libpassword_la-password-scheme-md5crypt.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT libpassword_la-password-scheme-md5crypt.lo -MD -MP -MF .deps/libpassword_la-password-scheme-md5crypt.Tpo -c password-scheme-md5crypt.c -o libpassword_la-password-scheme-md5crypt.o >/dev/null 2>&1
--- libpassword_la-password-scheme-scram.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT libpassword_la-password-scheme-scram.lo -MD -MP -MF .deps/libpassword_la-password-scheme-scram.Tpo -c password-scheme-scram.c  -fPIC -DPIC -o .libs/libpassword_la-password-scheme-scram.o
--- libpassword_la-password-scheme.lo ---
mv -f .deps/libpassword_la-password-scheme.Tpo .deps/libpassword_la-password-scheme.Plo
--- libpassword_la-password-scheme-otp.lo ---
/bin/sh ../../libtool  --tag=CC   --mode=compile cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/dovecot"\"     -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT libpassword_la-password-scheme-otp.lo -MD -MP -MF .deps/libpassword_la-password-scheme-otp.Tpo -c -o libpassword_la-password-scheme-otp.lo `test -f 'password-scheme-otp.c' || echo './'`password-scheme-otp.c
--- libpassword_la-crypt-blowfish.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT libpassword_la-crypt-blowfish.lo -MD -MP -MF .deps/libpassword_la-crypt-blowfish.Tpo -c crypt-blowfish.c -o libpassword_la-crypt-blowfish.o >/dev/null 2>&1
--- libpassword_la-password-scheme-md5crypt.lo ---
mv -f .deps/libpassword_la-password-scheme-md5crypt.Tpo .deps/libpassword_la-password-scheme-md5crypt.Plo
--- libpassword_la-password-scheme-pbkdf2.lo ---
/bin/sh ../../libtool  --tag=CC   --mode=compile cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/dovecot"\"     -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT libpassword_la-password-scheme-pbkdf2.lo -MD -MP -MF .deps/libpassword_la-password-scheme-pbkdf2.Tpo -c -o libpassword_la-password-scheme-pbkdf2.lo `test -f 'password-scheme-pbkdf2.c' || echo './'`password-scheme-pbkdf2.c
--- libpassword_la-password-scheme-scram.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT libpassword_la-password-scheme-scram.lo -MD -MP -MF .deps/libpassword_la-password-scheme-scram.Tpo -c password-scheme-scram.c -o libpassword_la-password-scheme-scram.o >/dev/null 2>&1
--- libpassword_la-password-scheme-otp.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT libpassword_la-password-scheme-otp.lo -MD -MP -MF .deps/libpassword_la-password-scheme-otp.Tpo -c password-scheme-otp.c  -fPIC -DPIC -o .libs/libpassword_la-password-scheme-otp.o
--- libpassword_la-password-scheme-pbkdf2.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT libpassword_la-password-scheme-pbkdf2.lo -MD -MP -MF .deps/libpassword_la-password-scheme-pbkdf2.Tpo -c password-scheme-pbkdf2.c  -fPIC -DPIC -o .libs/libpassword_la-password-scheme-pbkdf2.o
--- libpassword_la-password-scheme-otp.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT libpassword_la-password-scheme-otp.lo -MD -MP -MF .deps/libpassword_la-password-scheme-otp.Tpo -c password-scheme-otp.c -o libpassword_la-password-scheme-otp.o >/dev/null 2>&1
--- libpassword_la-password-scheme-scram.lo ---
mv -f .deps/libpassword_la-password-scheme-scram.Tpo .deps/libpassword_la-password-scheme-scram.Plo
--- libpassword_la-password-scheme-sodium.lo ---
/bin/sh ../../libtool  --tag=CC   --mode=compile cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/dovecot"\"     -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT libpassword_la-password-scheme-sodium.lo -MD -MP -MF .deps/libpassword_la-password-scheme-sodium.Tpo -c -o libpassword_la-password-scheme-sodium.lo `test -f 'password-scheme-sodium.c' || echo './'`password-scheme-sodium.c
--- libpassword_la-password-scheme-pbkdf2.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT libpassword_la-password-scheme-pbkdf2.lo -MD -MP -MF .deps/libpassword_la-password-scheme-pbkdf2.Tpo -c password-scheme-pbkdf2.c -o libpassword_la-password-scheme-pbkdf2.o >/dev/null 2>&1
--- libpassword_la-password-scheme-otp.lo ---
mv -f .deps/libpassword_la-password-scheme-otp.Tpo .deps/libpassword_la-password-scheme-otp.Plo
--- 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-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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.lo -MD -MP -MF .deps/auth.Tpo -c -o auth.lo auth.c
--- libpassword_la-password-scheme-pbkdf2.lo ---
mv -f .deps/libpassword_la-password-scheme-pbkdf2.Tpo .deps/libpassword_la-password-scheme-pbkdf2.Plo
--- auth-client-connection.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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
--- libpassword_la-password-scheme-sodium.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT libpassword_la-password-scheme-sodium.lo -MD -MP -MF .deps/libpassword_la-password-scheme-sodium.Tpo -c password-scheme-sodium.c  -fPIC -DPIC -o .libs/libpassword_la-password-scheme-sodium.o
--- auth.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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.lo -MD -MP -MF .deps/auth.Tpo -c auth.c  -fPIC -DPIC -o .libs/auth.o
--- auth-client-connection.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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
--- libpassword_la-password-scheme-sodium.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT libpassword_la-password-scheme-sodium.lo -MD -MP -MF .deps/libpassword_la-password-scheme-sodium.Tpo -c password-scheme-sodium.c -o libpassword_la-password-scheme-sodium.o >/dev/null 2>&1
mv -f .deps/libpassword_la-password-scheme-sodium.Tpo .deps/libpassword_la-password-scheme-sodium.Plo
--- auth-master-connection.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-connection.lo -MD -MP -MF .deps/auth-master-connection.Tpo -c -o auth-master-connection.lo auth-master-connection.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-connection.lo -MD -MP -MF .deps/auth-master-connection.Tpo -c auth-master-connection.c  -fPIC -DPIC -o .libs/auth-master-connection.o
--- libpassword_la-crypt-blowfish.lo ---
mv -f .deps/libpassword_la-crypt-blowfish.Tpo .deps/libpassword_la-crypt-blowfish.Plo
--- auth-policy.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-policy.lo -MD -MP -MF .deps/auth-policy.Tpo -c -o auth-policy.lo auth-policy.c
--- auth.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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.lo -MD -MP -MF .deps/auth.Tpo -c auth.c -o auth.o >/dev/null 2>&1
--- auth-client-connection.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-policy.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-policy.lo -MD -MP -MF .deps/auth-policy.Tpo -c auth-policy.c  -fPIC -DPIC -o .libs/auth-policy.o
--- auth.lo ---
mv -f .deps/auth.Tpo .deps/auth.Plo
--- mech-otp-common.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-otp-common.lo -MD -MP -MF .deps/mech-otp-common.Tpo -c -o mech-otp-common.lo mech-otp-common.c
--- auth-client-connection.lo ---
mv -f .deps/auth-client-connection.Tpo .deps/auth-client-connection.Plo
--- mech-plain-common.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-common.lo -MD -MP -MF .deps/mech-plain-common.Tpo -c -o mech-plain-common.lo mech-plain-common.c
--- auth-master-connection.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-connection.lo -MD -MP -MF .deps/auth-master-connection.Tpo -c auth-master-connection.c -o auth-master-connection.o >/dev/null 2>&1
--- mech-otp-common.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-otp-common.lo -MD -MP -MF .deps/mech-otp-common.Tpo -c mech-otp-common.c  -fPIC -DPIC -o .libs/mech-otp-common.o
--- auth-policy.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-policy.lo -MD -MP -MF .deps/auth-policy.Tpo -c auth-policy.c -o auth-policy.o >/dev/null 2>&1
--- mech-plain-common.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-common.lo -MD -MP -MF .deps/mech-plain-common.Tpo -c mech-plain-common.c  -fPIC -DPIC -o .libs/mech-plain-common.o
--- mech-otp-common.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-otp-common.lo -MD -MP -MF .deps/mech-otp-common.Tpo -c mech-otp-common.c -o mech-otp-common.o >/dev/null 2>&1
--- mech-plain-common.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-common.lo -MD -MP -MF .deps/mech-plain-common.Tpo -c mech-plain-common.c -o mech-plain-common.o >/dev/null 2>&1
mv -f .deps/mech-plain-common.Tpo .deps/mech-plain-common.Plo
--- auth-penalty.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-penalty.lo -MD -MP -MF .deps/auth-penalty.Tpo -c -o auth-penalty.lo auth-penalty.c
--- mech-otp-common.lo ---
mv -f .deps/mech-otp-common.Tpo .deps/mech-otp-common.Plo
--- auth-request.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-request.lo -MD -MP -MF .deps/auth-request.Tpo -c -o auth-request.lo auth-request.c
--- auth-penalty.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-penalty.lo -MD -MP -MF .deps/auth-penalty.Tpo -c auth-penalty.c  -fPIC -DPIC -o .libs/auth-penalty.o
--- auth-request.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-request.lo -MD -MP -MF .deps/auth-request.Tpo -c auth-request.c  -fPIC -DPIC -o .libs/auth-request.o
--- auth-policy.lo ---
mv -f .deps/auth-policy.Tpo .deps/auth-policy.Plo
--- auth-request-fields.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-request-fields.lo -MD -MP -MF .deps/auth-request-fields.Tpo -c -o auth-request-fields.lo auth-request-fields.c
--- auth-master-connection.lo ---
mv -f .deps/auth-master-connection.Tpo .deps/auth-master-connection.Plo
--- auth-request-handler.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-request-handler.lo -MD -MP -MF .deps/auth-request-handler.Tpo -c -o auth-request-handler.lo auth-request-handler.c
--- auth-request-fields.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-request-fields.lo -MD -MP -MF .deps/auth-request-fields.Tpo -c auth-request-fields.c  -fPIC -DPIC -o .libs/auth-request-fields.o
--- auth-request-handler.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-request-handler.lo -MD -MP -MF .deps/auth-request-handler.Tpo -c auth-request-handler.c  -fPIC -DPIC -o .libs/auth-request-handler.o
--- auth-penalty.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-penalty.lo -MD -MP -MF .deps/auth-penalty.Tpo -c auth-penalty.c -o auth-penalty.o >/dev/null 2>&1
mv -f .deps/auth-penalty.Tpo .deps/auth-penalty.Plo
--- auth-request-stats.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-request-stats.lo -MD -MP -MF .deps/auth-request-stats.Tpo -c -o auth-request-stats.lo auth-request-stats.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-request-stats.lo -MD -MP -MF .deps/auth-request-stats.Tpo -c auth-request-stats.c  -fPIC -DPIC -o .libs/auth-request-stats.o
--- auth-request-fields.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-request-fields.lo -MD -MP -MF .deps/auth-request-fields.Tpo -c auth-request-fields.c -o auth-request-fields.o >/dev/null 2>&1
--- auth-request-stats.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-request-stats.lo -MD -MP -MF .deps/auth-request-stats.Tpo -c auth-request-stats.c -o auth-request-stats.o >/dev/null 2>&1
--- auth-request-handler.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-request-handler.lo -MD -MP -MF .deps/auth-request-handler.Tpo -c auth-request-handler.c -o auth-request-handler.o >/dev/null 2>&1
--- auth-request-stats.lo ---
mv -f .deps/auth-request-stats.Tpo .deps/auth-request-stats.Plo
--- auth-request-var-expand.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-request-var-expand.lo -MD -MP -MF .deps/auth-request-var-expand.Tpo -c -o auth-request-var-expand.lo auth-request-var-expand.c
--- auth-request-fields.lo ---
mv -f .deps/auth-request-fields.Tpo .deps/auth-request-fields.Plo
--- auth-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-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-settings.lo -MD -MP -MF .deps/auth-settings.Tpo -c -o auth-settings.lo auth-settings.c
--- auth-request-var-expand.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-request-var-expand.lo -MD -MP -MF .deps/auth-request-var-expand.Tpo -c auth-request-var-expand.c  -fPIC -DPIC -o .libs/auth-request-var-expand.o
--- auth-settings.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-settings.lo -MD -MP -MF .deps/auth-settings.Tpo -c auth-settings.c  -fPIC -DPIC -o .libs/auth-settings.o
--- auth-request-handler.lo ---
mv -f .deps/auth-request-handler.Tpo .deps/auth-request-handler.Plo
--- auth-fields.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-fields.lo -MD -MP -MF .deps/auth-fields.Tpo -c -o auth-fields.lo auth-fields.c
--- auth-request-var-expand.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-request-var-expand.lo -MD -MP -MF .deps/auth-request-var-expand.Tpo -c auth-request-var-expand.c -o auth-request-var-expand.o >/dev/null 2>&1
--- auth-request.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-request.lo -MD -MP -MF .deps/auth-request.Tpo -c auth-request.c -o auth-request.o >/dev/null 2>&1
--- auth-settings.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-settings.lo -MD -MP -MF .deps/auth-settings.Tpo -c auth-settings.c -o auth-settings.o >/dev/null 2>&1
--- auth-fields.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-fields.lo -MD -MP -MF .deps/auth-fields.Tpo -c auth-fields.c  -fPIC -DPIC -o .libs/auth-fields.o
--- auth-request-var-expand.lo ---
mv -f .deps/auth-request-var-expand.Tpo .deps/auth-request-var-expand.Plo
--- auth-token.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-token.lo -MD -MP -MF .deps/auth-token.Tpo -c -o auth-token.lo auth-token.c
--- auth-settings.lo ---
mv -f .deps/auth-settings.Tpo .deps/auth-settings.Plo
--- auth-worker-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-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-worker-client.lo -MD -MP -MF .deps/auth-worker-client.Tpo -c -o auth-worker-client.lo auth-worker-client.c
--- auth-token.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-token.lo -MD -MP -MF .deps/auth-token.Tpo -c auth-token.c  -fPIC -DPIC -o .libs/auth-token.o
--- auth-worker-client.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-worker-client.lo -MD -MP -MF .deps/auth-worker-client.Tpo -c auth-worker-client.c  -fPIC -DPIC -o .libs/auth-worker-client.o
--- auth-fields.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-fields.lo -MD -MP -MF .deps/auth-fields.Tpo -c auth-fields.c -o auth-fields.o >/dev/null 2>&1
--- auth-token.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-token.lo -MD -MP -MF .deps/auth-token.Tpo -c auth-token.c -o auth-token.o >/dev/null 2>&1
mv -f .deps/auth-token.Tpo .deps/auth-token.Plo
--- auth-worker-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-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-worker-server.lo -MD -MP -MF .deps/auth-worker-server.Tpo -c -o auth-worker-server.lo auth-worker-server.c
--- auth-fields.lo ---
mv -f .deps/auth-fields.Tpo .deps/auth-fields.Plo
--- db-checkpassword.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT db-checkpassword.lo -MD -MP -MF .deps/db-checkpassword.Tpo -c -o db-checkpassword.lo db-checkpassword.c
--- auth-worker-server.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-worker-server.lo -MD -MP -MF .deps/auth-worker-server.Tpo -c auth-worker-server.c  -fPIC -DPIC -o .libs/auth-worker-server.o
--- db-checkpassword.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT db-checkpassword.lo -MD -MP -MF .deps/db-checkpassword.Tpo -c db-checkpassword.c  -fPIC -DPIC -o .libs/db-checkpassword.o
--- auth-worker-client.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-worker-client.lo -MD -MP -MF .deps/auth-worker-client.Tpo -c auth-worker-client.c -o auth-worker-client.o >/dev/null 2>&1
--- auth-worker-server.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-worker-server.lo -MD -MP -MF .deps/auth-worker-server.Tpo -c auth-worker-server.c -o auth-worker-server.o >/dev/null 2>&1
--- auth-request.lo ---
mv -f .deps/auth-request.Tpo .deps/auth-request.Plo
--- db-dict.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT db-dict.lo -MD -MP -MF .deps/db-dict.Tpo -c -o db-dict.lo db-dict.c
--- db-checkpassword.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT db-checkpassword.lo -MD -MP -MF .deps/db-checkpassword.Tpo -c db-checkpassword.c -o db-checkpassword.o >/dev/null 2>&1
--- db-dict.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT db-dict.lo -MD -MP -MF .deps/db-dict.Tpo -c db-dict.c  -fPIC -DPIC -o .libs/db-dict.o
--- auth-worker-client.lo ---
mv -f .deps/auth-worker-client.Tpo .deps/auth-worker-client.Plo
--- db-dict-cache-key.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT db-dict-cache-key.lo -MD -MP -MF .deps/db-dict-cache-key.Tpo -c -o db-dict-cache-key.lo db-dict-cache-key.c
--- auth-worker-server.lo ---
mv -f .deps/auth-worker-server.Tpo .deps/auth-worker-server.Plo
--- db-oauth2.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT db-oauth2.lo -MD -MP -MF .deps/db-oauth2.Tpo -c -o db-oauth2.lo db-oauth2.c
--- db-dict-cache-key.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT db-dict-cache-key.lo -MD -MP -MF .deps/db-dict-cache-key.Tpo -c db-dict-cache-key.c  -fPIC -DPIC -o .libs/db-dict-cache-key.o
--- db-oauth2.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT db-oauth2.lo -MD -MP -MF .deps/db-oauth2.Tpo -c db-oauth2.c  -fPIC -DPIC -o .libs/db-oauth2.o
--- db-checkpassword.lo ---
mv -f .deps/db-checkpassword.Tpo .deps/db-checkpassword.Plo
--- db-sql.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT db-sql.lo -MD -MP -MF .deps/db-sql.Tpo -c -o db-sql.lo db-sql.c
--- db-dict-cache-key.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT db-dict-cache-key.lo -MD -MP -MF .deps/db-dict-cache-key.Tpo -c db-dict-cache-key.c -o db-dict-cache-key.o >/dev/null 2>&1
--- db-sql.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT db-sql.lo -MD -MP -MF .deps/db-sql.Tpo -c db-sql.c  -fPIC -DPIC -o .libs/db-sql.o
--- db-dict.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT db-dict.lo -MD -MP -MF .deps/db-dict.Tpo -c db-dict.c -o db-dict.o >/dev/null 2>&1
--- db-dict-cache-key.lo ---
mv -f .deps/db-dict-cache-key.Tpo .deps/db-dict-cache-key.Plo
--- db-passwd-file.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT db-passwd-file.lo -MD -MP -MF .deps/db-passwd-file.Tpo -c -o db-passwd-file.lo db-passwd-file.c
--- db-sql.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT db-sql.lo -MD -MP -MF .deps/db-sql.Tpo -c db-sql.c -o db-sql.o >/dev/null 2>&1
--- db-passwd-file.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT db-passwd-file.lo -MD -MP -MF .deps/db-passwd-file.Tpo -c db-passwd-file.c  -fPIC -DPIC -o .libs/db-passwd-file.o
--- db-sql.lo ---
mv -f .deps/db-sql.Tpo .deps/db-sql.Plo
--- mech.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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.lo -MD -MP -MF .deps/mech.Tpo -c -o mech.lo mech.c
--- db-oauth2.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT db-oauth2.lo -MD -MP -MF .deps/db-oauth2.Tpo -c db-oauth2.c -o db-oauth2.o >/dev/null 2>&1
--- db-dict.lo ---
mv -f .deps/db-dict.Tpo .deps/db-dict.Plo
--- mech-anonymous.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-alia--- mech.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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.lo -MD -MP -MF .deps/mech.Tpo --- mech-anonymous.lo ---
sing=2 -I/usr/local/include -MT mech-anonymous.lo -MD -MP -MF .deps/mech-anonymous.Tpo -c -o mech-anonymous.lo mech-anonymous.c
--- mech.lo ---
-c mech.c  -fPIC -DPIC -o .libs/mech.o
--- db-passwd-file.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT db-passwd-file.lo -MD -MP -MF .deps/db-passwd-file.Tpo -c db-passwd-file.c -o db-passwd-file.o >/dev/null 2>&1
--- mech-anonymous.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-anonymous.lo -MD -MP -MF .deps/mech-anonymous.Tpo -c mech-anonymous.c  -fPIC -DPIC -o .libs/mech-anonymous.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-anonymous.lo -MD -MP -MF .deps/mech-anonymous.Tpo -c mech-anonymous.c -o mech-anonymous.o >/dev/null 2>&1
--- mech.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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.lo -MD -MP -MF .deps/mech.Tpo -c mech.c -o mech.o >/dev/null 2>&1
--- mech-anonymous.lo ---
mv -f .deps/mech-anonymous.Tpo .deps/mech-anonymous.Plo
--- mech-plain.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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
--- db-passwd-file.lo ---
mv -f .deps/db-passwd-file.Tpo .deps/db-passwd-file.Plo
--- mech-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-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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
--- db-oauth2.lo ---
mv -f .deps/db-oauth2.Tpo .deps/db-oauth2.Plo
--- mech-cram-md5.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-cram-md5.lo -MD -MP -MF .deps/mech-cram-md5.Tpo -c -o mech-cram-md5.lo mech-cram-md5.c
--- mech-plain.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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.lo ---
mv -f .deps/mech.Tpo .deps/mech.Plo
--- mech-digest-md5.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-digest-md5.lo -MD -MP -MF .deps/mech-digest-md5.Tpo -c -o mech-digest-md5.lo mech-digest-md5.c
--- mech-cram-md5.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-cram-md5.lo -MD -MP -MF .deps/mech-cram-md5.Tpo -c mech-cram-md5.c  -fPIC -DPIC -o .libs/mech-cram-md5.o
--- mech-plain.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-login.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-digest-md5.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-digest-md5.lo -MD -MP -MF .deps/mech-digest-md5.Tpo -c mech-digest-md5.c  -fPIC -DPIC -o .libs/mech-digest-md5.o
--- mech-plain.lo ---
mv -f .deps/mech-plain.Tpo .deps/mech-plain.Plo
--- mech-external.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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 ---
mv -f .deps/mech-login.Tpo .deps/mech-login.Plo
--- mech-gssapi.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-gssapi.lo -MD -MP -MF .deps/mech-gssapi.Tpo -c -o mech-gssapi.lo mech-gssapi.c
--- mech-cram-md5.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-cram-md5.lo -MD -MP -MF .deps/mech-cram-md5.Tpo -c mech-cram-md5.c -o mech-cram-md5.o >/dev/null 2>&1
--- mech-external.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-gssapi.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-gssapi.lo -MD -MP -MF .deps/mech-gssapi.Tpo -c mech-gssapi.c  -fPIC -DPIC -o .libs/mech-gssapi.o
--- mech-cram-md5.lo ---
mv -f .deps/mech-cram-md5.Tpo .deps/mech-cram-md5.Plo
--- mech-otp.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-otp.lo -MD -MP -MF .deps/mech-otp.Tpo -c -o mech-otp.lo mech-otp.c
--- mech-external.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-gssapi.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-gssapi.lo -MD -MP -MF .deps/mech-gssapi.Tpo -c mech-gssapi.c -o mech-gssapi.o >/dev/null 2>&1
--- mech-digest-md5.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-digest-md5.lo -MD -MP -MF .deps/mech-digest-md5.Tpo -c mech-digest-md5.c -o mech-digest-md5.o >/dev/null 2>&1
--- mech-otp.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-otp.lo -MD -MP -MF .deps/mech-otp.Tpo -c mech-otp.c  -fPIC -DPIC -o .libs/mech-otp.o
--- mech-gssapi.lo ---
mv -f .deps/mech-gssapi.Tpo .deps/mech-gssapi.Plo
--- mech-scram.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-scram.lo -MD -MP -MF .deps/mech-scram.Tpo -c -o mech-scram.lo mech-scram.c
--- mech-external.lo ---
mv -f .deps/mech-external.Tpo .deps/mech-external.Plo
--- mech-apop.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-apop.lo -MD -MP -MF .deps/mech-apop.Tpo -c -o mech-apop.lo mech-apop.c
--- mech-scram.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-scram.lo -MD -MP -MF .deps/mech-scram.Tpo -c mech-scram.c  -fPIC -DPIC -o .libs/mech-scram.o
--- mech-otp.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-otp.lo -MD -MP -MF .deps/mech-otp.Tpo -c mech-otp.c -o mech-otp.o >/dev/null 2>&1
--- mech-apop.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-apop.lo -MD -MP -MF .deps/mech-apop.Tpo -c mech-apop.c  -fPIC -DPIC -o .libs/mech-apop.o
--- mech-digest-md5.lo ---
mv -f .deps/mech-digest-md5.Tpo .deps/mech-digest-md5.Plo
--- mech-winbind.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-winbind.lo -MD -MP -MF .deps/mech-winbind.Tpo -c -o mech-winbind.lo mech-winbind.c
--- mech-apop.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-apop.lo -MD -MP -MF .deps/mech-apop.Tpo -c mech-apop.c -o mech-apop.o >/dev/null 2>&1
--- mech-otp.lo ---
mv -f .deps/mech-otp.Tpo .deps/mech-otp.Plo
--- mech-dovecot-token.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-dovecot-token.lo -MD -MP -MF .deps/mech-dovecot-token.Tpo -c -o mech-dovecot-token.lo mech-dovecot-token.c
--- mech-winbind.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-winbind.lo -MD -MP -MF .deps/mech-winbind.Tpo -c mech-winbind.c  -fPIC -DPIC -o .libs/mech-winbind.o
--- mech-scram.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-scram.lo -MD -MP -MF .deps/mech-scram.Tpo -c mech-scram.c -o mech-scram.o >/dev/null 2>&1
--- mech-dovecot-token.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-dovecot-token.lo -MD -MP -MF .deps/mech-dovecot-token.Tpo -c mech-dovecot-token.c  -fPIC -DPIC -o .libs/mech-dovecot-token.o
--- mech-apop.lo ---
mv -f .deps/mech-apop.Tpo .deps/mech-apop.Plo
--- mech-oauth2.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-oauth2.lo -MD -MP -MF .deps/mech-oauth2.Tpo -c -o mech-oauth2.lo mech-oauth2.c
--- mech-dovecot-token.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-dovecot-token.lo -MD -MP -MF .deps/mech-dovecot-token.Tpo -c mech-dovecot-token.c -o mech-dovecot-token.o >/dev/null 2>&1
--- mech-oauth2.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-oauth2.lo -MD -MP -MF .deps/mech-oauth2.Tpo -c mech-oauth2.c  -fPIC -DPIC -o .libs/mech-oauth2.o
--- mech-winbind.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-winbind.lo -MD -MP -MF .deps/mech-winbind.Tpo -c mech-winbind.c -o mech-winbind.o >/dev/null 2>&1
--- mech-scram.lo ---
mv -f .deps/mech-scram.Tpo .deps/mech-scram.Plo
--- passdb.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT passdb.lo -MD -MP -MF .deps/passdb.Tpo -c -o passdb.lo passdb.c
--- mech-dovecot-token.lo ---
mv -f .deps/mech-dovecot-token.Tpo .deps/mech-dovecot-token.Plo
--- passdb-blocking.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT passdb-blocking.lo -MD -MP -MF .deps/passdb-blocking.Tpo -c -o passdb-blocking.lo passdb-blocking.c
--- passdb.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT passdb.lo -MD -MP -MF .deps/passdb.Tpo -c passdb.c  -fPIC -DPIC -o .libs/passdb.o
--- mech-oauth2.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-oauth2.lo -MD -MP -MF .deps/mech-oauth2.Tpo -c mech-oauth2.c -o mech-oauth2.o >/dev/null 2>&1
--- mech-winbind.lo ---
mv -f .deps/mech-winbind.Tpo .deps/mech-winbind.Plo
--- passdb-bsdauth.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT passdb-bsdauth.lo -MD -MP -MF .deps/passdb-bsdauth.Tpo -c -o passdb-bsdauth.lo passdb-bsdauth.c
--- passdb-blocking.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT passdb-blocking.lo -MD -MP -MF .deps/passdb-blocking.Tpo -c passdb-blocking.c  -fPIC -DPIC -o .libs/passdb-blocking.o
--- passdb-bsdauth.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT passdb-bsdauth.lo -MD -MP -MF .deps/passdb-bsdauth.Tpo -c passdb-bsdauth.c  -fPIC -DPIC -o .libs/passdb-bsdauth.o
--- passdb-blocking.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT passdb-blocking.lo -MD -MP -MF .deps/passdb-blocking.Tpo -c passdb-blocking.c -o passdb-blocking.o >/dev/null 2>&1
--- passdb-bsdauth.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT passdb-bsdauth.lo -MD -MP -MF .deps/passdb-bsdauth.Tpo -c passdb-bsdauth.c -o passdb-bsdauth.o >/dev/null 2>&1
--- mech-oauth2.lo ---
mv -f .deps/mech-oauth2.Tpo .deps/mech-oauth2.Plo
--- passdb-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-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT passdb-cache.lo -MD -MP -MF .deps/passdb-cache.Tpo -c -o passdb-cache.lo passdb-cache.c
--- passdb.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT passdb.lo -MD -MP -MF .deps/passdb.Tpo -c passdb.c -o passdb.o >/dev/null 2>&1
--- passdb-bsdauth.lo ---
mv -f .deps/passdb-bsdauth.Tpo .deps/passdb-bsdauth.Plo
--- passdb-checkpassword.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT passdb-checkpassword.lo -MD -MP -MF .deps/passdb-checkpassword.Tpo -c -o passdb-checkpassword.lo passdb-checkpassword.c
--- passdb-cache.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT passdb-cache.lo -MD -MP -MF .deps/passdb-cache.Tpo -c passdb-cache.c  -fPIC -DPIC -o .libs/passdb-cache.o
--- passdb-blocking.lo ---
mv -f .deps/passdb-blocking.Tpo .deps/passdb-blocking.Plo
--- passdb-dict.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT passdb-dict.lo -MD -MP -MF .deps/passdb-dict.Tpo -c -o passdb-dict.lo passdb-dict.c
--- passdb-checkpassword.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT passdb-checkpassword.lo -MD -MP -MF .deps/passdb-checkpassword.Tpo -c passdb-checkpassword.c  -fPIC -DPIC -o .libs/passdb-checkpassword.o
--- passdb-dict.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT passdb-dict.lo -MD -MP -MF .deps/passdb-dict.Tpo -c passdb-dict.c  -fPIC -DPIC -o .libs/passdb-dict.o
--- passdb.lo ---
mv -f .deps/passdb.Tpo .deps/passdb.Plo
--- passdb-oauth2.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT passdb-oauth2.lo -MD -MP -MF .deps/passdb-oauth2.Tpo -c -o passdb-oauth2.lo passdb-oauth2.c
--- passdb-cache.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT passdb-cache.lo -MD -MP -MF .deps/passdb-cache.Tpo -c passdb-cache.c -o passdb-cache.o >/dev/null 2>&1
--- passdb-checkpassword.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT passdb-checkpassword.lo -MD -MP -MF .deps/passdb-checkpassword.Tpo -c passdb-checkpassword.c -o passdb-checkpassword.o >/dev/null 2>&1
--- passdb-dict.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT passdb-dict.lo -MD -MP -MF .deps/passdb-dict.Tpo -c passdb-dict.c -o passdb-dict.o >/dev/null 2>&1
--- passdb-oauth2.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT passdb-oauth2.lo -MD -MP -MF .deps/passdb-oauth2.Tpo -c passdb-oauth2.c  -fPIC -DPIC -o .libs/passdb-oauth2.o
--- passdb-cache.lo ---
mv -f .deps/passdb-cache.Tpo .deps/passdb-cache.Plo
--- passdb-passwd.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT passdb-passwd.lo -MD -MP -MF .deps/passdb-passwd.Tpo -c -o passdb-passwd.lo passdb-passwd.c
--- passdb-checkpassword.lo ---
mv -f .deps/passdb-checkpassword.Tpo .deps/passdb-checkpassword.Plo
--- passdb-passwd-file.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT passdb-passwd-file.lo -MD -MP -MF .deps/passdb-passwd-file.Tpo -c -o passdb-passwd-file.lo passdb-passwd-file.c
--- passdb-oauth2.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT passdb-oauth2.lo -MD -MP -MF .deps/passdb-oauth2.Tpo -c passdb-oauth2.c -o passdb-oauth2.o >/dev/null 2>&1
--- passdb-dict.lo ---
mv -f .deps/passdb-dict.Tpo .deps/passdb-dict.Plo
--- passdb-pam.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT passdb-pam.lo -MD -MP -MF .deps/passdb-pam.Tpo -c -o passdb-pam.lo passdb-pam.c
--- passdb-passwd.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT passdb-passwd.lo -MD -MP -MF .deps/passdb-passwd.Tpo -c passdb-passwd.c  -fPIC -DPIC -o .libs/passdb-passwd.o
--- passdb-passwd-file.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT passdb-passwd-file.lo -MD -MP -MF .deps/passdb-passwd-file.Tpo -c passdb-passwd-file.c  -fPIC -DPIC -o .libs/passdb-passwd-file.o
--- passdb-oauth2.lo ---
mv -f .deps/passdb-oauth2.Tpo .deps/passdb-oauth2.Plo
--- passdb-shadow.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT passdb-shadow.lo -MD -MP -MF .deps/passdb-shadow.Tpo -c -o passdb-shadow.lo passdb-shadow.c
--- passdb-pam.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT passdb-pam.lo -MD -MP -MF .deps/passdb-pam.Tpo -c passdb-pam.c  -fPIC -DPIC -o .libs/passdb-pam.o
--- passdb-passwd.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT passdb-passwd.lo -MD -MP -MF .deps/passdb-passwd.Tpo -c passdb-passwd.c -o passdb-passwd.o >/dev/null 2>&1
--- passdb-shadow.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT passdb-shadow.lo -MD -MP -MF .deps/passdb-shadow.Tpo -c passdb-shadow.c  -fPIC -DPIC -o .libs/passdb-shadow.o
--- passdb-passwd-file.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT passdb-passwd-file.lo -MD -MP -MF .deps/passdb-passwd-file.Tpo -c passdb-passwd-file.c -o passdb-passwd-file.o >/dev/null 2>&1
--- passdb-shadow.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT passdb-shadow.lo -MD -MP -MF .deps/passdb-shadow.Tpo -c passdb-shadow.c -o passdb-shadow.o >/dev/null 2>&1
--- passdb-passwd.lo ---
mv -f .deps/passdb-passwd.Tpo .deps/passdb-passwd.Plo
--- passdb-sql.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT passdb-sql.lo -MD -MP -MF .deps/passdb-sql.Tpo -c -o passdb-sql.lo passdb-sql.c
--- passdb-passwd-file.lo ---
mv -f .deps/passdb-passwd-file.Tpo .deps/passdb-passwd-file.Plo
--- passdb-static.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT passdb-static.lo -MD -MP -MF .deps/passdb-static.Tpo -c -o passdb-static.lo passdb-static.c
--- passdb-shadow.lo ---
mv -f .deps/passdb-shadow.Tpo .deps/passdb-shadow.Plo
--- passdb-template.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT passdb-template.lo -MD -MP -MF .deps/passdb-template.Tpo -c -o passdb-template.lo passdb-template.c
--- passdb-sql.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT passdb-sql.lo -MD -MP -MF .deps/passdb-sql.Tpo -c passdb-sql.c  -fPIC -DPIC -o .libs/passdb-sql.o
--- passdb-pam.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT passdb-pam.lo -MD -MP -MF .deps/passdb-pam.Tpo -c passdb-pam.c -o passdb-pam.o >/dev/null 2>&1
--- passdb-static.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT passdb-static.lo -MD -MP -MF .deps/passdb-static.Tpo -c passdb-static.c  -fPIC -DPIC -o .libs/passdb-static.o
--- passdb-template.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT passdb-template.lo -MD -MP -MF .deps/passdb-template.Tpo -c passdb-template.c  -fPIC -DPIC -o .libs/passdb-template.o
--- passdb-sql.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT passdb-sql.lo -MD -MP -MF .deps/passdb-sql.Tpo -c passdb-sql.c -o passdb-sql.o >/dev/null 2>&1
--- passdb-static.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT passdb-static.lo -MD -MP -MF .deps/passdb-static.Tpo -c passdb-static.c -o passdb-static.o >/dev/null 2>&1
--- passdb-template.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT passdb-template.lo -MD -MP -MF .deps/passdb-template.Tpo -c passdb-template.c -o passdb-template.o >/dev/null 2>&1
--- passdb-pam.lo ---
mv -f .deps/passdb-pam.Tpo .deps/passdb-pam.Plo
--- userdb.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT userdb.lo -MD -MP -MF .deps/userdb.Tpo -c -o userdb.lo userdb.c
--- passdb-static.lo ---
mv -f .deps/passdb-static.Tpo .deps/passdb-static.Plo
--- userdb-blocking.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT userdb-blocking.lo -MD -MP -MF .deps/userdb-blocking.Tpo -c -o userdb-blocking.lo userdb-blocking.c
--- passdb-template.lo ---
mv -f .deps/passdb-template.Tpo .deps/passdb-template.Plo
--- passdb-sql.lo ---
mv -f .deps/passdb-sql.Tpo .deps/passdb-sql.Plo
--- userdb.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT userdb.lo -MD -MP -MF .deps/userdb.Tpo -c userdb.c  -fPIC -DPIC -o .libs/userdb.o
--- userdb-checkpassword.lo ---
--- userdb-dict.lo ---
--- userdb-checkpassword.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT userdb-checkpassword.lo -MD -MP -MF .deps/userdb-checkpassword.Tpo -c -o userdb-checkpassword.lo userdb-checkpassword.c
--- userdb-dict.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT userdb-dict.lo -MD -MP -MF .deps/userdb-dict.Tpo -c -o userdb-dict.lo userdb-dict.c
--- userdb-blocking.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT userdb-blocking.lo -MD -MP -MF .deps/userdb-blocking.Tpo -c userdb-blocking.c  -fPIC -DPIC -o .libs/userdb-blocking.o
--- userdb-checkpassword.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT userdb-checkpassword.lo -MD -MP -MF .deps/userdb-checkpassword.Tpo -c userdb-checkpassword.c  -fPIC -DPIC -o .libs/userdb-checkpassword.o
--- userdb-dict.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT userdb-dict.lo -MD -MP -MF .deps/userdb-dict.Tpo -c userdb-dict.c  -fPIC -DPIC -o .libs/userdb-dict.o
--- userdb-blocking.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT userdb-blocking.lo -MD -MP -MF .deps/userdb-blocking.Tpo -c userdb-blocking.c -o userdb-blocking.o >/dev/null 2>&1
--- userdb.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT userdb.lo -MD -MP -MF .deps/userdb.Tpo -c userdb.c -o userdb.o >/dev/null 2>&1
--- userdb-checkpassword.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT userdb-checkpassword.lo -MD -MP -MF .deps/userdb-checkpassword.Tpo -c userdb-checkpassword.c -o userdb-checkpassword.o >/dev/null 2>&1
--- userdb-dict.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT userdb-dict.lo -MD -MP -MF .deps/userdb-dict.Tpo -c userdb-dict.c -o userdb-dict.o >/dev/null 2>&1
--- userdb-checkpassword.lo ---
mv -f .deps/userdb-checkpassword.Tpo .deps/userdb-checkpassword.Plo
--- userdb-passwd.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT userdb-passwd.lo -MD -MP -MF .deps/userdb-passwd.Tpo -c -o userdb-passwd.lo userdb-passwd.c
--- userdb-blocking.lo ---
mv -f .deps/userdb-blocking.Tpo .deps/userdb-blocking.Plo
--- userdb-passwd-file.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT userdb-passwd-file.lo -MD -MP -MF .deps/userdb-passwd-file.Tpo -c -o userdb-passwd-file.lo userdb-passwd-file.c
--- userdb.lo ---
mv -f .deps/userdb.Tpo .deps/userdb.Plo
--- userdb-prefetch.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT userdb-prefetch.lo -MD -MP -MF .deps/userdb-prefetch.Tpo -c -o userdb-prefetch.lo userdb-prefetch.c
--- userdb-dict.lo ---
mv -f .deps/userdb-dict.Tpo .deps/userdb-dict.Plo
--- userdb-static.lo ---
--- userdb-passwd.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT userdb-passwd.lo -MD -MP -MF .deps/userdb-passwd.Tpo -c userdb-passwd.c  -fPIC -DPIC -o .libs/userdb-passwd.o
--- userdb-static.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT userdb-static.lo -MD -MP -MF .deps/userdb-static.Tpo -c -o userdb-static.lo userdb-static.c
--- userdb-passwd-file.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT userdb-passwd-file.lo -MD -MP -MF .deps/userdb-passwd-file.Tpo -c userdb-passwd-file.c  -fPIC -DPIC -o .libs/userdb-passwd-file.o
--- userdb-prefetch.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT userdb-prefetch.lo -MD -MP -MF .deps/userdb-prefetch.Tpo -c userdb-prefetch.c  -fPIC -DPIC -o .libs/userdb-prefetch.o
--- userdb-static.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT userdb-static.lo -MD -MP -MF .deps/userdb-static.Tpo -c userdb-static.c  -fPIC -DPIC -o .libs/userdb-static.o
--- userdb-passwd.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT userdb-passwd.lo -MD -MP -MF .deps/userdb-passwd.Tpo -c userdb-passwd.c -o userdb-passwd.o >/dev/null 2>&1
--- userdb-passwd-file.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT userdb-passwd-file.lo -MD -MP -MF .deps/userdb-passwd-file.Tpo -c userdb-passwd-file.c -o userdb-passwd-file.o >/dev/null 2>&1
--- userdb-prefetch.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT userdb-prefetch.lo -MD -MP -MF .deps/userdb-prefetch.Tpo -c userdb-prefetch.c -o userdb-prefetch.o >/dev/null 2>&1
--- userdb-static.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT userdb-static.lo -MD -MP -MF .deps/userdb-static.Tpo -c userdb-static.c -o userdb-static.o >/dev/null 2>&1
--- userdb-prefetch.lo ---
mv -f .deps/userdb-prefetch.Tpo .deps/userdb-prefetch.Plo
--- userdb-sql.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT userdb-sql.lo -MD -MP -MF .deps/userdb-sql.Tpo -c -o userdb-sql.lo userdb-sql.c
--- userdb-passwd.lo ---
mv -f .deps/userdb-passwd.Tpo .deps/userdb-passwd.Plo
--- userdb-template.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT userdb-template.lo -MD -MP -MF .deps/userdb-template.Tpo -c -o userdb-template.lo userdb-template.c
--- userdb-static.lo ---
mv -f .deps/userdb-static.Tpo .deps/userdb-static.Plo
--- db-ldap.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT db-ldap.lo -MD -MP -MF .deps/db-ldap.Tpo -c -o db-ldap.lo db-ldap.c
--- userdb-passwd-file.lo ---
mv -f .deps/userdb-passwd-file.Tpo .deps/userdb-passwd-file.Plo
--- passdb-ldap.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT passdb-ldap.lo -MD -MP -MF .deps/passdb-ldap.Tpo -c -o passdb-ldap.lo passdb-ldap.c
--- userdb-sql.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT userdb-sql.lo -MD -MP -MF .deps/userdb-sql.Tpo -c userdb-sql.c  -fPIC -DPIC -o .libs/userdb-sql.o
--- userdb-template.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT userdb-template.lo -MD -MP -MF .deps/userdb-template.Tpo -c userdb-template.c  -fPIC -DPIC -o .libs/userdb-template.o
--- db-ldap.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT db-ldap.lo -MD -MP -MF .deps/db-ldap.Tpo -c db-ldap.c  -fPIC -DPIC -o .libs/db-ldap.o
--- passdb-ldap.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT passdb-ldap.lo -MD -MP -MF .deps/passdb-ldap.Tpo -c passdb-ldap.c  -fPIC -DPIC -o .libs/passdb-ldap.o
--- userdb-template.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT userdb-template.lo -MD -MP -MF .deps/userdb-template.Tpo -c userdb-template.c -o userdb-template.o >/dev/null 2>&1
--- userdb-sql.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT userdb-sql.lo -MD -MP -MF .deps/userdb-sql.Tpo -c userdb-sql.c -o userdb-sql.o >/dev/null 2>&1
--- passdb-ldap.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT passdb-ldap.lo -MD -MP -MF .deps/passdb-ldap.Tpo -c passdb-ldap.c -o passdb-ldap.o >/dev/null 2>&1
--- userdb-template.lo ---
mv -f .deps/userdb-template.Tpo .deps/userdb-template.Plo
--- userdb-ldap.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT userdb-ldap.lo -MD -MP -MF .deps/userdb-ldap.Tpo -c -o userdb-ldap.lo userdb-ldap.c
--- userdb-sql.lo ---
mv -f .deps/userdb-sql.Tpo .deps/userdb-sql.Plo
--- db-lua.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT db-lua.lo -MD -MP -MF .deps/db-lua.Tpo -c -o db-lua.lo db-lua.c
--- userdb-ldap.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT userdb-ldap.lo -MD -MP -MF .deps/userdb-ldap.Tpo -c userdb-ldap.c  -fPIC -DPIC -o .libs/userdb-ldap.o
--- db-lua.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT db-lua.lo -MD -MP -MF .deps/db-lua.Tpo -c db-lua.c  -fPIC -DPIC -o .libs/db-lua.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT db-lua.lo -MD -MP -MF .deps/db-lua.Tpo -c db-lua.c -o db-lua.o >/dev/null 2>&1
--- passdb-ldap.lo ---
mv -f .deps/passdb-ldap.Tpo .deps/passdb-ldap.Plo
--- passdb-lua.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT passdb-lua.lo -MD -MP -MF .deps/passdb-lua.Tpo -c -o passdb-lua.lo passdb-lua.c
--- db-lua.lo ---
mv -f .deps/db-lua.Tpo .deps/db-lua.Plo
--- userdb-lua.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT userdb-lua.lo -MD -MP -MF .deps/userdb-lua.Tpo -c -o userdb-lua.lo userdb-lua.c
--- userdb-ldap.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT userdb-ldap.lo -MD -MP -MF .deps/userdb-ldap.Tpo -c userdb-ldap.c -o userdb-ldap.o >/dev/null 2>&1
--- passdb-lua.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT passdb-lua.lo -MD -MP -MF .deps/passdb-lua.Tpo -c passdb-lua.c  -fPIC -DPIC -o .libs/passdb-lua.o
--- userdb-lua.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT userdb-lua.lo -MD -MP -MF .deps/userdb-lua.Tpo -c userdb-lua.c  -fPIC -DPIC -o .libs/userdb-lua.o
--- passdb-lua.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT passdb-lua.lo -MD -MP -MF .deps/passdb-lua.Tpo -c passdb-lua.c -o passdb-lua.o >/dev/null 2>&1
--- userdb-lua.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT userdb-lua.lo -MD -MP -MF .deps/userdb-lua.Tpo -c userdb-lua.c -o userdb-lua.o >/dev/null 2>&1
--- userdb-ldap.lo ---
mv -f .deps/userdb-ldap.Tpo .deps/userdb-ldap.Plo
--- auth-stats.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-stats.lo -MD -MP -MF .deps/auth-stats.Tpo -c -o auth-stats.lo auth-stats.c
--- passdb-lua.lo ---
mv -f .deps/passdb-lua.Tpo .deps/passdb-lua.Plo
--- checkpassword-reply ---
/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 -mfunction-return=keep -Wall -W -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 checkpassword-reply checkpassword_reply-checkpassword-reply.o ../../src/lib-dovecot/libdovecot.la -export-dynamic -pie 
--- userdb-lua.lo ---
mv -f .deps/userdb-lua.Tpo .deps/userdb-lua.Plo
--- libauthdb_imap.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 -mfunction-return=keep -Wall -W -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 libauthdb_imap.la -rpath /usr/local/lib/dovecot/auth libauthdb_imap_la-passdb-imap.lo ../lib-imap-client/libimap_client.la  ../../src/lib-dovecot/libdovecot.la -export-dynamic 
--- db-ldap.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT db-ldap.lo -MD -MP -MF .deps/db-ldap.Tpo -c db-ldap.c -o db-ldap.o >/dev/null 2>&1
--- auth-stats.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-stats.lo -MD -MP -MF .deps/auth-stats.Tpo -c auth-stats.c  -fPIC -DPIC -o .libs/auth-stats.o
--- checkpassword-reply ---
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 -mfunction-return=keep -Wall -W -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/checkpassword-reply checkpassword_reply-checkpassword-reply.o -pie -Wl,--export-dynamic  -L/usr/local/lib ../../src/lib-dovecot/.libs/libdovecot.so -Wl,-rpath -Wl,/usr/local/lib/dovecot
--- libauthdb_imap.la ---
libtool: link: cc -shared  -fPIC -DPIC  .libs/libauthdb_imap_la-passdb-imap.o  -Wl,--whole-archive ../lib-imap-client/.libs/libimap_client.a -Wl,--no-whole-archive  -Wl,-rpath -Wl,/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-dovecot/.libs -Wl,-rpath -Wl,/usr/local/lib/dovecot -L/usr/local/lib ../../src/lib-dovecot/.libs/libdovecot.so  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,libauthdb_imap.so -o .libs/libauthdb_imap.so
--- libpassword.la ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-test  -I../../src/lib-dict  -I../../src/lib-dns  -I../../src/lib-http  -I../../src/lib-sql  -I../../src/lib-settings  -I../../src/lib-old-stats  -I../../src/lib-otp  -I../../src/lib-master  -I../../src/lib-oauth2  -I../../src/lib-ssl-iostream  -I../../src/lib-lua  -I../../src/lib-dcrypt  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DSYSCONFDIR=\""/usr/local/etc/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 -mfunction-return=keep -Wall -W -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  libpassword.la  libpassword_la-crypt-blowfish.lo  libpassword_la-mycrypt.lo libpassword_la-password-scheme.lo  libpassword_la-password-scheme-crypt.lo  libpassword_la-password-scheme-md5crypt.lo  libpassword_la-password-scheme-scram.lo  libpassword_la-password-scheme-otp.lo  libpassword_la-password-scheme-pbkdf2.lo  libpassword_la-password-scheme-sodium.lo  
--- auth-stats.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-dns -I../../src/lib-http -I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-old-stats -I../../src/lib-otp -I../../src/lib-master -I../../src/lib-oauth2 -I../../src/lib-ssl-iostream -I../../src/lib-lua -I../../src/lib-dcrypt -DAUTH_MODULE_DIR=\"/usr/local/lib/dovecot/auth\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DPKG_RUNDIR=\"/var/run/dovecot\" -DSYSCONFDIR=\"/usr/local/etc/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 -mfunction-return=keep -Wall -W -Wmissing-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-stats.lo -MD -MP -MF .deps/auth-stats.Tpo -c auth-stats.c -o auth-stats.o >/dev/null 2>&1
--- libauthdb_imap.la ---
libtool: link: (cd .libs/libauthdb_imap.lax/libimap_client.a && ar x "/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/auth/../lib-imap-client/.libs/libimap_client.a")
libtool: link: ar cr .libs/libauthdb_imap.a  libauthdb_imap_la-passdb-imap.o  .libs/libauthdb_imap.lax/libimap_client.a/imapc-client.o .libs/libauthdb_imap.lax/libimap_client.a/imapc-connection.o .libs/libauthdb_imap.lax/libimap_client.a/imapc-msgmap.o 
libtool: link: ranlib .libs/libauthdb_imap.a
libtool: link: rm -fr .libs/libauthdb_imap.lax
libtool: link: ( cd ".libs" && rm -f "libauthdb_imap.la" && ln -s "../libauthdb_imap.la" "libauthdb_imap.la" )
--- auth-stats.lo ---
mv -f .deps/auth-stats.Tpo .deps/auth-stats.Plo
--- libstats_auth.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 -mfunction-return=keep -Wall -W -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 libstats_auth.la -rpath /usr/local/lib/dovecot/old-stats auth-stats.lo ../../src/lib-dovecot/libdovecot.la -export-dynamic 
--- libpassword.la ---
libtool: link: ar cr .libs/libpassword.a .libs/libpassword_la-crypt-blowfish.o .libs/libpassword_la-mycrypt.o .libs/libpassword_la-password-scheme.o .libs/libpassword_la-password-scheme-crypt.o .libs/libpassword_la-password-scheme-md5crypt.o .libs/libpassword_la-password-scheme-scram.o .libs/libpassword_la-password-scheme-otp.o .libs/libpassword_la-password-scheme-pbkdf2.o .libs/libpassword_la-password-scheme-sodium.o 
--- libstats_auth.la ---
libtool: link: cc -shared  -fPIC -DPIC  .libs/auth-stats.o   -Wl,-rpath -Wl,/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-dovecot/.libs -Wl,-rpath -Wl,/usr/local/lib/dovecot -L/usr/local/lib ../../src/lib-dovecot/.libs/libdovecot.so  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,libstats_auth.so -o .libs/libstats_auth.so
--- libpassword.la ---
libtool: link: ranlib .libs/libpassword.a
libtool: link: ( cd ".libs" && rm -f "libpassword.la" && ln -s "../libpassword.la" "libpassword.la" )
--- test-libpassword ---
/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 -mfunction-return=keep -Wall -W -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-libpassword test_libpassword-test-libpassword.o libpassword.la  ../lib-otp/libotp.la  -lcrypt  ../../src/lib-sql/libsql.la    ../lib-dovecot/libdovecot.la  -pie 
--- libstats_auth.la ---
libtool: link: ar cr .libs/libstats_auth.a  auth-stats.o
libtool: link: ranlib .libs/libstats_auth.a
libtool: link: ( cd ".libs" && rm -f "libstats_auth.la" && ln -s "../libstats_auth.la" "libstats_auth.la" )
--- test-libpassword ---
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 -mfunction-return=keep -Wall -W -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-libpassword test_libpassword-test-libpassword.o -pie  -L/usr/local/lib ./.libs/libpassword.a ../lib-otp/.libs/libotp.a -lcrypt ../../src/lib-sql/.libs/libsql.a -L/usr/local/lib/mysql -lmysqlclient -lpthread -lssl -lcrypto -lm -lrt -lexecinfo -lunwind ../lib-dovecot/.libs/libdovecot.so -Wl,-rpath -Wl,/usr/local/lib/dovecot
--- db-ldap.lo ---
mv -f .deps/db-ldap.Tpo .deps/db-ldap.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 -mfunction-return=keep -Wall -W -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 libauth.la  auth.lo auth-cache.lo  auth-client-connection.lo auth-master-connection.lo  auth-policy.lo mech-otp-common.lo mech-plain-common.lo  auth-penalty.lo auth-request.lo auth-request-fields.lo  auth-request-handler.lo auth-request-stats.lo  auth-request-var-expand.lo auth-settings.lo auth-fields.lo  auth-token.lo auth-worker-client.lo auth-worker-server.lo  db-checkpassword.lo db-dict.lo db-dict-cache-key.lo  db-oauth2.lo db-sql.lo db-passwd-file.lo mech.lo  mech-anonymous.lo mech-plain.lo mech-login.lo mech-cram-md5.lo  mech-digest-md5.lo mech-external.lo mech-gssapi.lo mech-otp.lo  mech-scram.lo mech-apop.lo mech-winbind.lo  mech-dovecot-token.lo mech-oauth2.lo passdb.lo  passdb-blocking.lo passdb-bsdauth.lo passdb-cache.lo  passdb-checkpassword.lo passdb-dict.lo passdb-oauth2.lo  passdb-passwd.lo passdb-passwd-file.lo passdb-pam.lo  passdb-shadow.lo passdb-sql.lo passdb-static.lo  passdb-template.lo userdb.lo userdb-blocking.lo  userdb-checkpassword.lo userdb-dict.lo userdb-passwd.lo  userdb-passwd-file.lo userdb-prefetch.lo userdb-static.lo  userdb-sql.lo userdb-template.lo db-ldap.lo passdb-ldap.lo userdb-ldap.lo  db-lua.lo passdb-lua.lo userdb-lua.lo  
libtool: link: ar cr .libs/libauth.a .libs/auth.o .libs/auth-cache.o .libs/auth-client-connection.o .libs/auth-master-connection.o .libs/auth-policy.o .libs/mech-otp-common.o .libs/mech-plain-common.o .libs/auth-penalty.o .libs/auth-request.o .libs/auth-request-fields.o .libs/auth-request-handler.o .libs/auth-request-stats.o .libs/auth-request-var-expand.o .libs/auth-settings.o .libs/auth-fields.o .libs/auth-token.o .libs/auth-worker-client.o .libs/auth-worker-server.o .libs/db-checkpassword.o .libs/db-dict.o .libs/db-dict-cache-key.o .libs/db-oauth2.o .libs/db-sql.o .libs/db-passwd-file.o .libs/mech.o .libs/mech-anonymous.o .libs/mech-plain.o .libs/mech-login.o .libs/mech-cram-md5.o .libs/mech-digest-md5.o .libs/mech-external.o .libs/mech-gssapi.o .libs/mech-otp.o .libs/mech-scram.o .libs/mech-apop.o .libs/mech-winbind.o .libs/mech-dovecot-token.o .libs/mech-oauth2.o .libs/passdb.o .libs/passdb-blocking.o .libs/passdb-bsdauth.o .libs/passdb-cache.o .libs/passdb-checkpassword.o .libs/passdb-dict.o .libs/passdb-oauth2.o .libs/passdb-passwd.o .libs/passdb-passwd-file.o .libs/passdb-pam.o .libs/passdb-shadow.o .libs/passdb-sql.o .libs/passdb-static.o .libs/passdb-template.o .libs/userdb.o .libs/userdb-blocking.o .libs/userdb-checkpassword.o .libs/userdb-dict.o .libs/userdb-passwd.o .libs/userdb-passwd-file.o .libs/userdb-prefetch.o .libs/userdb-static.o .libs/userdb-sql.o .libs/userdb-template.o .libs/db-ldap.o .libs/passdb-ldap.o .libs/userdb-ldap.o .libs/db-lua.o .libs/passdb-lua.o .libs/userdb-lua.o 
libtool: link: ranlib .libs/libauth.a
libtool: link: ( cd ".libs" && rm -f "libauth.la" && ln -s "../libauth.la" "libauth.la" )
--- 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 -mfunction-return=keep -Wall -W -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   -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o auth auth-main.o libauth.la  libstats_auth.la  libpassword.la  ../lib-otp/libotp.la    ../../src/lib-sql/libsql.la ../../src/lib-dovecot/libdovecot.la -export-dynamic -lcrypt  -lpam -lldap -llber -L/usr/local/lib/mysql -lmysqlclient -lpthread -lssl -lcrypto -lm -lrt -lexecinfo  -L/usr/local/lib  -lunwind -pie  
*** Warning: Linking the executable auth against the loadable module
*** libstats_auth.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 -mfunction-return=keep -Wall -W -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/auth auth-main.o -pie -Wl,--export-dynamic  -L/usr/local/lib ./.libs/libauth.a ./.libs/libstats_auth.so ./.libs/libpassword.a ../lib-otp/.libs/libotp.a ../../src/lib-sql/.libs/libsql.a -L/usr/local/lib/mysql ../../src/lib-dovecot/.libs/libdovecot.so -lcrypt -lpam /usr/local/lib/libldap.so /usr/local/lib/liblber.so -lmysqlclient -lpthread -lssl -lcrypto -lm -lrt -lexecinfo -lunwind -pthread -Wl,-rpath -Wl,/usr/local/lib/dovecot/old-stats -Wl,-rpath -Wl,/usr/local/lib/dovecot -Wl,-rpath -Wl,/usr/local/lib
--- test-auth ---
--- test-auth-cache ---
--- test-mech ---
--- test-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 -mfunction-return=keep -Wall -W -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-auth test-auth-request-var-expand.o  test-auth-request-fields.o  test-username-filter.o test-db-dict.o  test-lua.o test-mock.o test-main.o ../lib-dovecot/libdovecot.la libauth.la  libstats_auth.la  libpassword.la  ../lib-otp/libotp.la    ../../src/lib-sql/libsql.la -lcrypt  -lpam -lldap -llber -L/usr/local/lib/mysql -lmysqlclient -lpthread -lssl -lcrypto -lm -lrt -lexecinfo  -L/usr/local/lib  -lunwind  
--- test-auth-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 -mfunction-return=keep -Wall -W -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-auth-cache test_auth_cache-auth-cache.o  test_auth_cache-test-auth-cache.o ../lib-dovecot/libdovecot.la 
--- test-mech ---
/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 -mfunction-return=keep -Wall -W -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-mech test-mock.o test-mech.o ../lib-dovecot/libdovecot.la libauth.la  libstats_auth.la  libpassword.la  ../lib-otp/libotp.la    ../../src/lib-sql/libsql.la -lcrypt  -lpam -lldap -llber -L/usr/local/lib/mysql -lmysqlclient -lpthread -lssl -lcrypto -lm -lrt -lexecinfo  -L/usr/local/lib  -lunwind  
--- test-auth-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 -mfunction-return=keep -Wall -W -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-auth-cache test_auth_cache-auth-cache.o test_auth_cache-test-auth-cache.o  -L/usr/local/lib ../lib-dovecot/.libs/libdovecot.so -Wl,-rpath -Wl,/usr/local/lib/dovecot
--- test-mech ---
*** Warning: Linking the executable test-mech against the loadable module
*** libstats_auth.so is not portable!
--- test-auth ---
*** Warning: Linking the executable test-auth against the loadable module
*** libstats_auth.so is not portable!
--- test-mech ---
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 -mfunction-return=keep -Wall -W -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-mech test-mock.o test-mech.o  -L/usr/local/lib ../lib-dovecot/.libs/libdovecot.so ./.libs/libauth.a ./.libs/libstats_auth.so ./.libs/libpassword.a ../lib-otp/.libs/libotp.a ../../src/lib-sql/.libs/libsql.a -L/usr/local/lib/mysql -lcrypt -lpam /usr/local/lib/libldap.so /usr/local/lib/liblber.so -lmysqlclient -lpthread -lssl -lcrypto -lm -lrt -lexecinfo -lunwind -pthread -Wl,-rpath -Wl,/usr/local/lib/dovecot -Wl,-rpath -Wl,/usr/local/lib/dovecot/old-stats -Wl,-rpath -Wl,/usr/local/lib
--- test-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 -mfunction-return=keep -Wall -W -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-auth test-auth-request-var-expand.o test-auth-request-fields.o test-username-filter.o test-db-dict.o test-lua.o test-mock.o test-main.o  -L/usr/local/lib ../lib-dovecot/.libs/libdovecot.so ./.libs/libauth.a ./.libs/libstats_auth.so ./.libs/libpassword.a ../lib-otp/.libs/libotp.a ../../src/lib-sql/.libs/libsql.a -L/usr/local/lib/mysql -lcrypt -lpam /usr/local/lib/libldap.so /usr/local/lib/liblber.so -lmysqlclient -lpthread -lssl -lcrypto -lm -lrt -lexecinfo -lunwind -pthread -Wl,-rpath -Wl,/usr/local/lib/dovecot -Wl,-rpath -Wl,/usr/local/lib/dovecot/old-stats -Wl,-rpath -Wl,/usr/local/lib
Making all in dict
--- dict-connection.o ---
--- dict-commands.o ---
--- dict-settings.o ---
--- dict-init-cache.o ---
--- dict-connection.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-dict  -I../../src/lib-sql  -DDICT_MODULE_DIR=\""/usr/local/lib/dovecot/dict"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-connection.o -MD -MP -MF .deps/dict-connection.Tpo -c -o dict-connection.o dict-connection.c
--- dict-commands.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-dict  -I../../src/lib-sql  -DDICT_MODULE_DIR=\""/usr/local/lib/dovecot/dict"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-commands.o -MD -MP -MF .deps/dict-commands.Tpo -c -o dict-commands.o dict-commands.c
--- dict-init-cache.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-dict  -I../../src/lib-sql  -DDICT_MODULE_DIR=\""/usr/local/lib/dovecot/dict"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-init-cache.o -MD -MP -MF .deps/dict-init-cache.Tpo -c -o dict-init-cache.o dict-init-cache.c
--- dict-settings.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-dict  -I../../src/lib-sql  -DDICT_MODULE_DIR=\""/usr/local/lib/dovecot/dict"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-settings.o -MD -MP -MF .deps/dict-settings.Tpo -c -o dict-settings.o dict-settings.c
mv -f .deps/dict-settings.Tpo .deps/dict-settings.Po
--- main.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-dict  -I../../src/lib-sql  -DDICT_MODULE_DIR=\""/usr/local/lib/dovecot/dict"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT main.o -MD -MP -MF .deps/main.Tpo -c -o main.o main.c
--- dict-init-cache.o ---
mv -f .deps/dict-init-cache.Tpo .deps/dict-init-cache.Po
--- dict-connection.o ---
mv -f .deps/dict-connection.Tpo .deps/dict-connection.Po
--- main.o ---
mv -f .deps/main.Tpo .deps/main.Po
--- dict-commands.o ---
mv -f .deps/dict-commands.Tpo .deps/dict-commands.Po
--- 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 -mfunction-return=keep -Wall -W -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  -pie -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o dict dict-connection.o dict-commands.o  dict-settings.o dict-init-cache.o  main.o ../lib-dict-backend/libdict_backend.la  ../../src/lib-sql/libsql.la  ../../src/lib-dovecot/libdovecot.la -export-dynamic  -lldap -llber  -L/usr/local/lib/mysql -lmysqlclient -lpthread -lssl -lcrypto -lm -lrt -lexecinfo  -L/usr/local/lib  -lunwind  -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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -pie -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o .libs/dict dict-connection.o dict-commands.o dict-settings.o dict-init-cache.o main.o -Wl,--export-dynamic  -L/usr/local/lib ../lib-dict-backend/.libs/libdict_backend.a /usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-ldap/.libs/libdovecot-ldap.so /usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-dovecot/.libs/libdovecot.so ../../src/lib-sql/.libs/libsql.a -L/usr/local/lib/mysql ../../src/lib-dovecot/.libs/libdovecot.so /usr/local/lib/libldap.so /usr/local/lib/liblber.so -lmysqlclient -lpthread -lssl -lcrypto -lrt -lexecinfo -lunwind -lm -pthread -Wl,-rpath -Wl,/usr/local/lib/dovecot -Wl,-rpath -Wl,/usr/local/lib
Making all in dns
--- dns-client.o ---
--- dns-client-settings.o ---
--- dns-client.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-master  -I../../src/lib-settings  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-client.o -MD -MP -MF .deps/dns-client.Tpo -c -o dns-client.o dns-client.c
--- dns-client-settings.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-master  -I../../src/lib-settings  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-client-settings.o -MD -MP -MF .deps/dns-client-settings.Tpo -c -o dns-client-settings.o dns-client-settings.c
mv -f .deps/dns-client-settings.Tpo .deps/dns-client-settings.Po
--- dns-client.o ---
mv -f .deps/dns-client.Tpo .deps/dns-client.Po
--- dns-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 -mfunction-return=keep -Wall -W -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 dns-client dns-client.o  dns-client-settings.o ../../src/lib-dovecot/libdovecot.la -export-dynamic  -pie 
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 -mfunction-return=keep -Wall -W -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/dns-client dns-client.o dns-client-settings.o -pie -Wl,--export-dynamic  -L/usr/local/lib ../../src/lib-dovecot/.libs/libdovecot.so -Wl,-rpath -Wl,/usr/local/lib/dovecot
Making all in indexer
--- indexer.o ---
--- indexer-client.o ---
--- indexer-queue.o ---
--- indexer-settings.o ---
--- indexer.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-mail  -I../../src/lib-index  -I../../src/lib-storage  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT indexer.o -MD -MP -MF .deps/indexer.Tpo -c -o indexer.o indexer.c
--- indexer-client.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-mail  -I../../src/lib-index  -I../../src/lib-storage  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT indexer-client.o -MD -MP -MF .deps/indexer-client.Tpo -c -o indexer-client.o indexer-client.c
--- indexer-queue.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-mail  -I../../src/lib-index  -I../../src/lib-storage  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT indexer-queue.o -MD -MP -MF .deps/indexer-queue.Tpo -c -o indexer-queue.o indexer-queue.c
--- indexer-settings.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-mail  -I../../src/lib-index  -I../../src/lib-storage  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT indexer-settings.o -MD -MP -MF .deps/indexer-settings.Tpo -c -o indexer-settings.o indexer-settings.c
mv -f .deps/indexer-settings.Tpo .deps/indexer-settings.Po
--- worker-connection.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-mail  -I../../src/lib-index  -I../../src/lib-storage  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT worker-connection.o -MD -MP -MF .deps/worker-connection.Tpo -c -o worker-connection.o worker-connection.c
--- indexer.o ---
mv -f .deps/indexer.Tpo .deps/indexer.Po
--- worker-pool.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-mail  -I../../src/lib-index  -I../../src/lib-storage  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT worker-pool.o -MD -MP -MF .deps/worker-pool.Tpo -c -o worker-pool.o worker-pool.c
--- indexer-client.o ---
mv -f .deps/indexer-client.Tpo .deps/indexer-client.Po
--- indexer-worker.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-mail  -I../../src/lib-index  -I../../src/lib-storage  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT indexer-worker.o -MD -MP -MF .deps/indexer-worker.Tpo -c -o indexer-worker.o indexer-worker.c
--- indexer-queue.o ---
mv -f .deps/indexer-queue.Tpo .deps/indexer-queue.Po
--- indexer-worker-settings.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-mail  -I../../src/lib-index  -I../../src/lib-storage  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT indexer-worker-settings.o -MD -MP -MF .deps/indexer-worker-settings.Tpo -c -o indexer-worker-settings.o indexer-worker-settings.c
--- worker-connection.o ---
mv -f .deps/worker-connection.Tpo .deps/worker-connection.Po
--- master-connection.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-master  -I../../src/lib-settings  -I../../src/lib-mail  -I../../src/lib-index  -I../../src/lib-storage  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-connection.o -MD -MP -MF .deps/master-connection.Tpo -c -o master-connection.o master-connection.c
--- worker-pool.o ---
mv -f .deps/worker-pool.Tpo .deps/worker-pool.Po
--- indexer ---
/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 -mfunction-return=keep -Wall -W -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 indexer indexer.o indexer-client.o  indexer-queue.o indexer-settings.o  worker-connection.o worker-pool.o ../../src/lib-dovecot/libdovecot.la -export-dynamic  -pie 
--- indexer-worker.o ---
mv -f .deps/indexer-worker.Tpo .deps/indexer-worker.Po
--- indexer-worker-settings.o ---
mv -f .deps/indexer-worker-settings.Tpo .deps/indexer-worker-settings.Po
--- indexer ---
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 -mfunction-return=keep -Wall -W -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/indexer indexer.o indexer-client.o indexer-queue.o indexer-settings.o worker-connection.o worker-pool.o -pie -Wl,--export-dynamic  -L/usr/local/lib ../../src/lib-dovecot/.libs/libdovecot.so -Wl,-rpath -Wl,/usr/local/lib/dovecot
--- master-connection.o ---
mv -f .deps/master-connection.Tpo .deps/master-connection.Po
--- indexer-worker ---
/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 -mfunction-return=keep -Wall -W -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 indexer-worker indexer-worker.o  indexer-worker-settings.o master-connection.o ../../src/lib-storage/libdovecot-storage.la ../../src/lib-imap-storage/libimap-storage.la  ../../src/lib-dovecot/libdovecot.la -export-dynamic  -pie 
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 -mfunction-return=keep -Wall -W -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/indexer-worker indexer-worker.o indexer-worker-settings.o master-connection.o -pie -Wl,--export-dynamic  -L/usr/local/lib ../../src/lib-storage/.libs/libdovecot-storage.so ../../src/lib-imap-storage/.libs/libimap-storage.a ../../src/lib-dovecot/.libs/libdovecot.so -Wl,-rpath -Wl,/usr/local/lib/dovecot
Making all in ipc
--- client.o ---
--- main.o ---
--- ipc-connection.o ---
--- ipc-group.o ---
--- client.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-master  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT client.o -MD -MP -MF .deps/client.Tpo -c -o client.o client.c
--- main.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-master  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT main.o -MD -MP -MF .deps/main.Tpo -c -o main.o main.c
--- ipc-connection.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-master  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-connection.o -MD -MP -MF .deps/ipc-connection.Tpo -c -o ipc-connection.o ipc-connection.c
--- ipc-group.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-master  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-group.o -MD -MP -MF .deps/ipc-group.Tpo -c -o ipc-group.o ipc-group.c
--- main.o ---
mv -f .deps/main.Tpo .deps/main.Po
--- ipc-settings.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-master  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-settings.o -MD -MP -MF .deps/ipc-settings.Tpo -c -o ipc-settings.o ipc-settings.c
--- client.o ---
mv -f .deps/client.Tpo .deps/client.Po
--- ipc-group.o ---
mv -f .deps/ipc-group.Tpo .deps/ipc-group.Po
--- ipc-settings.o ---
mv -f .deps/ipc-settings.Tpo .deps/ipc-settings.Po
--- ipc-connection.o ---
mv -f .deps/ipc-connection.Tpo .deps/ipc-connection.Po
--- ipc ---
/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 -mfunction-return=keep -Wall -W -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 ipc client.o main.o  ipc-connection.o ipc-group.o  ipc-settings.o ../../src/lib-dovecot/libdovecot.la -export-dynamic  -pie 
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 -mfunction-return=keep -Wall -W -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/ipc client.o main.o ipc-connection.o ipc-group.o ipc-settings.o -pie -Wl,--export-dynamic  -L/usr/local/lib ../../src/lib-dovecot/.libs/libdovecot.so -Wl,-rpath -Wl,/usr/local/lib/dovecot
Making all in master
--- test-auth-client.o ---
--- test-auth-master.o ---
--- test-master-login-auth.o ---
--- capabilities-posix.o ---
--- test-auth-client.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-settings  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-client.o -MD -MP -MF .deps/test-auth-client.Tpo -c -o test-auth-client.o test-auth-client.c
--- test-auth-master.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-settings  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
--- test-master-login-auth.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-settings  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-login-auth.o -MD -MP -MF .deps/test-master-login-auth.Tpo -c -o test-master-login-auth.o test-master-login-auth.c
--- capabilities-posix.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-settings  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT capabilities-posix.o -MD -MP -MF .deps/capabilities-posix.Tpo -c -o capabilities-posix.o capabilities-posix.c
mv -f .deps/capabilities-posix.Tpo .deps/capabilities-posix.Po
--- dup2-array.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-settings  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dup2-array.o -MD -MP -MF .deps/dup2-array.Tpo -c -o dup2-array.o dup2-array.c
mv -f .deps/dup2-array.Tpo .deps/dup2-array.Po
--- main.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-settings  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT main.o -MD -MP -MF .deps/main.Tpo -c -o main.o main.c
--- test-master-login-auth.o ---
mv -f .deps/test-master-login-auth.Tpo .deps/test-master-login-auth.Po
--- master-client.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-settings  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-client.o -MD -MP -MF .deps/master-client.Tpo -c -o master-client.o master-client.c
--- test-auth-client.o ---
mv -f .deps/test-auth-client.Tpo .deps/test-auth-client.Po
--- master-settings.o ---
--- test-auth-master.o ---
mv -f .deps/test-auth-master.Tpo .deps/test-auth-master.Po
--- master-settings.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-settings  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-settings.o -MD -MP -MF .deps/master-settings.Tpo -c -o master-settings.o master-settings.c
--- service-anvil.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-settings  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT service-anvil.o -MD -MP -MF .deps/service-anvil.Tpo -c -o service-anvil.o service-anvil.c
--- master-client.o ---
mv -f .deps/master-client.Tpo .deps/master-client.Po
--- service-listen.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-settings  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT service-listen.o -MD -MP -MF .deps/service-listen.Tpo -c -o service-listen.o service-listen.c
--- main.o ---
mv -f .deps/main.Tpo .deps/main.Po
--- service-log.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-settings  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT service-log.o -MD -MP -MF .deps/service-log.Tpo -c -o service-log.o service-log.c
--- service-anvil.o ---
mv -f .deps/service-anvil.Tpo .deps/service-anvil.Po
--- service-monitor.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-settings  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT service-monitor.o -MD -MP -MF .deps/service-monitor.Tpo -c -o service-monitor.o service-monitor.c
--- service-log.o ---
mv -f .deps/service-log.Tpo .deps/service-log.Po
--- service-process.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-settings  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT service-process.o -MD -MP -MF .deps/service-process.Tpo -c -o service-process.o service-process.c
--- service-listen.o ---
mv -f .deps/service-listen.Tpo .deps/service-listen.Po
--- service-process-notify.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-settings  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT service-process-notify.o -MD -MP -MF .deps/service-process-notify.Tpo -c -o service-process-notify.o service-process-notify.c
--- master-settings.o ---
mv -f .deps/master-settings.Tpo .deps/master-settings.Po
--- service.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-settings  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT service.o -MD -MP -MF .deps/service.Tpo -c -o service.o service.c
--- service-process-notify.o ---
mv -f .deps/service-process-notify.Tpo .deps/service-process-notify.Po
--- test-master-login-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 -mfunction-return=keep -Wall -W -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-login-auth test-master-login-auth.o ../lib-auth/libauth.la  ../lib-master/libmaster.la  ../lib-auth/libauth.la  ../lib-dns/libdns.la  ../lib-ssl-iostream/libssl_iostream.la  ../lib-settings/libsettings.la  ../lib-test/libtest.la  ../lib/liblib.la  -export-dynamic 
--- service-process.o ---
mv -f .deps/service-process.Tpo .deps/service-process.Po
--- test-auth-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 -mfunction-return=keep -Wall -W -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-client test-auth-client.o ../lib-auth/libauth.la  ../lib-master/libmaster.la  ../lib-auth/libauth.la  ../lib-dns/libdns.la  ../lib-ssl-iostream/libssl_iostream.la  ../lib-settings/libsettings.la  ../lib-test/libtest.la  ../lib/liblib.la  -export-dynamic 
--- service-monitor.o ---
mv -f .deps/service-monitor.Tpo .deps/service-monitor.Po
--- 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 -mfunction-return=keep -Wall -W -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 ../lib-auth/libauth.la  ../lib-master/libmaster.la  ../lib-auth/libauth.la  ../lib-dns/libdns.la  ../lib-ssl-iostream/libssl_iostream.la  ../lib-settings/libsettings.la  ../lib-test/libtest.la  ../lib/liblib.la  -export-dynamic 
--- test-master-login-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 -mfunction-return=keep -Wall -W -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-login-auth test-master-login-auth.o -Wl,--export-dynamic  -L/usr/local/lib ../lib-master/.libs/libmaster.a ../lib-auth/.libs/libauth.a ../lib-dns/.libs/libdns.a ../lib-ssl-iostream/.libs/libssl_iostream.a ../lib-settings/.libs/libsettings.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a
--- service.o ---
mv -f .deps/service.Tpo .deps/service.Po
--- dovecot ---
/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 -mfunction-return=keep -Wall -W -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 dovecot capabilities-posix.o dup2-array.o  main.o master-client.o  master-settings.o service-anvil.o  service-listen.o service-log.o  service-monitor.o service-process.o  service-process-notify.o service.o     ../../src/lib-dovecot/libdovecot.la -export-dynamic  -pie 
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 -mfunction-return=keep -Wall -W -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/dovecot capabilities-posix.o dup2-array.o main.o master-client.o master-settings.o service-anvil.o service-listen.o service-log.o service-monitor.o service-process.o service-process-notify.o service.o -pie -Wl,--export-dynamic  -L/usr/local/lib ../../src/lib-dovecot/.libs/libdovecot.so -Wl,-rpath -Wl,/usr/local/lib/dovecot
--- test-auth-client ---
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 -mfunction-return=keep -Wall -W -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-client test-auth-client.o -Wl,--export-dynamic  -L/usr/local/lib ../lib-master/.libs/libmaster.a ../lib-auth/.libs/libauth.a ../lib-dns/.libs/libdns.a ../lib-ssl-iostream/.libs/libssl_iostream.a ../lib-settings/.libs/libsettings.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a
--- test-auth-master ---
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 -mfunction-return=keep -Wall -W -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 ../lib-master/.libs/libmaster.a ../lib-auth/.libs/libauth.a ../lib-dns/.libs/libdns.a ../lib-ssl-iostream/.libs/libssl_iostream.a ../lib-settings/.libs/libsettings.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a
Making all in login-common
--- access-lookup.lo ---
--- client-common.lo ---
--- client-common-auth.lo ---
--- login-proxy.lo ---
--- access-lookup.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-sasl  -I../../src/lib-master  -I../../src/lib-ssl-iostream  -I../../src/lib-mail  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DMODULEDIR=\""/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT access-lookup.lo -MD -MP -MF .deps/access-lookup.Tpo -c -o access-lookup.lo access-lookup.c
--- client-common.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-sasl  -I../../src/lib-master  -I../../src/lib-ssl-iostream  -I../../src/lib-mail  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DMODULEDIR=\""/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT client-common.lo -MD -MP -MF .deps/client-common.Tpo -c -o client-common.lo client-common.c
--- client-common-auth.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-sasl  -I../../src/lib-master  -I../../src/lib-ssl-iostream  -I../../src/lib-mail  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DMODULEDIR=\""/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT client-common-auth.lo -MD -MP -MF .deps/client-common-auth.Tpo -c -o client-common-auth.lo client-common-auth.c
--- login-proxy.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-sasl  -I../../src/lib-master  -I../../src/lib-ssl-iostream  -I../../src/lib-mail  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DMODULEDIR=\""/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT login-proxy.lo -MD -MP -MF .deps/login-proxy.Tpo -c -o login-proxy.lo login-proxy.c
--- client-common-auth.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I../../src/lib-auth -I../../src/lib-sasl -I../../src/lib-master -I../../src/lib-ssl-iostream -I../../src/lib-mail -DPKG_STATEDIR=\"/var/db/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT client-common-auth.lo -MD -MP -MF .deps/client-common-auth.Tpo -c client-common-auth.c  -fPIC -DPIC -o .libs/client-common-auth.o
--- login-proxy.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I../../src/lib-auth -I../../src/lib-sasl -I../../src/lib-master -I../../src/lib-ssl-iostream -I../../src/lib-mail -DPKG_STATEDIR=\"/var/db/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT login-proxy.lo -MD -MP -MF .deps/login-proxy.Tpo -c login-proxy.c  -fPIC -DPIC -o .libs/login-proxy.o
--- client-common.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I../../src/lib-auth -I../../src/lib-sasl -I../../src/lib-master -I../../src/lib-ssl-iostream -I../../src/lib-mail -DPKG_STATEDIR=\"/var/db/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT client-common.lo -MD -MP -MF .deps/client-common.Tpo -c client-common.c  -fPIC -DPIC -o .libs/client-common.o
--- access-lookup.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I../../src/lib-auth -I../../src/lib-sasl -I../../src/lib-master -I../../src/lib-ssl-iostream -I../../src/lib-mail -DPKG_STATEDIR=\"/var/db/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT access-lookup.lo -MD -MP -MF .deps/access-lookup.Tpo -c access-lookup.c  -fPIC -DPIC -o .libs/access-lookup.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I../../src/lib-auth -I../../src/lib-sasl -I../../src/lib-master -I../../src/lib-ssl-iostream -I../../src/lib-mail -DPKG_STATEDIR=\"/var/db/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT access-lookup.lo -MD -MP -MF .deps/access-lookup.Tpo -c access-lookup.c -o access-lookup.o >/dev/null 2>&1
mv -f .deps/access-lookup.Tpo .deps/access-lookup.Plo
--- login-proxy-state.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-sasl  -I../../src/lib-master  -I../../src/lib-ssl-iostream  -I../../src/lib-mail  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DMODULEDIR=\""/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT login-proxy-state.lo -MD -MP -MF .deps/login-proxy-state.Tpo -c -o login-proxy-state.lo login-proxy-state.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I../../src/lib-auth -I../../src/lib-sasl -I../../src/lib-master -I../../src/lib-ssl-iostream -I../../src/lib-mail -DPKG_STATEDIR=\"/var/db/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT login-proxy-state.lo -MD -MP -MF .deps/login-proxy-state.Tpo -c login-proxy-state.c  -fPIC -DPIC -o .libs/login-proxy-state.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I../../src/lib-auth -I../../src/lib-sasl -I../../src/lib-master -I../../src/lib-ssl-iostream -I../../src/lib-mail -DPKG_STATEDIR=\"/var/db/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT login-proxy-state.lo -MD -MP -MF .deps/login-proxy-state.Tpo -c login-proxy-state.c -o login-proxy-state.o >/dev/null 2>&1
--- client-common-auth.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I../../src/lib-auth -I../../src/lib-sasl -I../../src/lib-master -I../../src/lib-ssl-iostream -I../../src/lib-mail -DPKG_STATEDIR=\"/var/db/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT client-common-auth.lo -MD -MP -MF .deps/client-common-auth.Tpo -c client-common-auth.c -o client-common-auth.o >/dev/null 2>&1
--- login-proxy.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I../../src/lib-auth -I../../src/lib-sasl -I../../src/lib-master -I../../src/lib-ssl-iostream -I../../src/lib-mail -DPKG_STATEDIR=\"/var/db/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT login-proxy.lo -MD -MP -MF .deps/login-proxy.Tpo -c login-proxy.c -o login-proxy.o >/dev/null 2>&1
--- client-common.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I../../src/lib-auth -I../../src/lib-sasl -I../../src/lib-master -I../../src/lib-ssl-iostream -I../../src/lib-mail -DPKG_STATEDIR=\"/var/db/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT client-common.lo -MD -MP -MF .deps/client-common.Tpo -c client-common.c -o client-common.o >/dev/null 2>&1
--- login-proxy-state.lo ---
mv -f .deps/login-proxy-state.Tpo .deps/login-proxy-state.Plo
--- login-settings.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-sasl  -I../../src/lib-master  -I../../src/lib-ssl-iostream  -I../../src/lib-mail  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DMODULEDIR=\""/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT login-settings.lo -MD -MP -MF .deps/login-settings.Tpo -c -o login-settings.lo login-settings.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I../../src/lib-auth -I../../src/lib-sasl -I../../src/lib-master -I../../src/lib-ssl-iostream -I../../src/lib-mail -DPKG_STATEDIR=\"/var/db/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT login-settings.lo -MD -MP -MF .deps/login-settings.Tpo -c login-settings.c  -fPIC -DPIC -o .libs/login-settings.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I../../src/lib-auth -I../../src/lib-sasl -I../../src/lib-master -I../../src/lib-ssl-iostream -I../../src/lib-mail -DPKG_STATEDIR=\"/var/db/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT login-settings.lo -MD -MP -MF .deps/login-settings.Tpo -c login-settings.c -o login-settings.o >/dev/null 2>&1
--- client-common-auth.lo ---
mv -f .deps/client-common-auth.Tpo .deps/client-common-auth.Plo
--- main.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-sasl  -I../../src/lib-master  -I../../src/lib-ssl-iostream  -I../../src/lib-mail  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DMODULEDIR=\""/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT main.lo -MD -MP -MF .deps/main.Tpo -c -o main.lo main.c
--- login-settings.lo ---
mv -f .deps/login-settings.Tpo .deps/login-settings.Plo
--- sasl-server.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-sasl  -I../../src/lib-master  -I../../src/lib-ssl-iostream  -I../../src/lib-mail  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DMODULEDIR=\""/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT sasl-server.lo -MD -MP -MF .deps/sasl-server.Tpo -c -o sasl-server.lo sasl-server.c
--- main.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I../../src/lib-auth -I../../src/lib-sasl -I../../src/lib-master -I../../src/lib-ssl-iostream -I../../src/lib-mail -DPKG_STATEDIR=\"/var/db/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT main.lo -MD -MP -MF .deps/main.Tpo -c main.c  -fPIC -DPIC -o .libs/main.o
--- login-proxy.lo ---
mv -f .deps/login-proxy.Tpo .deps/login-proxy.Plo
--- sasl-server.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I../../src/lib-auth -I../../src/lib-sasl -I../../src/lib-master -I../../src/lib-ssl-iostream -I../../src/lib-mail -DPKG_STATEDIR=\"/var/db/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT sasl-server.lo -MD -MP -MF .deps/sasl-server.Tpo -c sasl-server.c  -fPIC -DPIC -o .libs/sasl-server.o
--- client-common.lo ---
mv -f .deps/client-common.Tpo .deps/client-common.Plo
--- main.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I../../src/lib-auth -I../../src/lib-sasl -I../../src/lib-master -I../../src/lib-ssl-iostream -I../../src/lib-mail -DPKG_STATEDIR=\"/var/db/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT main.lo -MD -MP -MF .deps/main.Tpo -c main.c -o main.o >/dev/null 2>&1
--- sasl-server.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I../../src/lib-auth -I../../src/lib-sasl -I../../src/lib-master -I../../src/lib-ssl-iostream -I../../src/lib-mail -DPKG_STATEDIR=\"/var/db/dovecot\" -DMODULEDIR=\"/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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT sasl-server.lo -MD -MP -MF .deps/sasl-server.Tpo -c sasl-server.c -o sasl-server.o >/dev/null 2>&1
--- main.lo ---
mv -f .deps/main.Tpo .deps/main.Plo
--- sasl-server.lo ---
mv -f .deps/sasl-server.Tpo .deps/sasl-server.Plo
--- liblogin.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 -mfunction-return=keep -Wall -W -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 liblogin.la  access-lookup.lo client-common.lo  client-common-auth.lo login-proxy.lo login-proxy-state.lo  login-settings.lo main.lo sasl-server.lo  
libtool: link: ar cr .libs/liblogin.a .libs/access-lookup.o .libs/client-common.o .libs/client-common-auth.o .libs/login-proxy.o .libs/login-proxy-state.o .libs/login-settings.o .libs/main.o .libs/sasl-server.o 
libtool: link: ranlib .libs/liblogin.a
libtool: link: ( cd ".libs" && rm -f "liblogin.la" && ln -s "../liblogin.la" "liblogin.la" )
--- libdovecot-login.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 -mfunction-return=keep -Wall -W -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 libdovecot-login.la -rpath /usr/local/lib/dovecot  liblogin.la ../lib-dovecot/libdovecot.la -L/usr/local/lib -lssl -lcrypto 
libtool: link: cc -shared  -fPIC -DPIC  -Wl,--whole-archive ./.libs/liblogin.a -Wl,--no-whole-archive  -Wl,-rpath -Wl,/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-dovecot/.libs -Wl,-rpath -Wl,/usr/local/lib/dovecot -L/usr/local/lib ../lib-dovecot/.libs/libdovecot.so -lssl -lcrypto  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,libdovecot-login.so.0 -o .libs/libdovecot-login.so.0.0.0
libtool: link: (cd ".libs" && rm -f "libdovecot-login.so.0" && ln -s "libdovecot-login.so.0.0.0" "libdovecot-login.so.0")
libtool: link: (cd ".libs" && rm -f "libdovecot-login.so" && ln -s "libdovecot-login.so.0.0.0" "libdovecot-login.so")
libtool: link: (cd .libs/libdovecot-login.lax/liblogin.a && ar x "/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/login-common/./.libs/liblogin.a")
libtool: link: ar cr .libs/libdovecot-login.a   .libs/libdovecot-login.lax/liblogin.a/access-lookup.o .libs/libdovecot-login.lax/liblogin.a/client-common-auth.o .libs/libdovecot-login.lax/liblogin.a/client-common.o .libs/libdovecot-login.lax/liblogin.a/login-proxy-state.o .libs/libdovecot-login.lax/liblogin.a/login-proxy.o .libs/libdovecot-login.lax/liblogin.a/login-settings.o .libs/libdovecot-login.lax/liblogin.a/main.o .libs/libdovecot-login.lax/liblogin.a/sasl-server.o 
libtool: link: ranlib .libs/libdovecot-login.a
libtool: link: rm -fr .libs/libdovecot-login.lax
libtool: link: ( cd ".libs" && rm -f "libdovecot-login.la" && ln -s "../libdovecot-login.la" "libdovecot-login.la" )
Making all in imap-hibernate
--- imap-client.o ---
--- imap-hibernate-client.o ---
--- imap-hibernate-settings.o ---
--- imap-master-connection.o ---
--- imap-client.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-imap  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-client.o -MD -MP -MF .deps/imap-client.Tpo -c -o imap-client.o imap-client.c
--- imap-hibernate-client.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-imap  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-hibernate-client.o -MD -MP -MF .deps/imap-hibernate-client.Tpo -c -o imap-hibernate-client.o imap-hibernate-client.c
--- imap-hibernate-settings.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-imap  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-hibernate-settings.o -MD -MP -MF .deps/imap-hibernate-settings.Tpo -c -o imap-hibernate-settings.o imap-hibernate-settings.c
--- imap-master-connection.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-imap  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-master-connection.o -MD -MP -MF .deps/imap-master-connection.Tpo -c -o imap-master-connection.o imap-master-connection.c
--- imap-hibernate-settings.o ---
mv -f .deps/imap-hibernate-settings.Tpo .deps/imap-hibernate-settings.Po
--- main.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-imap  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT main.o -MD -MP -MF .deps/main.Tpo -c -o main.o main.c
--- imap-master-connection.o ---
mv -f .deps/imap-master-connection.Tpo .deps/imap-master-connection.Po
--- main.o ---
mv -f .deps/main.Tpo .deps/main.Po
--- imap-hibernate-client.o ---
mv -f .deps/imap-hibernate-client.Tpo .deps/imap-hibernate-client.Po
--- imap-client.o ---
mv -f .deps/imap-client.Tpo .deps/imap-client.Po
--- imap-hibernate ---
/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 -mfunction-return=keep -Wall -W -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 imap-hibernate imap-client.o  imap-hibernate-client.o  imap-hibernate-settings.o  imap-master-connection.o main.o ../../src/lib-dovecot/libdovecot.la -export-dynamic  -pie 
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 -mfunction-return=keep -Wall -W -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/imap-hibernate imap-client.o imap-hibernate-client.o imap-hibernate-settings.o imap-master-connection.o main.o -pie -Wl,--export-dynamic  -L/usr/local/lib ../../src/lib-dovecot/.libs/libdovecot.so -Wl,-rpath -Wl,/usr/local/lib/dovecot
Making all in imap-login
--- imap-login-client.o ---
--- client-authenticate.o ---
--- imap-login-cmd-id.o ---
--- imap-login-commands.o ---
--- imap-login-client.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-sasl  -I../../src/lib-imap  -I../../src/lib-master  -I../../src/login-common  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-login-client.o -MD -MP -MF .deps/imap-login-client.Tpo -c -o imap-login-client.o imap-login-client.c
--- client-authenticate.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-sasl  -I../../src/lib-imap  -I../../src/lib-master  -I../../src/login-common  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT client-authenticate.o -MD -MP -MF .deps/client-authenticate.Tpo -c -o client-authenticate.o client-authenticate.c
--- imap-login-cmd-id.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-sasl  -I../../src/lib-imap  -I../../src/lib-master  -I../../src/login-common  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-login-cmd-id.o -MD -MP -MF .deps/imap-login-cmd-id.Tpo -c -o imap-login-cmd-id.o imap-login-cmd-id.c
--- imap-login-commands.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-sasl  -I../../src/lib-imap  -I../../src/lib-master  -I../../src/login-common  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-login-commands.o -MD -MP -MF .deps/imap-login-commands.Tpo -c -o imap-login-commands.o imap-login-commands.c
mv -f .deps/imap-login-commands.Tpo .deps/imap-login-commands.Po
--- imap-login-settings.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-sasl  -I../../src/lib-imap  -I../../src/lib-master  -I../../src/login-common  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-login-settings.o -MD -MP -MF .deps/imap-login-settings.Tpo -c -o imap-login-settings.o imap-login-settings.c
--- client-authenticate.o ---
mv -f .deps/client-authenticate.Tpo .deps/client-authenticate.Po
--- imap-proxy.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-sasl  -I../../src/lib-imap  -I../../src/lib-master  -I../../src/login-common  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-proxy.o -MD -MP -MF .deps/imap-proxy.Tpo -c -o imap-proxy.o imap-proxy.c
--- imap-login-cmd-id.o ---
mv -f .deps/imap-login-cmd-id.Tpo .deps/imap-login-cmd-id.Po
--- imap-login-settings.o ---
mv -f .deps/imap-login-settings.Tpo .deps/imap-login-settings.Po
--- imap-login-client.o ---
mv -f .deps/imap-login-client.Tpo .deps/imap-login-client.Po
--- imap-proxy.o ---
mv -f .deps/imap-proxy.Tpo .deps/imap-proxy.Po
--- imap-login ---
/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 -mfunction-return=keep -Wall -W -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 imap-login imap-login-client.o  client-authenticate.o imap-login-cmd-id.o  imap-login-commands.o imap-login-settings.o  imap-proxy.o ../../src/login-common/libdovecot-login.la  ../../src/lib-dovecot/libdovecot.la -export-dynamic  -L/usr/local/lib -lssl -lcrypto  -pie 
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 -mfunction-return=keep -Wall -W -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/imap-login imap-login-client.o client-authenticate.o imap-login-cmd-id.o imap-login-commands.o imap-login-settings.o imap-proxy.o -pie -Wl,--export-dynamic  -L/usr/local/lib ../../src/login-common/.libs/libdovecot-login.so ../../src/lib-dovecot/.libs/libdovecot.so -lssl -lcrypto -Wl,-rpath -Wl,/usr/local/lib/dovecot
Making all in imap
--- test-imap-client-hibernate.o ---
--- cmd-append.o ---
--- cmd-capability.o ---
--- cmd-cancelupdate.o ---
--- test-imap-client-hibernate.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-dict  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-imap-urlauth  -I../../src/lib-imap-storage  -I../../src/lib-index  -I../../src/lib-storage  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-imap-client-hibernate.o -MD -MP -MF .deps/test-imap-client-hibernate.Tpo -c -o test-imap-client-hibernate.o test-imap-client-hibernate.c
--- cmd-append.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-dict  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-imap-urlauth  -I../../src/lib-imap-storage  -I../../src/lib-index  -I../../src/lib-storage  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT cmd-append.o -MD -MP -MF .deps/cmd-append.Tpo -c -o cmd-append.o cmd-append.c
--- cmd-capability.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-dict  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-imap-urlauth  -I../../src/lib-imap-storage  -I../../src/lib-index  -I../../src/lib-storage  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT cmd-capability.o -MD -MP -MF .deps/cmd-capability.Tpo -c -o cmd-capability.o cmd-capability.c
--- cmd-cancelupdate.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-dict  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-imap-urlauth  -I../../src/lib-imap-storage  -I../../src/lib-index  -I../../src/lib-storage  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT cmd-cancelupdate.o -MD -MP -MF .deps/cmd-cancelupdate.Tpo -c -o cmd-cancelupdate.o cmd-cancelupdate.c
--- cmd-capability.o ---
mv -f .deps/cmd-capability.Tpo .deps/cmd-capability.Po
--- cmd-check.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-dict  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-imap-urlauth  -I../../src/lib-imap-storage  -I../../src/lib-index  -I../../src/lib-storage  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT cmd-check.o -MD -MP -MF .deps/cmd-check.Tpo -c -o cmd-check.o cmd-check.c
--- cmd-cancelupdate.o ---
mv -f .deps/cmd-cancelupdate.Tpo .deps/cmd-cancelupdate.Po
--- cmd-close.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-dict  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-imap-urlauth  -I../../src/lib-imap-storage  -I../../src/lib-index  -I../../src/lib-storage  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT cmd-close.o -MD -MP -MF .deps/cmd-close.Tpo -c -o cmd-close.o cmd-close.c
--- cmd-check.o ---
mv -f .deps/cmd-check.Tpo .deps/cmd-check.Po
--- cmd-copy.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-dict  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-imap-urlauth  -I../../src/lib-imap-storage  -I../../src/lib-index  -I../../src/lib-storage  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT cmd-copy.o -MD -MP -MF .deps/cmd-copy.Tpo -c -o cmd-copy.o cmd-copy.c
--- test-imap-client-hibernate.o ---
mv -f .deps/test-imap-client-hibernate.Tpo .deps/test-imap-client-hibernate.Po
--- cmd-create.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-dict  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-imap-urlauth  -I../../src/lib-imap-storage  -I../../src/lib-index  -I../../src/lib-storage  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT cmd-create.o -MD -MP -MF .deps/cmd-create.Tpo -c -o cmd-create.o cmd-create.c
--- cmd-close.o ---
mv -f .deps/cmd-close.Tpo .deps/cmd-close.Po
--- cmd-delete.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-dict  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-imap-urlauth  -I../../src/lib-imap-storage  -I../../src/lib-index  -I../../src/lib-storage  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT cmd-delete.o -MD -MP -MF .deps/cmd-delete.Tpo -c -o cmd-delete.o cmd-delete.c
--- cmd-create.o ---
mv -f .deps/cmd-create.Tpo .deps/cmd-create.Po
--- cmd-enable.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-dict  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-imap-urlauth  -I../../src/lib-imap-storage  -I../../src/lib-index  -I../../src/lib-storage  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT cmd-enable.o -MD -MP -MF .deps/cmd-enable.Tpo -c -o cmd-enable.o cmd-enable.c
--- cmd-delete.o ---
mv -f .deps/cmd-delete.Tpo .deps/cmd-delete.Po
--- cmd-examine.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-dict  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-imap-urlauth  -I../../src/lib-imap-storage  -I../../src/lib-index  -I../../src/lib-storage  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT cmd-examine.o -MD -MP -MF .deps/cmd-examine.Tpo -c -o cmd-examine.o cmd-examine.c
--- cmd-append.o ---
mv -f .deps/cmd-append.Tpo .deps/cmd-append.Po
--- cmd-expunge.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-dict  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-imap-urlauth  -I../../src/lib-imap-storage  -I../../src/lib-index  -I../../src/lib-storage  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT cmd-expunge.o -MD -MP -MF .deps/cmd-expunge.Tpo -c -o cmd-expunge.o cmd-expunge.c
--- cmd-examine.o ---
mv -f .deps/cmd-examine.Tpo .deps/cmd-examine.Po
--- cmd-fetch.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-dict  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-imap-urlauth  -I../../src/lib-imap-storage  -I../../src/lib-index  -I../../src/lib-storage  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT cmd-fetch.o -MD -MP -MF .deps/cmd-fetch.Tpo -c -o cmd-fetch.o cmd-fetch.c
--- cmd-enable.o ---
mv -f .deps/cmd-enable.Tpo .deps/cmd-enable.Po
--- cmd-genurlauth.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-dict  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-imap-urlauth  -I../../src/lib-imap-storage  -I../../src/lib-index  -I../../src/lib-storage  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT cmd-genurlauth.o -MD -MP -MF .deps/cmd-genurlauth.Tpo -c -o cmd-genurlauth.o cmd-genurlauth.c
--- cmd-copy.o ---
mv -f .deps/cmd-copy.Tpo .deps/cmd-copy.Po
--- cmd-getmetadata.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-dict  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-imap-urlauth  -I../../src/lib-imap-storage  -I../../src/lib-index  -I../../src/lib-storage  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT cmd-getmetadata.o -MD -MP -MF .deps/cmd-getmetadata.Tpo -c -o cmd-getmetadata.o cmd-getmetadata.c
--- cmd-expunge.o ---
mv -f .deps/cmd-expunge.Tpo .deps/cmd-expunge.Po
--- cmd-id.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-dict  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-imap-urlauth  -I../../src/lib-imap-storage  -I../../src/lib-index  -I../../src/lib-storage  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT cmd-id.o -MD -MP -MF .deps/cmd-id.Tpo -c -o cmd-id.o cmd-id.c
--- cmd-genurlauth.o ---
mv -f .deps/cmd-genurlauth.Tpo .deps/cmd-genurlauth.Po
--- cmd-idle.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-dict  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-imap-urlauth  -I../../src/lib-imap-storage  -I../../src/lib-index  -I../../src/lib-storage  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT cmd-idle.o -MD -MP -MF .deps/cmd-idle.Tpo -c -o cmd-idle.o cmd-idle.c
--- cmd-id.o ---
mv -f .deps/cmd-id.Tpo .deps/cmd-id.Po
--- cmd-list.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-dict  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-imap-urlauth  -I../../src/lib-imap-storage  -I../../src/lib-index  -I../../src/lib-storage  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT cmd-list.o -MD -MP -MF .deps/cmd-list.Tpo -c -o cmd-list.o cmd-list.c
--- cmd-fetch.o ---
mv -f .deps/cmd-fetch.Tpo .deps/cmd-fetch.Po
--- cmd-logout.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-dict  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-imap-urlauth  -I../../src/lib-imap-storage  -I../../src/lib-index  -I../../src/lib-storage  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT cmd-logout.o -MD -MP -MF .deps/cmd-logout.Tpo -c -o cmd-logout.o cmd-logout.c
--- cmd-getmetadata.o ---
mv -f .deps/cmd-getmetadata.Tpo .deps/cmd-getmetadata.Po
--- cmd-lsub.o ---
--- cmd-logout.o ---
mv -f .deps/cmd-logout.Tpo .deps/cmd-logout.Po
--- cmd-lsub.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-dict  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-imap-urlauth  -I../../src/lib-imap-storage  -I../../src/lib-index  -I../../src/lib-storage  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT cmd-lsub.o -MD -MP -MF .deps/cmd-lsub.Tpo -c -o cmd-lsub.o cmd-lsub.c
--- cmd-namespace.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-dict  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-imap-urlauth  -I../../src/lib-imap-storage  -I../../src/lib-index  -I../../src/lib-storage  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT cmd-namespace.o -MD -MP -MF .deps/cmd-namespace.Tpo -c -o cmd-namespace.o cmd-namespace.c
--- cmd-idle.o ---
mv -f .deps/cmd-idle.Tpo .deps/cmd-idle.Po
--- cmd-noop.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-dict  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-imap-urlauth  -I../../src/lib-imap-storage  -I../../src/lib-index  -I../../src/lib-storage  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT cmd-noop.o -MD -MP -MF .deps/cmd-noop.Tpo -c -o cmd-noop.o cmd-noop.c
--- cmd-list.o ---
mv -f .deps/cmd-list.Tpo .deps/cmd-list.Po
--- cmd-notify.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-dict  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-imap-urlauth  -I../../src/lib-imap-storage  -I../../src/lib-index  -I../../src/lib-storage  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT cmd-notify.o -MD -MP -MF .deps/cmd-notify.Tpo -c -o cmd-notify.o cmd-notify.c
--- cmd-lsub.o ---
mv -f .deps/cmd-lsub.Tpo .deps/cmd-lsub.Po
--- cmd-rename.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-dict  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-imap-urlauth  -I../../src/lib-imap-storage  -I../../src/lib-index  -I../../src/lib-storage  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT cmd-rename.o -MD -MP -MF .deps/cmd-rename.Tpo -c -o cmd-rename.o cmd-rename.c
--- cmd-noop.o ---
mv -f .deps/cmd-noop.Tpo .deps/cmd-noop.Po
--- cmd-resetkey.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-dict  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-imap-urlauth  -I../../src/lib-imap-storage  -I../../src/lib-index  -I../../src/lib-storage  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT cmd-resetkey.o -MD -MP -MF .deps/cmd-resetkey.Tpo -c -o cmd-resetkey.o cmd-resetkey.c
--- cmd-namespace.o ---
mv -f .deps/cmd-namespace.Tpo .deps/cmd-namespace.Po
--- cmd-search.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-dict  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-imap-urlauth  -I../../src/lib-imap-storage  -I../../src/lib-index  -I../../src/lib-storage  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT cmd-search.o -MD -MP -MF .deps/cmd-search.Tpo -c -o cmd-search.o cmd-search.c
--- cmd-rename.o ---
mv -f .deps/cmd-rename.Tpo .deps/cmd-rename.Po
--- cmd-select.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-dict  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-imap-urlauth  -I../../src/lib-imap-storage  -I../../src/lib-index  -I../../src/lib-storage  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT cmd-select.o -MD -MP -MF .deps/cmd-select.Tpo -c -o cmd-select.o cmd-select.c
--- cmd-resetkey.o ---
mv -f .deps/cmd-resetkey.Tpo .deps/cmd-resetkey.Po
--- cmd-setmetadata.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-dict  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-imap-urlauth  -I../../src/lib-imap-storage  -I../../src/lib-index  -I../../src/lib-storage  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT cmd-setmetadata.o -MD -MP -MF .deps/cmd-setmetadata.Tpo -c -o cmd-setmetadata.o cmd-setmetadata.c
--- cmd-search.o ---
mv -f .deps/cmd-search.Tpo .deps/cmd-search.Po
--- cmd-sort.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-dict  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-imap-urlauth  -I../../src/lib-imap-storage  -I../../src/lib-index  -I../../src/lib-storage  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT cmd-sort.o -MD -MP -MF .deps/cmd-sort.Tpo -c -o cmd-sort.o cmd-sort.c
mv -f .deps/cmd-sort.Tpo .deps/cmd-sort.Po
--- cmd-status.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-dict  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-imap-urlauth  -I../../src/lib-imap-storage  -I../../src/lib-index  -I../../src/lib-storage  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT cmd-status.o -MD -MP -MF .deps/cmd-status.Tpo -c -o cmd-status.o cmd-status.c
--- cmd-notify.o ---
mv -f .deps/cmd-notify.Tpo .deps/cmd-notify.Po
--- cmd-store.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-dict  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-imap-urlauth  -I../../src/lib-imap-storage  -I../../src/lib-index  -I../../src/lib-storage  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT cmd-store.o -MD -MP -MF .deps/cmd-store.Tpo -c -o cmd-store.o cmd-store.c
--- cmd-setmetadata.o ---
mv -f .deps/cmd-setmetadata.Tpo .deps/cmd-setmetadata.Po
--- cmd-subscribe.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-dict  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-imap-urlauth  -I../../src/lib-imap-storage  -I../../src/lib-index  -I../../src/lib-storage  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT cmd-subscribe.o -MD -MP -MF .deps/cmd-subscribe.Tpo -c -o cmd-subscribe.o cmd-subscribe.c
--- cmd-select.o ---
mv -f .deps/cmd-select.Tpo .deps/cmd-select.Po
--- cmd-thread.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-dict  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-imap-urlauth  -I../../src/lib-imap-storage  -I../../src/lib-index  -I../../src/lib-storage  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT cmd-thread.o -MD -MP -MF .deps/cmd-thread.Tpo -c -o cmd-thread.o cmd-thread.c
--- cmd-status.o ---
mv -f .deps/cmd-status.Tpo .deps/cmd-status.Po
--- cmd-unselect.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-dict  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-imap-urlauth  -I../../src/lib-imap-storage  -I../../src/lib-index  -I../../src/lib-storage  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT cmd-unselect.o -MD -MP -MF .deps/cmd-unselect.Tpo -c -o cmd-unselect.o cmd-unselect.c
--- cmd-subscribe.o ---
mv -f .deps/cmd-subscribe.Tpo .deps/cmd-subscribe.Po
--- cmd-unsubscribe.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-dict  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-imap-urlauth  -I../../src/lib-imap-storage  -I../../src/lib-index  -I../../src/lib-storage  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT cmd-unsubscribe.o -MD -MP -MF .deps/cmd-unsubscribe.Tpo -c -o cmd-unsubscribe.o cmd-unsubscribe.c
--- cmd-unselect.o ---
mv -f .deps/cmd-unselect.Tpo .deps/cmd-unselect.Po
--- cmd-urlfetch.o ---
--- cmd-store.o ---
mv -f .deps/cmd-store.Tpo .deps/cmd-store.Po
--- cmd-urlfetch.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-dict  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-imap-urlauth  -I../../src/lib-imap-storage  -I../../src/lib-index  -I../../src/lib-storage  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT cmd-urlfetch.o -MD -MP -MF .deps/cmd-urlfetch.Tpo -c -o cmd-urlfetch.o cmd-urlfetch.c
--- cmd-x-cancel.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-dict  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-imap-urlauth  -I../../src/lib-imap-storage  -I../../src/lib-index  -I../../src/lib-storage  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT cmd-x-cancel.o -MD -MP -MF .deps/cmd-x-cancel.Tpo -c -o cmd-x-cancel.o cmd-x-cancel.c
--- cmd-unsubscribe.o ---
mv -f .deps/cmd-unsubscribe.Tpo .deps/cmd-unsubscribe.Po
--- cmd-x-state.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-dict  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-imap-urlauth  -I../../src/lib-imap-storage  -I../../src/lib-index  -I../../src/lib-storage  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT cmd-x-state.o -MD -MP -MF .deps/cmd-x-state.Tpo -c -o cmd-x-state.o cmd-x-state.c
--- cmd-thread.o ---
mv -f .deps/cmd-thread.Tpo .deps/cmd-thread.Po
--- imap-client.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-dict  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-imap-urlauth  -I../../src/lib-imap-storage  -I../../src/lib-index  -I../../src/lib-storage  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-client.o -MD -MP -MF .deps/imap-client.Tpo -c -o imap-client.o imap-client.c
--- cmd-x-cancel.o ---
mv -f .deps/cmd-x-cancel.Tpo .deps/cmd-x-cancel.Po
--- imap-client-hibernate.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-dict  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-imap-urlauth  -I../../src/lib-imap-storage  -I../../src/lib-index  -I../../src/lib-storage  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-client-hibernate.o -MD -MP -MF .deps/imap-client-hibernate.Tpo -c -o imap-client-hibernate.o imap-client-hibernate.c
--- cmd-x-state.o ---
mv -f .deps/cmd-x-state.Tpo .deps/cmd-x-state.Po
--- imap-commands.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-dict  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-imap-urlauth  -I../../src/lib-imap-storage  -I../../src/lib-index  -I../../src/lib-storage  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-commands.o -MD -MP -MF .deps/imap-commands.Tpo -c -o imap-commands.o imap-commands.c
--- cmd-urlfetch.o ---
mv -f .deps/cmd-urlfetch.Tpo .deps/cmd-urlfetch.Po
--- imap-commands-util.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-dict  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-imap-urlauth  -I../../src/lib-imap-storage  -I../../src/lib-index  -I../../src/lib-storage  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-commands-util.o -MD -MP -MF .deps/imap-commands-util.Tpo -c -o imap-commands-util.o imap-commands-util.c
--- imap-client-hibernate.o ---
mv -f .deps/imap-client-hibernate.Tpo .deps/imap-client-hibernate.Po
--- imap-expunge.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-dict  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-imap-urlauth  -I../../src/lib-imap-storage  -I../../src/lib-index  -I../../src/lib-storage  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-expunge.o -MD -MP -MF .deps/imap-expunge.Tpo -c -o imap-expunge.o imap-expunge.c
--- imap-commands.o ---
mv -f .deps/imap-commands.Tpo .deps/imap-commands.Po
--- imap-feature.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-dict  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-imap-urlauth  -I../../src/lib-imap-storage  -I../../src/lib-index  -I../../src/lib-storage  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-feature.o -MD -MP -MF .deps/imap-feature.Tpo -c -o imap-feature.o imap-feature.c
--- imap-commands-util.o ---
mv -f .deps/imap-commands-util.Tpo .deps/imap-commands-util.Po
--- imap-fetch.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-dict  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-imap-urlauth  -I../../src/lib-imap-storage  -I../../src/lib-index  -I../../src/lib-storage  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-fetch.o -MD -MP -MF .deps/imap-fetch.Tpo -c -o imap-fetch.o imap-fetch.c
--- imap-expunge.o ---
mv -f .deps/imap-expunge.Tpo .deps/imap-expunge.Po
--- imap-fetch-body.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-dict  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-imap-urlauth  -I../../src/lib-imap-storage  -I../../src/lib-index  -I../../src/lib-storage  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-fetch-body.o -MD -MP -MF .deps/imap-fetch-body.Tpo -c -o imap-fetch-body.o imap-fetch-body.c
--- imap-feature.o ---
mv -f .deps/imap-feature.Tpo .deps/imap-feature.Po
--- imap-list.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-dict  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-imap-urlauth  -I../../src/lib-imap-storage  -I../../src/lib-index  -I../../src/lib-storage  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-list.o -MD -MP -MF .deps/imap-list.Tpo -c -o imap-list.o imap-list.c
mv -f .deps/imap-list.Tpo .deps/imap-list.Po
--- imap-master-client.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-dict  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-imap-urlauth  -I../../src/lib-imap-storage  -I../../src/lib-index  -I../../src/lib-storage  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-master-client.o -MD -MP -MF .deps/imap-master-client.Tpo -c -o imap-master-client.o imap-master-client.c
--- imap-client.o ---
mv -f .deps/imap-client.Tpo .deps/imap-client.Po
--- imap-notify.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-dict  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-imap-urlauth  -I../../src/lib-imap-storage  -I../../src/lib-index  -I../../src/lib-storage  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-notify.o -MD -MP -MF .deps/imap-notify.Tpo -c -o imap-notify.o imap-notify.c
--- imap-fetch-body.o ---
mv -f .deps/imap-fetch-body.Tpo .deps/imap-fetch-body.Po
--- imap-search.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-dict  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-imap-urlauth  -I../../src/lib-imap-storage  -I../../src/lib-index  -I../../src/lib-storage  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-search.o -MD -MP -MF .deps/imap-search.Tpo -c -o imap-search.o imap-search.c
--- imap-master-client.o ---
mv -f .deps/imap-master-client.Tpo .deps/imap-master-client.Po
--- imap-search-args.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-dict  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-imap-urlauth  -I../../src/lib-imap-storage  -I../../src/lib-index  -I../../src/lib-storage  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-search-args.o -MD -MP -MF .deps/imap-search-args.Tpo -c -o imap-search-args.o imap-search-args.c
--- imap-fetch.o ---
mv -f .deps/imap-fetch.Tpo .deps/imap-fetch.Po
--- imap-settings.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-dict  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-imap-urlauth  -I../../src/lib-imap-storage  -I../../src/lib-index  -I../../src/lib-storage  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-settings.o -MD -MP -MF .deps/imap-settings.Tpo -c -o imap-settings.o imap-settings.c
--- imap-notify.o ---
mv -f .deps/imap-notify.Tpo .deps/imap-notify.Po
--- imap-status.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-dict  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-imap-urlauth  -I../../src/lib-imap-storage  -I../../src/lib-index  -I../../src/lib-storage  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-status.o -MD -MP -MF .deps/imap-status.Tpo -c -o imap-status.o imap-status.c
--- imap-settings.o ---
mv -f .deps/imap-settings.Tpo .deps/imap-settings.Po
--- imap-state.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-dict  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-imap-urlauth  -I../../src/lib-imap-storage  -I../../src/lib-index  -I../../src/lib-storage  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-state.o -MD -MP -MF .deps/imap-state.Tpo -c -o imap-state.o imap-state.c
--- imap-search-args.o ---
mv -f .deps/imap-search-args.Tpo .deps/imap-search-args.Po
--- imap-sync.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-dict  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-imap-urlauth  -I../../src/lib-imap-storage  -I../../src/lib-index  -I../../src/lib-storage  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-sync.o -MD -MP -MF .deps/imap-sync.Tpo -c -o imap-sync.o imap-sync.c
--- imap-search.o ---
mv -f .deps/imap-search.Tpo .deps/imap-search.Po
--- mail-storage-callbacks.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-dict  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-imap-urlauth  -I../../src/lib-imap-storage  -I../../src/lib-index  -I../../src/lib-storage  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-storage-callbacks.o -MD -MP -MF .deps/mail-storage-callbacks.Tpo -c -o mail-storage-callbacks.o mail-storage-callbacks.c
--- imap-status.o ---
mv -f .deps/imap-status.Tpo .deps/imap-status.Po
--- main.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-dict  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-imap-urlauth  -I../../src/lib-imap-storage  -I../../src/lib-index  -I../../src/lib-storage  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT main.o -MD -MP -MF .deps/main.Tpo -c -o main.o main.c
--- mail-storage-callbacks.o ---
mv -f .deps/mail-storage-callbacks.Tpo .deps/mail-storage-callbacks.Po
--- imap-state.o ---
mv -f .deps/imap-state.Tpo .deps/imap-state.Po
--- main.o ---
mv -f .deps/main.Tpo .deps/main.Po
--- imap-sync.o ---
mv -f .deps/imap-sync.Tpo .deps/imap-sync.Po
--- imap ---
--- test-imap-client-hibernate ---
--- imap ---
/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 -mfunction-return=keep -Wall -W -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  -pie -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o imap cmd-append.o cmd-capability.o  cmd-cancelupdate.o cmd-check.o  cmd-close.o cmd-copy.o cmd-create.o  cmd-delete.o cmd-enable.o  cmd-examine.o cmd-expunge.o  cmd-fetch.o cmd-genurlauth.o  cmd-getmetadata.o cmd-id.o cmd-idle.o  cmd-list.o cmd-logout.o cmd-lsub.o  cmd-namespace.o cmd-noop.o  cmd-notify.o cmd-rename.o  cmd-resetkey.o cmd-search.o  cmd-select.o cmd-setmetadata.o  cmd-sort.o cmd-status.o cmd-store.o  cmd-subscribe.o cmd-thread.o  cmd-unselect.o cmd-unsubscribe.o  cmd-urlfetch.o cmd-x-cancel.o  cmd-x-state.o imap-client.o  imap-client-hibernate.o imap-commands.o  imap-commands-util.o imap-expunge.o  imap-feature.o imap-fetch.o  imap-fetch-body.o imap-list.o  imap-master-client.o imap-notify.o  imap-search.o imap-search-args.o  imap-settings.o imap-status.o  imap-state.o imap-sync.o  mail-storage-callbacks.o main.o ../lib-imap-urlauth/libimap-urlauth.la  ../../src/lib-storage/libdovecot-storage.la ../../src/lib-imap-storage/libimap-storage.la  ../../src/lib-dovecot/libdovecot.la -export-dynamic 
--- test-imap-client-hibernate ---
/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 -mfunction-return=keep -Wall -W -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-imap-client-hibernate test-imap-client-hibernate.o cmd-append.o cmd-capability.o  cmd-cancelupdate.o cmd-check.o  cmd-close.o cmd-copy.o cmd-create.o  cmd-delete.o cmd-enable.o  cmd-examine.o cmd-expunge.o  cmd-fetch.o cmd-genurlauth.o  cmd-getmetadata.o cmd-id.o cmd-idle.o  cmd-list.o cmd-logout.o cmd-lsub.o  cmd-namespace.o cmd-noop.o  cmd-notify.o cmd-rename.o  cmd-resetkey.o cmd-search.o  cmd-select.o cmd-setmetadata.o  cmd-sort.o cmd-status.o cmd-store.o  cmd-subscribe.o cmd-thread.o  cmd-unselect.o cmd-unsubscribe.o  cmd-urlfetch.o cmd-x-cancel.o  cmd-x-state.o imap-client.o  imap-client-hibernate.o imap-commands.o  imap-commands-util.o imap-expunge.o  imap-feature.o imap-fetch.o  imap-fetch-body.o imap-list.o  imap-master-client.o imap-notify.o  imap-search.o imap-search-args.o  imap-settings.o imap-status.o  imap-state.o imap-sync.o  mail-storage-callbacks.o ../lib-imap-urlauth/libimap-urlauth.la  ../../src/lib-storage/libdovecot-storage.la ../../src/lib-imap-storage/libimap-storage.la  ../../src/lib-dovecot/libdovecot.la -export-dynamic 
--- imap ---
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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -pie -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o .libs/imap cmd-append.o cmd-capability.o cmd-cancelupdate.o cmd-check.o cmd-close.o cmd-copy.o cmd-create.o cmd-delete.o cmd-enable.o cmd-examine.o cmd-expunge.o cmd-fetch.o cmd-genurlauth.o cmd-getmetadata.o cmd-id.o cmd-idle.o cmd-list.o cmd-logout.o cmd-lsub.o cmd-namespace.o cmd-noop.o cmd-notify.o cmd-rename.o cmd-resetkey.o cmd-search.o cmd-select.o cmd-setmetadata.o cmd-sort.o cmd-status.o cmd-store.o cmd-subscribe.o cmd-thread.o cmd-unselect.o cmd-unsubscribe.o cmd-urlfetch.o cmd-x-cancel.o cmd-x-state.o imap-client.o imap-client-hibernate.o imap-commands.o imap-commands-util.o imap-expunge.o imap-feature.o imap-fetch.o imap-fetch-body.o imap-list.o imap-master-client.o imap-notify.o imap-search.o imap-search-args.o imap-settings.o imap-status.o imap-state.o imap-sync.o mail-storage-callbacks.o main.o -Wl,--export-dynamic  -L/usr/local/lib ../lib-imap-urlauth/.libs/libimap-urlauth.a ../../src/lib-storage/.libs/libdovecot-storage.so ../../src/lib-imap-storage/.libs/libimap-storage.a ../../src/lib-dovecot/.libs/libdovecot.so -Wl,-rpath -Wl,/usr/local/lib/dovecot
--- test-imap-client-hibernate ---
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 -mfunction-return=keep -Wall -W -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-imap-client-hibernate test-imap-client-hibernate.o cmd-append.o cmd-capability.o cmd-cancelupdate.o cmd-check.o cmd-close.o cmd-copy.o cmd-create.o cmd-delete.o cmd-enable.o cmd-examine.o cmd-expunge.o cmd-fetch.o cmd-genurlauth.o cmd-getmetadata.o cmd-id.o cmd-idle.o cmd-list.o cmd-logout.o cmd-lsub.o cmd-namespace.o cmd-noop.o cmd-notify.o cmd-rename.o cmd-resetkey.o cmd-search.o cmd-select.o cmd-setmetadata.o cmd-sort.o cmd-status.o cmd-store.o cmd-subscribe.o cmd-thread.o cmd-unselect.o cmd-unsubscribe.o cmd-urlfetch.o cmd-x-cancel.o cmd-x-state.o imap-client.o imap-client-hibernate.o imap-commands.o imap-commands-util.o imap-expunge.o imap-feature.o imap-fetch.o imap-fetch-body.o imap-list.o imap-master-client.o imap-notify.o imap-search.o imap-search-args.o imap-settings.o imap-status.o imap-state.o imap-sync.o mail-storage-callbacks.o -Wl,--export-dynamic  -L/usr/local/lib ../lib-imap-urlauth/.libs/libimap-urlauth.a ../../src/lib-storage/.libs/libdovecot-storage.so ../../src/lib-imap-storage/.libs/libimap-storage.a ../../src/lib-dovecot/.libs/libdovecot.so -Wl,-rpath -Wl,/usr/local/lib/dovecot
Making all in imap-urlauth
--- imap_urlauth_login-imap-urlauth-login.o ---
--- imap_urlauth_login-imap-urlauth-login-settings.o ---
--- imap_urlauth-imap-urlauth.o ---
--- imap_urlauth-imap-urlauth-client.o ---
--- imap_urlauth_login-imap-urlauth-login.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-master  -fPIE -DPIE  -I../../src/login-common -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap_urlauth_login-imap-urlauth-login.o -MD -MP -MF .deps/imap_urlauth_login-imap-urlauth-login.Tpo -c -o imap_urlauth_login-imap-urlauth-login.o `test -f 'imap-urlauth-login.c' || echo './'`imap-urlauth-login.c
--- imap_urlauth_login-imap-urlauth-login-settings.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-master  -fPIE -DPIE  -I../../src/login-common -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap_urlauth_login-imap-urlauth-login-settings.o -MD -MP -MF .deps/imap_urlauth_login-imap-urlauth-login-settings.Tpo -c -o imap_urlauth_login-imap-urlauth-login-settings.o `test -f 'imap-urlauth-login-settings.c' || echo './'`imap-urlauth-login-settings.c
--- imap_urlauth-imap-urlauth.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-master  -fPIE -DPIE  -I../../src/lib-dict  -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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap_urlauth-imap-urlauth.o -MD -MP -MF .deps/imap_urlauth-imap-urlauth.Tpo -c -o imap_urlauth-imap-urlauth.o `test -f 'imap-urlauth.c' || echo './'`imap-urlauth.c
--- imap_urlauth-imap-urlauth-client.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-master  -fPIE -DPIE  -I../../src/lib-dict  -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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap_urlauth-imap-urlauth-client.o -MD -MP -MF .deps/imap_urlauth-imap-urlauth-client.Tpo -c -o imap_urlauth-imap-urlauth-client.o `test -f 'imap-urlauth-client.c' || echo './'`imap-urlauth-client.c
--- imap_urlauth_login-imap-urlauth-login-settings.o ---
mv -f .deps/imap_urlauth_login-imap-urlauth-login-settings.Tpo .deps/imap_urlauth_login-imap-urlauth-login-settings.Po
--- imap_urlauth-imap-urlauth-settings.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-master  -fPIE -DPIE  -I../../src/lib-dict  -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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap_urlauth-imap-urlauth-settings.o -MD -MP -MF .deps/imap_urlauth-imap-urlauth-settings.Tpo -c -o imap_urlauth-imap-urlauth-settings.o `test -f 'imap-urlauth-settings.c' || echo './'`imap-urlauth-settings.c
--- imap_urlauth_login-imap-urlauth-login.o ---
mv -f .deps/imap_urlauth_login-imap-urlauth-login.Tpo .deps/imap_urlauth_login-imap-urlauth-login.Po
--- imap_urlauth-imap-urlauth-settings.o ---
mv -f .deps/imap_urlauth-imap-urlauth-settings.Tpo .deps/imap_urlauth-imap-urlauth-settings.Po
--- imap_urlauth_worker-imap-urlauth-worker.o ---
--- imap_urlauth_worker-imap-urlauth-worker-settings.o ---
--- imap_urlauth_worker-imap-urlauth-worker.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-master  -fPIE -DPIE  -I../../src/lib-dict  -I../../src/imap  -I../../src/lib-imap  -I../../src/lib-imap-storage  -I../../src/lib-imap-urlauth  -I../../src/lib-mail  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/login-common -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap_urlauth_worker-imap-urlauth-worker.o -MD -MP -MF .deps/imap_urlauth_worker-imap-urlauth-worker.Tpo -c -o imap_urlauth_worker-imap-urlauth-worker.o `test -f 'imap-urlauth-worker.c' || echo './'`imap-urlauth-worker.c
--- imap_urlauth_worker-imap-urlauth-worker-settings.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-master  -fPIE -DPIE  -I../../src/lib-dict  -I../../src/imap  -I../../src/lib-imap  -I../../src/lib-imap-storage  -I../../src/lib-imap-urlauth  -I../../src/lib-mail  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/login-common -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap_urlauth_worker-imap-urlauth-worker-settings.o -MD -MP -MF .deps/imap_urlauth_worker-imap-urlauth-worker-settings.Tpo -c -o imap_urlauth_worker-imap-urlauth-worker-settings.o `test -f 'imap-urlauth-worker-settings.c' || echo './'`imap-urlauth-worker-settings.c
--- imap_urlauth-imap-urlauth.o ---
mv -f .deps/imap_urlauth-imap-urlauth.Tpo .deps/imap_urlauth-imap-urlauth.Po
--- imap-urlauth-login ---
/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 -mfunction-return=keep -Wall -W -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 imap-urlauth-login imap_urlauth_login-imap-urlauth-login.o  imap_urlauth_login-imap-urlauth-login-settings.o ../../src/login-common/libdovecot-login.la  ../../src/lib-dovecot/libdovecot.la -export-dynamic  -L/usr/local/lib -lssl -lcrypto  -pie 
--- imap_urlauth_worker-imap-urlauth-worker-settings.o ---
mv -f .deps/imap_urlauth_worker-imap-urlauth-worker-settings.Tpo .deps/imap_urlauth_worker-imap-urlauth-worker-settings.Po
--- imap_urlauth-imap-urlauth-client.o ---
mv -f .deps/imap_urlauth-imap-urlauth-client.Tpo .deps/imap_urlauth-imap-urlauth-client.Po
--- imap-urlauth ---
/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 -mfunction-return=keep -Wall -W -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 imap-urlauth imap_urlauth-imap-urlauth.o  imap_urlauth-imap-urlauth-client.o  imap_urlauth-imap-urlauth-settings.o ../../src/lib-dovecot/libdovecot.la -export-dynamic  -pie 
--- imap-urlauth-login ---
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 -mfunction-return=keep -Wall -W -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/imap-urlauth-login imap_urlauth_login-imap-urlauth-login.o imap_urlauth_login-imap-urlauth-login-settings.o -pie -Wl,--export-dynamic  -L/usr/local/lib ../../src/login-common/.libs/libdovecot-login.so ../../src/lib-dovecot/.libs/libdovecot.so -lssl -lcrypto -Wl,-rpath -Wl,/usr/local/lib/dovecot
--- imap-urlauth ---
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 -mfunction-return=keep -Wall -W -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/imap-urlauth imap_urlauth-imap-urlauth.o imap_urlauth-imap-urlauth-client.o imap_urlauth-imap-urlauth-settings.o -pie -Wl,--export-dynamic  -L/usr/local/lib ../../src/lib-dovecot/.libs/libdovecot.so -Wl,-rpath -Wl,/usr/local/lib/dovecot
--- imap_urlauth_worker-imap-urlauth-worker.o ---
mv -f .deps/imap_urlauth_worker-imap-urlauth-worker.Tpo .deps/imap_urlauth_worker-imap-urlauth-worker.Po
--- imap-urlauth-worker ---
/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 -mfunction-return=keep -Wall -W -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  -pie  -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o imap-urlauth-worker imap_urlauth_worker-imap-urlauth-worker.o  imap_urlauth_worker-imap-urlauth-worker-settings.o ../../src/lib-imap-urlauth/libimap-urlauth.la ../../src/lib-storage/libdovecot-storage.la ../../src/lib-imap-storage/libimap-storage.la ../../src/lib-dovecot/libdovecot.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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -pie -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o .libs/imap-urlauth-worker imap_urlauth_worker-imap-urlauth-worker.o imap_urlauth_worker-imap-urlauth-worker-settings.o -Wl,--export-dynamic  -L/usr/local/lib ../../src/lib-imap-urlauth/.libs/libimap-urlauth.a ../../src/lib-storage/.libs/libdovecot-storage.so ../../src/lib-imap-storage/.libs/libimap-storage.a ../../src/lib-dovecot/.libs/libdovecot.so -Wl,-rpath -Wl,/usr/local/lib/dovecot
Making all in pop3-login
--- client.o ---
--- client-authenticate.o ---
--- pop3-login-settings.o ---
--- pop3-proxy.o ---
--- client.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-sasl  -I../../src/lib-master  -I../../src/login-common  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT client.o -MD -MP -MF .deps/client.Tpo -c -o client.o client.c
--- client-authenticate.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-sasl  -I../../src/lib-master  -I../../src/login-common  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT client-authenticate.o -MD -MP -MF .deps/client-authenticate.Tpo -c -o client-authenticate.o client-authenticate.c
--- pop3-proxy.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-sasl  -I../../src/lib-master  -I../../src/login-common  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT pop3-proxy.o -MD -MP -MF .deps/pop3-proxy.Tpo -c -o pop3-proxy.o pop3-proxy.c
--- pop3-login-settings.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-sasl  -I../../src/lib-master  -I../../src/login-common  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT pop3-login-settings.o -MD -MP -MF .deps/pop3-login-settings.Tpo -c -o pop3-login-settings.o pop3-login-settings.c
mv -f .deps/pop3-login-settings.Tpo .deps/pop3-login-settings.Po
--- client-authenticate.o ---
mv -f .deps/client-authenticate.Tpo .deps/client-authenticate.Po
--- pop3-proxy.o ---
mv -f .deps/pop3-proxy.Tpo .deps/pop3-proxy.Po
--- client.o ---
mv -f .deps/client.Tpo .deps/client.Po
--- pop3-login ---
/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 -mfunction-return=keep -Wall -W -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 pop3-login client.o client-authenticate.o  pop3-login-settings.o pop3-proxy.o ../../src/login-common/libdovecot-login.la  ../../src/lib-dovecot/libdovecot.la -export-dynamic  -L/usr/local/lib -lssl -lcrypto  -pie 
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 -mfunction-return=keep -Wall -W -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/pop3-login client.o client-authenticate.o pop3-login-settings.o pop3-proxy.o -pie -Wl,--export-dynamic  -L/usr/local/lib ../../src/login-common/.libs/libdovecot-login.so ../../src/lib-dovecot/.libs/libdovecot.so -lssl -lcrypto -Wl,-rpath -Wl,/usr/local/lib/dovecot
Making all in pop3
--- main.o ---
--- pop3-client.o ---
--- pop3-commands.o ---
--- pop3-settings.o ---
--- main.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-dict  -I../../src/lib-mail  -I../../src/lib-index  -I../../src/lib-storage  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT main.o -MD -MP -MF .deps/main.Tpo -c -o main.o main.c
--- pop3-client.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-dict  -I../../src/lib-mail  -I../../src/lib-index  -I../../src/lib-storage  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT pop3-client.o -MD -MP -MF .deps/pop3-client.Tpo -c -o pop3-client.o pop3-client.c
--- pop3-commands.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-dict  -I../../src/lib-mail  -I../../src/lib-index  -I../../src/lib-storage  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT pop3-commands.o -MD -MP -MF .deps/pop3-commands.Tpo -c -o pop3-commands.o pop3-commands.c
--- pop3-settings.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-dict  -I../../src/lib-mail  -I../../src/lib-index  -I../../src/lib-storage  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT pop3-settings.o -MD -MP -MF .deps/pop3-settings.Tpo -c -o pop3-settings.o pop3-settings.c
mv -f .deps/pop3-settings.Tpo .deps/pop3-settings.Po
--- main.o ---
mv -f .deps/main.Tpo .deps/main.Po
--- pop3-client.o ---
mv -f .deps/pop3-client.Tpo .deps/pop3-client.Po
--- pop3-commands.o ---
mv -f .deps/pop3-commands.Tpo .deps/pop3-commands.Po
--- pop3 ---
/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 -mfunction-return=keep -Wall -W -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  -pie -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o pop3 main.o pop3-client.o  pop3-commands.o pop3-settings.o ../../src/lib-storage/libdovecot-storage.la ../../src/lib-imap-storage/libimap-storage.la  ../../src/lib-dovecot/libdovecot.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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -pie -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o .libs/pop3 main.o pop3-client.o pop3-commands.o pop3-settings.o -Wl,--export-dynamic  -L/usr/local/lib ../../src/lib-storage/.libs/libdovecot-storage.so ../../src/lib-imap-storage/.libs/libimap-storage.a ../../src/lib-dovecot/.libs/libdovecot.so -Wl,-rpath -Wl,/usr/local/lib/dovecot
Making all in submission-login
--- client.o ---
--- client-authenticate.o ---
--- submission-login-settings.o ---
--- submission-proxy.o ---
--- client.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-sasl  -I../../src/lib-auth  -I../../src/lib-master  -I../../src/lib-smtp  -I../../src/login-common  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT client.o -MD -MP -MF .deps/client.Tpo -c -o client.o client.c
--- client-authenticate.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-sasl  -I../../src/lib-auth  -I../../src/lib-master  -I../../src/lib-smtp  -I../../src/login-common  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT client-authenticate.o -MD -MP -MF .deps/client-authenticate.Tpo -c -o client-authenticate.o client-authenticate.c
--- submission-proxy.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-sasl  -I../../src/lib-auth  -I../../src/lib-master  -I../../src/lib-smtp  -I../../src/login-common  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT submission-proxy.o -MD -MP -MF .deps/submission-proxy.Tpo -c -o submission-proxy.o submission-proxy.c
--- submission-login-settings.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-sasl  -I../../src/lib-auth  -I../../src/lib-master  -I../../src/lib-smtp  -I../../src/login-common  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT submission-login-settings.o -MD -MP -MF .deps/submission-login-settings.Tpo -c -o submission-login-settings.o submission-login-settings.c
mv -f .deps/submission-login-settings.Tpo .deps/submission-login-settings.Po
--- client-authenticate.o ---
mv -f .deps/client-authenticate.Tpo .deps/client-authenticate.Po
--- client.o ---
mv -f .deps/client.Tpo .deps/client.Po
--- submission-proxy.o ---
mv -f .deps/submission-proxy.Tpo .deps/submission-proxy.Po
--- submission-login ---
/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 -mfunction-return=keep -Wall -W -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 submission-login client.o  client-authenticate.o  submission-login-settings.o submission-proxy.o ../../src/login-common/libdovecot-login.la  ../../src/lib-dovecot/libdovecot.la -export-dynamic  -L/usr/local/lib -lssl -lcrypto 
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 -mfunction-return=keep -Wall -W -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/submission-login client.o client-authenticate.o submission-login-settings.o submission-proxy.o -Wl,--export-dynamic  -L/usr/local/lib ../../src/login-common/.libs/libdovecot-login.so ../../src/lib-dovecot/.libs/libdovecot.so -lssl -lcrypto -Wl,-rpath -Wl,/usr/local/lib/dovecot
Making all in submission
--- main.o ---
--- submission-backend.o ---
--- submission-backend-relay.o ---
--- submission-recipient.o ---
--- main.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-mail  -I../../src/lib-ssl-iostream  -I../../src/lib-imap  -I../../src/lib-imap-storage  -I../../src/lib-imap-urlauth  -I../../src/lib-index  -I../../src/lib-master  -I../../src/lib-storage  -I../../src/lib-storage/index  -I../../src/lib-storage/index/raw  -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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT main.o -MD -MP -MF .deps/main.Tpo -c -o main.o main.c
--- submission-backend.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-mail  -I../../src/lib-ssl-iostream  -I../../src/lib-imap  -I../../src/lib-imap-storage  -I../../src/lib-imap-urlauth  -I../../src/lib-index  -I../../src/lib-master  -I../../src/lib-storage  -I../../src/lib-storage/index  -I../../src/lib-storage/index/raw  -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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT submission-backend.o -MD -MP -MF .deps/submission-backend.Tpo -c -o submission-backend.o submission-backend.c
--- submission-backend-relay.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-mail  -I../../src/lib-ssl-iostream  -I../../src/lib-imap  -I../../src/lib-imap-storage  -I../../src/lib-imap-urlauth  -I../../src/lib-index  -I../../src/lib-master  -I../../src/lib-storage  -I../../src/lib-storage/index  -I../../src/lib-storage/index/raw  -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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT submission-backend-relay.o -MD -MP -MF .deps/submission-backend-relay.Tpo -c -o submission-backend-relay.o submission-backend-relay.c
--- submission-recipient.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-mail  -I../../src/lib-ssl-iostream  -I../../src/lib-imap  -I../../src/lib-imap-storage  -I../../src/lib-imap-urlauth  -I../../src/lib-index  -I../../src/lib-master  -I../../src/lib-storage  -I../../src/lib-storage/index  -I../../src/lib-storage/index/raw  -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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT submission-recipient.o -MD -MP -MF .deps/submission-recipient.Tpo -c -o submission-recipient.o submission-recipient.c
mv -f .deps/submission-recipient.Tpo .deps/submission-recipient.Po
--- submission-client.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-mail  -I../../src/lib-ssl-iostream  -I../../src/lib-imap  -I../../src/lib-imap-storage  -I../../src/lib-imap-urlauth  -I../../src/lib-index  -I../../src/lib-master  -I../../src/lib-storage  -I../../src/lib-storage/index  -I../../src/lib-storage/index/raw  -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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT submission-client.o -MD -MP -MF .deps/submission-client.Tpo -c -o submission-client.o submission-client.c
--- main.o ---
mv -f .deps/main.Tpo .deps/main.Po
--- submission-commands.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-mail  -I../../src/lib-ssl-iostream  -I../../src/lib-imap  -I../../src/lib-imap-storage  -I../../src/lib-imap-urlauth  -I../../src/lib-index  -I../../src/lib-master  -I../../src/lib-storage  -I../../src/lib-storage/index  -I../../src/lib-storage/index/raw  -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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT submission-commands.o -MD -MP -MF .deps/submission-commands.Tpo -c -o submission-commands.o submission-commands.c
--- submission-backend.o ---
mv -f .deps/submission-backend.Tpo .deps/submission-backend.Po
--- submission-settings.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-mail  -I../../src/lib-ssl-iostream  -I../../src/lib-imap  -I../../src/lib-imap-storage  -I../../src/lib-imap-urlauth  -I../../src/lib-index  -I../../src/lib-master  -I../../src/lib-storage  -I../../src/lib-storage/index  -I../../src/lib-storage/index/raw  -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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT submission-settings.o -MD -MP -MF .deps/submission-settings.Tpo -c -o submission-settings.o submission-settings.c
--- submission-backend-relay.o ---
mv -f .deps/submission-backend-relay.Tpo .deps/submission-backend-relay.Po
--- submission-settings.o ---
mv -f .deps/submission-settings.Tpo .deps/submission-settings.Po
--- submission-client.o ---
mv -f .deps/submission-client.Tpo .deps/submission-client.Po
--- submission-commands.o ---
mv -f .deps/submission-commands.Tpo .deps/submission-commands.Po
--- submission ---
/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 -mfunction-return=keep -Wall -W -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 submission main.o submission-backend.o  submission-backend-relay.o  submission-recipient.o submission-client.o  submission-commands.o submission-settings.o ../../src/lib-imap-urlauth/libimap-urlauth.la  ../../src/lib-storage/libdovecot-storage.la ../../src/lib-imap-storage/libimap-storage.la  ../../src/lib-dovecot/libdovecot.la -export-dynamic  -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 -mfunction-return=keep -Wall -W -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/submission main.o submission-backend.o submission-backend-relay.o submission-recipient.o submission-client.o submission-commands.o submission-settings.o -Wl,--export-dynamic  -L/usr/local/lib ../../src/lib-imap-urlauth/.libs/libimap-urlauth.a ../../src/lib-storage/.libs/libdovecot-storage.so ../../src/lib-imap-storage/.libs/libimap-storage.a ../../src/lib-dovecot/.libs/libdovecot.so -Wl,-rpath -Wl,/usr/local/lib/dovecot
Making all in lda
--- main.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-master  -I../../src/lib-smtp  -I../../src/lib-lda  -I../../src/lib-storage  -I../../src/lib-storage/index  -I../../src/lib-storage/index/raw  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT main.o -MD -MP -MF .deps/main.Tpo -c -o main.o main.c
mv -f .deps/main.Tpo .deps/main.Po
--- dovecot-lda ---
/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 -mfunction-return=keep -Wall -W -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 dovecot-lda main.o ../../src/lib-lda/libdovecot-lda.la  ../../src/lib-storage/libdovecot-storage.la ../../src/lib-imap-storage/libimap-storage.la  ../../src/lib-dovecot/libdovecot.la -export-dynamic  -pie 
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 -mfunction-return=keep -Wall -W -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/dovecot-lda main.o -pie -Wl,--export-dynamic  -L/usr/local/lib ../../src/lib-lda/.libs/libdovecot-lda.so ../../src/lib-storage/.libs/libdovecot-storage.so ../../src/lib-imap-storage/.libs/libimap-storage.a ../../src/lib-dovecot/.libs/libdovecot.so -Wl,-rpath -Wl,/usr/local/lib/dovecot
Making all in lmtp
--- main.o ---
--- lmtp-client.o ---
--- lmtp-commands.o ---
--- lmtp-recipient.o ---
--- main.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-master  -I../../src/lib-lda  -I../../src/lib-ssl-iostream  -I../../src/lib-storage  -I../../src/lib-storage/index  -I../../src/lib-storage/index/raw  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT main.o -MD -MP -MF .deps/main.Tpo -c -o main.o main.c
--- lmtp-commands.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-master  -I../../src/lib-lda  -I../../src/lib-ssl-iostream  -I../../src/lib-storage  -I../../src/lib-storage/index  -I../../src/lib-storage/index/raw  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT lmtp-commands.o -MD -MP -MF .deps/lmtp-commands.Tpo -c -o lmtp-commands.o lmtp-commands.c
--- lmtp-client.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-master  -I../../src/lib-lda  -I../../src/lib-ssl-iostream  -I../../src/lib-storage  -I../../src/lib-storage/index  -I../../src/lib-storage/index/raw  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT lmtp-client.o -MD -MP -MF .deps/lmtp-client.Tpo -c -o lmtp-client.o lmtp-client.c
--- lmtp-recipient.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-master  -I../../src/lib-lda  -I../../src/lib-ssl-iostream  -I../../src/lib-storage  -I../../src/lib-storage/index  -I../../src/lib-storage/index/raw  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT lmtp-recipient.o -MD -MP -MF .deps/lmtp-recipient.Tpo -c -o lmtp-recipient.o lmtp-recipient.c
mv -f .deps/lmtp-recipient.Tpo .deps/lmtp-recipient.Po
--- lmtp-local.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-master  -I../../src/lib-lda  -I../../src/lib-ssl-iostream  -I../../src/lib-storage  -I../../src/lib-storage/index  -I../../src/lib-storage/index/raw  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT lmtp-local.o -MD -MP -MF .deps/lmtp-local.Tpo -c -o lmtp-local.o lmtp-local.c
--- main.o ---
mv -f .deps/main.Tpo .deps/main.Po
--- lmtp-proxy.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-master  -I../../src/lib-lda  -I../../src/lib-ssl-iostream  -I../../src/lib-storage  -I../../src/lib-storage/index  -I../../src/lib-storage/index/raw  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT lmtp-proxy.o -MD -MP -MF .deps/lmtp-proxy.Tpo -c -o lmtp-proxy.o lmtp-proxy.c
--- lmtp-commands.o ---
mv -f .deps/lmtp-commands.Tpo .deps/lmtp-commands.Po
--- lmtp-settings.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-mail  -I../../src/lib-smtp  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-master  -I../../src/lib-lda  -I../../src/lib-ssl-iostream  -I../../src/lib-storage  -I../../src/lib-storage/index  -I../../src/lib-storage/index/raw  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT lmtp-settings.o -MD -MP -MF .deps/lmtp-settings.Tpo -c -o lmtp-settings.o lmtp-settings.c
--- lmtp-client.o ---
mv -f .deps/lmtp-client.Tpo .deps/lmtp-client.Po
--- lmtp-settings.o ---
mv -f .deps/lmtp-settings.Tpo .deps/lmtp-settings.Po
--- lmtp-local.o ---
mv -f .deps/lmtp-local.Tpo .deps/lmtp-local.Po
--- lmtp-proxy.o ---
mv -f .deps/lmtp-proxy.Tpo .deps/lmtp-proxy.Po
--- lmtp ---
/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 -mfunction-return=keep -Wall -W -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  -pie -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o lmtp main.o lmtp-client.o  lmtp-commands.o lmtp-recipient.o  lmtp-local.o lmtp-proxy.o  lmtp-settings.o ../../src/lib-lda/libdovecot-lda.la  ../../src/lib-storage/libdovecot-storage.la ../../src/lib-imap-storage/libimap-storage.la  ../../src/lib-dovecot/libdovecot.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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -pie -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o .libs/lmtp main.o lmtp-client.o lmtp-commands.o lmtp-recipient.o lmtp-local.o lmtp-proxy.o lmtp-settings.o -Wl,--export-dynamic  -L/usr/local/lib ../../src/lib-lda/.libs/libdovecot-lda.so ../../src/lib-storage/.libs/libdovecot-storage.so ../../src/lib-imap-storage/.libs/libimap-storage.a ../../src/lib-dovecot/.libs/libdovecot.so -Wl,-rpath -Wl,/usr/local/lib/dovecot
Making all in log
--- doveadm-connection.o ---
--- log-connection.o ---
--- log-error-buffer.o ---
--- log-settings.o ---
--- doveadm-connection.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-master  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-connection.o -MD -MP -MF .deps/doveadm-connection.Tpo -c -o doveadm-connection.o doveadm-connection.c
--- log-error-buffer.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-master  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-error-buffer.o -MD -MP -MF .deps/log-error-buffer.Tpo -c -o log-error-buffer.o log-error-buffer.c
--- log-connection.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-master  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-connection.o -MD -MP -MF .deps/log-connection.Tpo -c -o log-connection.o log-connection.c
--- log-settings.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-master  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-settings.o -MD -MP -MF .deps/log-settings.Tpo -c -o log-settings.o log-settings.c
mv -f .deps/log-settings.Tpo .deps/log-settings.Po
--- main.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-master  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT main.o -MD -MP -MF .deps/main.Tpo -c -o main.o main.c
--- log-error-buffer.o ---
mv -f .deps/log-error-buffer.Tpo .deps/log-error-buffer.Po
--- doveadm-connection.o ---
mv -f .deps/doveadm-connection.Tpo .deps/doveadm-connection.Po
--- main.o ---
mv -f .deps/main.Tpo .deps/main.Po
--- log-connection.o ---
mv -f .deps/log-connection.Tpo .deps/log-connection.Po
--- log ---
/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 -mfunction-return=keep -Wall -W -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 log doveadm-connection.o log-connection.o  log-error-buffer.o log-settings.o  main.o ../../src/lib-dovecot/libdovecot.la -export-dynamic  -pie 
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 -mfunction-return=keep -Wall -W -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/log doveadm-connection.o log-connection.o log-error-buffer.o log-settings.o main.o -pie -Wl,--export-dynamic  -L/usr/local/lib ../../src/lib-dovecot/.libs/libdovecot.so -Wl,-rpath -Wl,/usr/local/lib/dovecot
Making all in config
--- doveconf.o ---
--- test_config_parser-test-config-parser.o ---
--- main.o ---
--- config-connection.lo ---
--- doveconf.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dns  -I../../src/lib-mail  -I../../src/lib-settings  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DEXAMPLE_CONFIG_DIR=\""/usr/local/share/doc/dovecot/example-config"\"  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DSSLDIR=\""/etc/ssl\""  -DSYSCONFDIR=\""/usr/local/etc/dovecot"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveconf.o -MD -MP -MF .deps/doveconf.Tpo -c -o doveconf.o doveconf.c
--- test_config_parser-test-config-parser.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dns  -I../../src/lib-mail  -I../../src/lib-settings  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DEXAMPLE_CONFIG_DIR=\""/usr/local/share/doc/dovecot/example-config"\"  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DSSLDIR=\""/etc/ssl\""  -DSYSCONFDIR=\""/usr/local/etc/dovecot"\"  -fPIE -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dns  -I../../src/lib-mail  -I../../src/lib-settings  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DEXAMPLE_CONFIG_DIR=\""/usr/local/share/doc/dovecot/example-config"\"  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DSSLDIR=\""/etc/ssl\""  -DSYSCONFDIR=\""/usr/local/etc/dovecot"\"  -fPIE -DPIE -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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_config_parser-test-config-parser.o -MD -MP -MF .deps/test_config_parser-test-config-parser.Tpo -c -o test_config_parser-test-config-parser.o `test -f 'test-config-parser.c' || echo './'`test-config-parser.c
--- main.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dns  -I../../src/lib-mail  -I../../src/lib-settings  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DEXAMPLE_CONFIG_DIR=\""/usr/local/share/doc/dovecot/example-config"\"  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DSSLDIR=\""/etc/ssl\""  -DSYSCONFDIR=\""/usr/local/etc/dovecot"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT main.o -MD -MP -MF .deps/main.Tpo -c -o main.o main.c
--- config-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-mail  -I../../src/lib-settings  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DEXAMPLE_CONFIG_DIR=\""/usr/local/share/doc/dovecot/example-config"\"  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DSSLDIR=\""/etc/ssl\""  -DSYSCONFDIR=\""/usr/local/etc/dovecot"\"  -fPIE -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT config-connection.lo -MD -MP -MF .deps/config-connection.Tpo -c -o config-connection.lo config-connection.c
--- main.o ---
mv -f .deps/main.Tpo .deps/main.Po
--- config-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-dns  -I../../src/lib-mail  -I../../src/lib-settings  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DEXAMPLE_CONFIG_DIR=\""/usr/local/share/doc/dovecot/example-config"\"  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DSSLDIR=\""/etc/ssl\""  -DSYSCONFDIR=\""/usr/local/etc/dovecot"\"  -fPIE -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT config-filter.lo -MD -MP -MF .deps/config-filter.Tpo -c -o config-filter.lo config-filter.c
--- test_config_parser-test-config-parser.o ---
mv -f .deps/test_config_parser-test-config-parser.Tpo .deps/test_config_parser-test-config-parser.Po
--- config-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-mail  -I../../src/lib-settings  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DEXAMPLE_CONFIG_DIR=\""/usr/local/share/doc/dovecot/example-config"\"  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DSSLDIR=\""/etc/ssl\""  -DSYSCONFDIR=\""/usr/local/etc/dovecot"\"  -fPIE -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT config-parser.lo -MD -MP -MF .deps/config-parser.Tpo -c -o config-parser.lo config-parser.c
--- config-connection.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../../src/lib-settings -I../../src/lib-master -DPKG_RUNDIR=\"/var/run/dovecot\" -DPKG_STATEDIR=\"/var/db/dovecot\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DEXAMPLE_CONFIG_DIR=\"/usr/local/share/doc/dovecot/example-config\" -DMODULEDIR=\"/usr/local/lib/dovecot\" -DSSLDIR=\"/etc/ssl\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT config-connection.lo -MD -MP -MF .deps/config-connection.Tpo -c config-connection.c  -fPIC -DPIC -o .libs/config-connection.o
--- config-filter.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../../src/lib-settings -I../../src/lib-master -DPKG_RUNDIR=\"/var/run/dovecot\" -DPKG_STATEDIR=\"/var/db/dovecot\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DEXAMPLE_CONFIG_DIR=\"/usr/local/share/doc/dovecot/example-config\" -DMODULEDIR=\"/usr/local/lib/dovecot\" -DSSLDIR=\"/etc/ssl\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT config-filter.lo -MD -MP -MF .deps/config-filter.Tpo -c config-filter.c  -fPIC -DPIC -o .libs/config-filter.o
--- config-parser.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../../src/lib-settings -I../../src/lib-master -DPKG_RUNDIR=\"/var/run/dovecot\" -DPKG_STATEDIR=\"/var/db/dovecot\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DEXAMPLE_CONFIG_DIR=\"/usr/local/share/doc/dovecot/example-config\" -DMODULEDIR=\"/usr/local/lib/dovecot\" -DSSLDIR=\"/etc/ssl\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT config-parser.lo -MD -MP -MF .deps/config-parser.Tpo -c config-parser.c  -fPIC -DPIC -o .libs/config-parser.o
--- config-connection.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../../src/lib-settings -I../../src/lib-master -DPKG_RUNDIR=\"/var/run/dovecot\" -DPKG_STATEDIR=\"/var/db/dovecot\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DEXAMPLE_CONFIG_DIR=\"/usr/local/share/doc/dovecot/example-config\" -DMODULEDIR=\"/usr/local/lib/dovecot\" -DSSLDIR=\"/etc/ssl\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT config-connection.lo -MD -MP -MF .deps/config-connection.Tpo -c config-connection.c -fPIE -o config-connection.o >/dev/null 2>&1
--- config-filter.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../../src/lib-settings -I../../src/lib-master -DPKG_RUNDIR=\"/var/run/dovecot\" -DPKG_STATEDIR=\"/var/db/dovecot\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DEXAMPLE_CONFIG_DIR=\"/usr/local/share/doc/dovecot/example-config\" -DMODULEDIR=\"/usr/local/lib/dovecot\" -DSSLDIR=\"/etc/ssl\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT config-filter.lo -MD -MP -MF .deps/config-filter.Tpo -c config-filter.c -fPIE -o config-filter.o >/dev/null 2>&1
--- config-connection.lo ---
mv -f .deps/config-connection.Tpo .deps/config-connection.Plo
--- config-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-mail  -I../../src/lib-settings  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DEXAMPLE_CONFIG_DIR=\""/usr/local/share/doc/dovecot/example-config"\"  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DSSLDIR=\""/etc/ssl\""  -DSYSCONFDIR=\""/usr/local/etc/dovecot"\"  -fPIE -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT config-request.lo -MD -MP -MF .deps/config-request.Tpo -c -o config-request.lo config-request.c
--- doveconf.o ---
mv -f .deps/doveconf.Tpo .deps/doveconf.Po
--- old-set-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-mail  -I../../src/lib-settings  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DEXAMPLE_CONFIG_DIR=\""/usr/local/share/doc/dovecot/example-config"\"  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DSSLDIR=\""/etc/ssl\""  -DSYSCONFDIR=\""/usr/local/etc/dovecot"\"  -fPIE -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT old-set-parser.lo -MD -MP -MF .deps/old-set-parser.Tpo -c -o old-set-parser.lo old-set-parser.c
--- config-request.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../../src/lib-settings -I../../src/lib-master -DPKG_RUNDIR=\"/var/run/dovecot\" -DPKG_STATEDIR=\"/var/db/dovecot\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DEXAMPLE_CONFIG_DIR=\"/usr/local/share/doc/dovecot/example-config\" -DMODULEDIR=\"/usr/local/lib/dovecot\" -DSSLDIR=\"/etc/ssl\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT config-request.lo -MD -MP -MF .deps/config-request.Tpo -c config-request.c  -fPIC -DPIC -o .libs/config-request.o
--- config-filter.lo ---
mv -f .deps/config-filter.Tpo .deps/config-filter.Plo
--- sysinfo-get.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../../src/lib-settings  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DEXAMPLE_CONFIG_DIR=\""/usr/local/share/doc/dovecot/example-config"\"  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DSSLDIR=\""/etc/ssl\""  -DSYSCONFDIR=\""/usr/local/etc/dovecot"\"  -fPIE -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT sysinfo-get.lo -MD -MP -MF .deps/sysinfo-get.Tpo -c -o sysinfo-get.lo sysinfo-get.c
--- old-set-parser.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../../src/lib-settings -I../../src/lib-master -DPKG_RUNDIR=\"/var/run/dovecot\" -DPKG_STATEDIR=\"/var/db/dovecot\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DEXAMPLE_CONFIG_DIR=\"/usr/local/share/doc/dovecot/example-config\" -DMODULEDIR=\"/usr/local/lib/dovecot\" -DSSLDIR=\"/etc/ssl\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT old-set-parser.lo -MD -MP -MF .deps/old-set-parser.Tpo -c old-set-parser.c  -fPIC -DPIC -o .libs/old-set-parser.o
--- config-parser.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../../src/lib-settings -I../../src/lib-master -DPKG_RUNDIR=\"/var/run/dovecot\" -DPKG_STATEDIR=\"/var/db/dovecot\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DEXAMPLE_CONFIG_DIR=\"/usr/local/share/doc/dovecot/example-config\" -DMODULEDIR=\"/usr/local/lib/dovecot\" -DSSLDIR=\"/etc/ssl\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT config-parser.lo -MD -MP -MF .deps/config-parser.Tpo -c config-parser.c -fPIE -o config-parser.o >/dev/null 2>&1
--- sysinfo-get.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../../src/lib-settings -I../../src/lib-master -DPKG_RUNDIR=\"/var/run/dovecot\" -DPKG_STATEDIR=\"/var/db/dovecot\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DEXAMPLE_CONFIG_DIR=\"/usr/local/share/doc/dovecot/example-config\" -DMODULEDIR=\"/usr/local/lib/dovecot\" -DSSLDIR=\"/etc/ssl\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT sysinfo-get.lo -MD -MP -MF .deps/sysinfo-get.Tpo -c sysinfo-get.c  -fPIC -DPIC -o .libs/sysinfo-get.o
--- config-request.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../../src/lib-settings -I../../src/lib-master -DPKG_RUNDIR=\"/var/run/dovecot\" -DPKG_STATEDIR=\"/var/db/dovecot\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DEXAMPLE_CONFIG_DIR=\"/usr/local/share/doc/dovecot/example-config\" -DMODULEDIR=\"/usr/local/lib/dovecot\" -DSSLDIR=\"/etc/ssl\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT config-request.lo -MD -MP -MF .deps/config-request.Tpo -c config-request.c -fPIE -o config-request.o >/dev/null 2>&1
--- sysinfo-get.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../../src/lib-settings -I../../src/lib-master -DPKG_RUNDIR=\"/var/run/dovecot\" -DPKG_STATEDIR=\"/var/db/dovecot\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DEXAMPLE_CONFIG_DIR=\"/usr/local/share/doc/dovecot/example-config\" -DMODULEDIR=\"/usr/local/lib/dovecot\" -DSSLDIR=\"/etc/ssl\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT sysinfo-get.lo -MD -MP -MF .deps/sysinfo-get.Tpo -c sysinfo-get.c -fPIE -o sysinfo-get.o >/dev/null 2>&1
mv -f .deps/sysinfo-get.Tpo .deps/sysinfo-get.Plo
--- all-settings.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dns  -I../../src/lib-mail  -I../../src/lib-settings  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DEXAMPLE_CONFIG_DIR=\""/usr/local/share/doc/dovecot/example-config"\"  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DSSLDIR=\""/etc/ssl\""  -DSYSCONFDIR=\""/usr/local/etc/dovecot"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT all-settings.o -MD -MP -MF .deps/all-settings.Tpo -c -o all-settings.o all-settings.c
--- old-set-parser.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../../src/lib-settings -I../../src/lib-master -DPKG_RUNDIR=\"/var/run/dovecot\" -DPKG_STATEDIR=\"/var/db/dovecot\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DEXAMPLE_CONFIG_DIR=\"/usr/local/share/doc/dovecot/example-config\" -DMODULEDIR=\"/usr/local/lib/dovecot\" -DSSLDIR=\"/etc/ssl\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT old-set-parser.lo -MD -MP -MF .deps/old-set-parser.Tpo -c old-set-parser.c -fPIE -o old-set-parser.o >/dev/null 2>&1
--- config-request.lo ---
mv -f .deps/config-request.Tpo .deps/config-request.Plo
--- old-set-parser.lo ---
mv -f .deps/old-set-parser.Tpo .deps/old-set-parser.Plo
--- config-parser.lo ---
mv -f .deps/config-parser.Tpo .deps/config-parser.Plo
--- libconfig.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 -mfunction-return=keep -Wall -W -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 libconfig.la  config-connection.lo config-filter.lo config-parser.lo  config-request.lo old-set-parser.lo sysinfo-get.lo  
libtool: link: ar cr .libs/libconfig.a .libs/config-connection.o .libs/config-filter.o .libs/config-parser.o .libs/config-request.o .libs/old-set-parser.o .libs/sysinfo-get.o 
libtool: link: ranlib .libs/libconfig.a
libtool: link: ( cd ".libs" && rm -f "libconfig.la" && ln -s "../libconfig.la" "libconfig.la" )
--- test-config-parser ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-dns  -I../../src/lib-mail  -I../../src/lib-settings  -I../../src/lib-master  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DEXAMPLE_CONFIG_DIR=\""/usr/local/share/doc/dovecot/example-config"\"  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DSSLDIR=\""/etc/ssl\""  -DSYSCONFDIR=\""/usr/local/etc/dovecot"\"  -fPIE -DPIE -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -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-config-parser test_config_parser-test-config-parser.o libconfig.la  ../../src/lib-dovecot/libdovecot.la -export-dynamic 
--- all-settings.o ---
mv -f .deps/all-settings.Tpo .deps/all-settings.Po
--- config ---
--- doveconf ---
--- config ---
/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 -mfunction-return=keep -Wall -W -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 config all-settings.o main.o libconfig.la  ../../src/lib-dovecot/libdovecot.la -export-dynamic    -pie  -lm 
--- doveconf ---
/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 -mfunction-return=keep -Wall -W -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 doveconf all-settings.o doveconf.o libconfig.la  ../../src/lib-dovecot/libdovecot.la -export-dynamic    -pie  -lm 
--- test-config-parser ---
libtool: link: cc -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-mail -I../../src/lib-settings -I../../src/lib-master -DPKG_RUNDIR=\"/var/run/dovecot\" -DPKG_STATEDIR=\"/var/db/dovecot\" -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -DEXAMPLE_CONFIG_DIR=\"/usr/local/share/doc/dovecot/example-config\" -DMODULEDIR=\"/usr/local/lib/dovecot\" -DSSLDIR=\"/etc/ssl\" -DSYSCONFDIR=\"/usr/local/etc/dovecot\" -fPIE -DPIE -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -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-config-parser test_config_parser-test-config-parser.o -Wl,--export-dynamic  -L/usr/local/lib ./.libs/libconfig.a ../../src/lib-dovecot/.libs/libdovecot.so -Wl,-rpath -Wl,/usr/local/lib/dovecot
--- doveconf ---
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 -mfunction-return=keep -Wall -W -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/doveconf all-settings.o doveconf.o -pie -Wl,--export-dynamic  -L/usr/local/lib ./.libs/libconfig.a ../../src/lib-dovecot/.libs/libdovecot.so -lm -Wl,-rpath -Wl,/usr/local/lib/dovecot
--- config ---
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 -mfunction-return=keep -Wall -W -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/config all-settings.o main.o -pie -Wl,--export-dynamic  -L/usr/local/lib ./.libs/libconfig.a ../../src/lib-dovecot/.libs/libdovecot.so -lm -Wl,-rpath -Wl,/usr/local/lib/dovecot
Making all in director
--- director-test.o ---
--- test-user-directory.o ---
--- main.o ---
--- auth-connection.o ---
--- director-test.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-imap  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-program-client  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT director-test.o -MD -MP -MF .deps/director-test.Tpo -c -o director-test.o director-test.c
--- test-user-directory.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-imap  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-program-client  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-user-directory.o -MD -MP -MF .deps/test-user-directory.Tpo -c -o test-user-directory.o test-user-directory.c
--- main.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-imap  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-program-client  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT main.o -MD -MP -MF .deps/main.Tpo -c -o main.o main.c
--- auth-connection.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-imap  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-program-client  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-connection.o -MD -MP -MF .deps/auth-connection.Tpo -c -o auth-connection.o auth-connection.c
--- test-user-directory.o ---
mv -f .deps/test-user-directory.Tpo .deps/test-user-directory.Po
--- director.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-imap  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-program-client  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT director.o -MD -MP -MF .deps/director.Tpo -c -o director.o director.c
--- auth-connection.o ---
mv -f .deps/auth-connection.Tpo .deps/auth-connection.Po
--- director-connection.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-imap  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-program-client  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT director-connection.o -MD -MP -MF .deps/director-connection.Tpo -c -o director-connection.o director-connection.c
--- main.o ---
mv -f .deps/main.Tpo .deps/main.Po
--- director-host.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-imap  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-program-client  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT director-host.o -MD -MP -MF .deps/director-host.Tpo -c -o director-host.o director-host.c
--- director-test.o ---
mv -f .deps/director-test.Tpo .deps/director-test.Po
--- director-request.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-imap  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-program-client  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT director-request.o -MD -MP -MF .deps/director-request.Tpo -c -o director-request.o director-request.c
--- director-host.o ---
mv -f .deps/director-host.Tpo .deps/director-host.Po
--- director-settings.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-imap  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-program-client  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT director-settings.o -MD -MP -MF .deps/director-settings.Tpo -c -o director-settings.o director-settings.c
mv -f .deps/director-settings.Tpo .deps/director-settings.Po
--- doveadm-connection.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-imap  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-program-client  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-connection.o -MD -MP -MF .deps/doveadm-connection.Tpo -c -o doveadm-connection.o doveadm-connection.c
--- director-request.o ---
mv -f .deps/director-request.Tpo .deps/director-request.Po
--- login-connection.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-imap  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-program-client  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT login-connection.o -MD -MP -MF .deps/login-connection.Tpo -c -o login-connection.o login-connection.c
mv -f .deps/login-connection.Tpo .deps/login-connection.Po
--- mail-host.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-imap  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-program-client  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-host.o -MD -MP -MF .deps/mail-host.Tpo -c -o mail-host.o mail-host.c
--- director.o ---
mv -f .deps/director.Tpo .deps/director.Po
--- notify-connection.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-imap  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-program-client  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT notify-connection.o -MD -MP -MF .deps/notify-connection.Tpo -c -o notify-connection.o notify-connection.c
mv -f .deps/notify-connection.Tpo .deps/notify-connection.Po
--- user-directory.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-auth  -I../../src/lib-imap  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-program-client  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT user-directory.o -MD -MP -MF .deps/user-directory.Tpo -c -o user-directory.o user-directory.c
--- doveadm-connection.o ---
mv -f .deps/doveadm-connection.Tpo .deps/doveadm-connection.Po
--- director-test ---
/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 -mfunction-return=keep -Wall -W -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 director-test director-test.o ../../src/lib-dovecot/libdovecot.la -export-dynamic 
--- mail-host.o ---
mv -f .deps/mail-host.Tpo .deps/mail-host.Po
--- director-test ---
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 -mfunction-return=keep -Wall -W -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/director-test director-test.o -Wl,--export-dynamic  -L/usr/local/lib ../../src/lib-dovecot/.libs/libdovecot.so -Wl,-rpath -Wl,/usr/local/lib/dovecot
--- director-connection.o ---
mv -f .deps/director-connection.Tpo .deps/director-connection.Po
--- user-directory.o ---
mv -f .deps/user-directory.Tpo .deps/user-directory.Po
--- director ---
/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 -mfunction-return=keep -Wall -W -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 director main.o auth-connection.o  director.o director-connection.o  director-host.o director-request.o  director-settings.o doveadm-connection.o  login-connection.o mail-host.o  notify-connection.o user-directory.o ../../src/lib-dovecot/libdovecot.la -export-dynamic  -pie 
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 -mfunction-return=keep -Wall -W -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/director main.o auth-connection.o director.o director-connection.o director-host.o director-request.o director-settings.o doveadm-connection.o login-connection.o mail-host.o notify-connection.o user-directory.o -pie -Wl,--export-dynamic  -L/usr/local/lib ../../src/lib-dovecot/.libs/libdovecot.so -Wl,-rpath -Wl,/usr/local/lib/dovecot
--- test-user-directory ---
/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 -mfunction-return=keep -Wall -W -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-user-directory test-user-directory.o user-directory.o ../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 -mfunction-return=keep -Wall -W -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-user-directory test-user-directory.o user-directory.o  -L/usr/local/lib ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a
Making all in replication
--- all-recursive ---
Making all in aggregator
--- aggregator.o ---
--- aggregator-settings.o ---
--- notify-connection.o ---
--- replicator-connection.o ---
--- aggregator.o ---
cc -DHAVE_CONFIG_H -I. -I../../..  -I../../../src/lib  -I../../../src/lib-settings  -I../../../src/lib-auth  -I../../../src/lib-master  -I../../../src/replication  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT aggregator.o -MD -MP -MF .deps/aggregator.Tpo -c -o aggregator.o aggregator.c
--- aggregator-settings.o ---
cc -DHAVE_CONFIG_H -I. -I../../..  -I../../../src/lib  -I../../../src/lib-settings  -I../../../src/lib-auth  -I../../../src/lib-master  -I../../../src/replication  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT aggregator-settings.o -MD -MP -MF .deps/aggregator-settings.Tpo -c -o aggregator-settings.o aggregator-settings.c
--- notify-connection.o ---
cc -DHAVE_CONFIG_H -I. -I../../..  -I../../../src/lib  -I../../../src/lib-settings  -I../../../src/lib-auth  -I../../../src/lib-master  -I../../../src/replication  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT notify-connection.o -MD -MP -MF .deps/notify-connection.Tpo -c -o notify-connection.o notify-connection.c
--- replicator-connection.o ---
cc -DHAVE_CONFIG_H -I. -I../../..  -I../../../src/lib  -I../../../src/lib-settings  -I../../../src/lib-auth  -I../../../src/lib-master  -I../../../src/replication  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT replicator-connection.o -MD -MP -MF .deps/replicator-connection.Tpo -c -o replicator-connection.o replicator-connection.c
--- aggregator-settings.o ---
mv -f .deps/aggregator-settings.Tpo .deps/aggregator-settings.Po
--- aggregator.o ---
mv -f .deps/aggregator.Tpo .deps/aggregator.Po
--- notify-connection.o ---
mv -f .deps/notify-connection.Tpo .deps/notify-connection.Po
--- replicator-connection.o ---
mv -f .deps/replicator-connection.Tpo .deps/replicator-connection.Po
--- aggregator ---
/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 -mfunction-return=keep -Wall -W -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  -pie -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o aggregator aggregator.o  aggregator-settings.o notify-connection.o  replicator-connection.o ../../../src/lib-dovecot/libdovecot.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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -pie -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o .libs/aggregator aggregator.o aggregator-settings.o notify-connection.o replicator-connection.o -Wl,--export-dynamic  -L/usr/local/lib ../../../src/lib-dovecot/.libs/libdovecot.so -Wl,-rpath -Wl,/usr/local/lib/dovecot
Making all in replicator
--- replicator-queue.o ---
--- replicator-settings.o ---
--- test-replicator-queue.o ---
--- doveadm-connection.o ---
--- replicator-queue.o ---
cc -DHAVE_CONFIG_H -I. -I../../..  -I../../../src/lib  -I../../../src/lib-test  -I../../../src/lib-settings  -I../../../src/lib-auth  -I../../../src/lib-master  -I../../../src/replication  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT replicator-queue.o -MD -MP -MF .deps/replicator-queue.Tpo -c -o replicator-queue.o replicator-queue.c
--- replicator-settings.o ---
cc -DHAVE_CONFIG_H -I. -I../../..  -I../../../src/lib  -I../../../src/lib-test  -I../../../src/lib-settings  -I../../../src/lib-auth  -I../../../src/lib-master  -I../../../src/replication  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT replicator-settings.o -MD -MP -MF .deps/replicator-settings.Tpo -c -o replicator-settings.o replicator-settings.c
--- test-replicator-queue.o ---
cc -DHAVE_CONFIG_H -I. -I../../..  -I../../../src/lib  -I../../../src/lib-test  -I../../../src/lib-settings  -I../../../src/lib-auth  -I../../../src/lib-master  -I../../../src/replication  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-replicator-queue.o -MD -MP -MF .deps/test-replicator-queue.Tpo -c -o test-replicator-queue.o test-replicator-queue.c
--- doveadm-connection.o ---
cc -DHAVE_CONFIG_H -I. -I../../..  -I../../../src/lib  -I../../../src/lib-test  -I../../../src/lib-settings  -I../../../src/lib-auth  -I../../../src/lib-master  -I../../../src/replication  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-connection.o -MD -MP -MF .deps/doveadm-connection.Tpo -c -o doveadm-connection.o doveadm-connection.c
--- replicator-settings.o ---
mv -f .deps/replicator-settings.Tpo .deps/replicator-settings.Po
--- dsync-client.o ---
cc -DHAVE_CONFIG_H -I. -I../../..  -I../../../src/lib  -I../../../src/lib-test  -I../../../src/lib-settings  -I../../../src/lib-auth  -I../../../src/lib-master  -I../../../src/replication  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dsync-client.o -MD -MP -MF .deps/dsync-client.Tpo -c -o dsync-client.o dsync-client.c
--- test-replicator-queue.o ---
mv -f .deps/test-replicator-queue.Tpo .deps/test-replicator-queue.Po
--- replicator.o ---
cc -DHAVE_CONFIG_H -I. -I../../..  -I../../../src/lib  -I../../../src/lib-test  -I../../../src/lib-settings  -I../../../src/lib-auth  -I../../../src/lib-master  -I../../../src/replication  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT replicator.o -MD -MP -MF .deps/replicator.Tpo -c -o replicator.o replicator.c
--- doveadm-connection.o ---
mv -f .deps/doveadm-connection.Tpo .deps/doveadm-connection.Po
--- replicator-brain.o ---
cc -DHAVE_CONFIG_H -I. -I../../..  -I../../../src/lib  -I../../../src/lib-test  -I../../../src/lib-settings  -I../../../src/lib-auth  -I../../../src/lib-master  -I../../../src/replication  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT replicator-brain.o -MD -MP -MF .deps/replicator-brain.Tpo -c -o replicator-brain.o replicator-brain.c
--- dsync-client.o ---
mv -f .deps/dsync-client.Tpo .deps/dsync-client.Po
--- replicator-queue-auth.o ---
cc -DHAVE_CONFIG_H -I. -I../../..  -I../../../src/lib  -I../../../src/lib-test  -I../../../src/lib-settings  -I../../../src/lib-auth  -I../../../src/lib-master  -I../../../src/replication  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT replicator-queue-auth.o -MD -MP -MF .deps/replicator-queue-auth.Tpo -c -o replicator-queue-auth.o replicator-queue-auth.c
--- replicator.o ---
mv -f .deps/replicator.Tpo .deps/replicator.Po
--- notify-connection.o ---
--- replicator-queue.o ---
mv -f .deps/replicator-queue.Tpo .deps/replicator-queue.Po
--- notify-connection.o ---
cc -DHAVE_CONFIG_H -I. -I../../..  -I../../../src/lib  -I../../../src/lib-test  -I../../../src/lib-settings  -I../../../src/lib-auth  -I../../../src/lib-master  -I../../../src/replication  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT notify-connection.o -MD -MP -MF .deps/notify-connection.Tpo -c -o notify-connection.o notify-connection.c
--- test-replicator-queue ---
/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 -mfunction-return=keep -Wall -W -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-replicator-queue replicator-queue.o  replicator-settings.o test-replicator-queue.o ../../lib-test/libtest.la  ../../lib/liblib.la 
--- replicator-queue-auth.o ---
mv -f .deps/replicator-queue-auth.Tpo .deps/replicator-queue-auth.Po
--- replicator-brain.o ---
mv -f .deps/replicator-brain.Tpo .deps/replicator-brain.Po
--- test-replicator-queue ---
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 -mfunction-return=keep -Wall -W -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-replicator-queue replicator-queue.o replicator-settings.o test-replicator-queue.o  -L/usr/local/lib ../../lib-test/.libs/libtest.a ../../lib/.libs/liblib.a
--- notify-connection.o ---
mv -f .deps/notify-connection.Tpo .deps/notify-connection.Po
--- replicator ---
/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 -mfunction-return=keep -Wall -W -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  -pie -no-undefined -Wl,--as-needed  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o replicator doveadm-connection.o  dsync-client.o replicator.o  replicator-brain.o replicator-queue.o  replicator-queue-auth.o replicator-settings.o  notify-connection.o ../../../src/lib-dovecot/libdovecot.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 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -pie -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o .libs/replicator doveadm-connection.o dsync-client.o replicator.o replicator-brain.o replicator-queue.o replicator-queue-auth.o replicator-settings.o notify-connection.o -Wl,--export-dynamic  -L/usr/local/lib ../../../src/lib-dovecot/.libs/libdovecot.so -Wl,-rpath -Wl,/usr/local/lib/dovecot
Making all in util
--- test-fs.o ---
--- rawlog.o ---
--- script.o ---
--- health-check-settings.o ---
--- test-fs.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/auth  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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.o -MD -MP -MF .deps/test-fs.Tpo -c -o test-fs.o test-fs.c
--- rawlog.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/auth  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT rawlog.o -MD -MP -MF .deps/rawlog.Tpo -c -o rawlog.o rawlog.c
--- script.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/auth  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT script.o -MD -MP -MF .deps/script.Tpo -c -o script.o script.c
--- health-check-settings.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/auth  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT health-check-settings.o -MD -MP -MF .deps/health-check-settings.Tpo -c -o health-check-settings.o health-check-settings.c
mv -f .deps/health-check-settings.Tpo .deps/health-check-settings.Po
--- script-login.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/auth  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT script-login.o -MD -MP -MF .deps/script-login.Tpo -c -o script-login.o script-login.c
--- script.o ---
mv -f .deps/script.Tpo .deps/script.Po
--- tcpwrap.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/auth  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT tcpwrap.o -MD -MP -MF .deps/tcpwrap.Tpo -c -o tcpwrap.o tcpwrap.c
--- rawlog.o ---
mv -f .deps/rawlog.Tpo .deps/rawlog.Po
--- tcpwrap-settings.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/auth  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT tcpwrap-settings.o -MD -MP -MF .deps/tcpwrap-settings.Tpo -c -o tcpwrap-settings.o tcpwrap-settings.c
--- script-login.o ---
mv -f .deps/script-login.Tpo .deps/script-login.Po
--- gdbhelper.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/auth  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT gdbhelper.o -MD -MP -MF .deps/gdbhelper.Tpo -c -o gdbhelper.o gdbhelper.c
--- tcpwrap-settings.o ---
mv -f .deps/tcpwrap-settings.Tpo .deps/tcpwrap-settings.Po
--- maildirlock.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-auth  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/auth  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT maildirlock.o -MD -MP -MF .deps/maildirlock.Tpo -c -o maildirlock.o maildirlock.c
--- test-fs.o ---
mv -f .deps/test-fs.Tpo .deps/test-fs.Po
--- script ---
/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 -mfunction-return=keep -Wall -W -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 script script.o health-check-settings.o ../../src/lib-dovecot/libdovecot.la -export-dynamic  -pie 
--- tcpwrap.o ---
mv -f .deps/tcpwrap.Tpo .deps/tcpwrap.Po
--- rawlog ---
/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 -mfunction-return=keep -Wall -W -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 rawlog rawlog.o ../../src/lib-dovecot/libdovecot.la -export-dynamic  -pie 
--- gdbhelper.o ---
mv -f .deps/gdbhelper.Tpo .deps/gdbhelper.Po
--- script-login ---
/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 -mfunction-return=keep -Wall -W -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 script-login script-login.o ../../src/lib-storage/libdovecot-storage.la ../../src/lib-imap-storage/libimap-storage.la  ../../src/lib-dovecot/libdovecot.la -export-dynamic  -pie 
--- script ---
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 -mfunction-return=keep -Wall -W -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/script script.o health-check-settings.o -pie -Wl,--export-dynamic  -L/usr/local/lib ../../src/lib-dovecot/.libs/libdovecot.so -Wl,-rpath -Wl,/usr/local/lib/dovecot
--- maildirlock.o ---
mv -f .deps/maildirlock.Tpo .deps/maildirlock.Po
--- test-fs ---
/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 -mfunction-return=keep -Wall -W -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 test-fs.o ../../src/lib-dovecot/libdovecot.la -export-dynamic  -pie 
--- rawlog ---
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 -mfunction-return=keep -Wall -W -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/rawlog rawlog.o -pie -Wl,--export-dynamic  -L/usr/local/lib ../../src/lib-dovecot/.libs/libdovecot.so -Wl,-rpath -Wl,/usr/local/lib/dovecot
--- tcpwrap ---
/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 -mfunction-return=keep -Wall -W -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 tcpwrap tcpwrap.o  tcpwrap-settings.o ../../src/lib-dovecot/libdovecot.la -export-dynamic -lwrap  -pie 
--- gdbhelper ---
/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 -mfunction-return=keep -Wall -W -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 gdbhelper gdbhelper.o ../../src/lib-dovecot/libdovecot.la -export-dynamic  -pie 
--- script-login ---
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 -mfunction-return=keep -Wall -W -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/script-login script-login.o -pie -Wl,--export-dynamic  -L/usr/local/lib ../../src/lib-storage/.libs/libdovecot-storage.so ../../src/lib-imap-storage/.libs/libimap-storage.a ../../src/lib-dovecot/.libs/libdovecot.so -Wl,-rpath -Wl,/usr/local/lib/dovecot
--- test-fs ---
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 -mfunction-return=keep -Wall -W -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-fs test-fs.o -pie -Wl,--export-dynamic  -L/usr/local/lib ../../src/lib-dovecot/.libs/libdovecot.so -Wl,-rpath -Wl,/usr/local/lib/dovecot
--- tcpwrap ---
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 -mfunction-return=keep -Wall -W -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/tcpwrap tcpwrap.o tcpwrap-settings.o -pie -Wl,--export-dynamic  -L/usr/local/lib ../../src/lib-dovecot/.libs/libdovecot.so -lwrap -Wl,-rpath -Wl,/usr/local/lib/dovecot
--- maildirlock ---
/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 -mfunction-return=keep -Wall -W -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 maildirlock maildirlock.o ../../src/lib-dovecot/libdovecot.la -export-dynamic  -pie 
--- gdbhelper ---
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 -mfunction-return=keep -Wall -W -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/gdbhelper gdbhelper.o -pie -Wl,--export-dynamic  -L/usr/local/lib ../../src/lib-dovecot/.libs/libdovecot.so -Wl,-rpath -Wl,/usr/local/lib/dovecot
--- maildirlock ---
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 -mfunction-return=keep -Wall -W -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/maildirlock maildirlock.o -pie -Wl,--export-dynamic  -L/usr/local/lib ../../src/lib-dovecot/.libs/libdovecot.so -Wl,-rpath -Wl,/usr/local/lib/dovecot
Making all in doveadm
--- all-recursive ---
Making all in dsync
--- test-dsync-mailbox-tree-sync.o ---
--- dsync-brain.lo ---
--- dsync-brain-mailbox.lo ---
--- dsync-brain-mailbox-tree.lo ---
--- test-dsync-mailbox-tree-sync.o ---
cc -DHAVE_CONFIG_H -I. -I../../..  -I../../../src/lib  -I../../../src/lib-test  -I../../../src/lib-settings  -I../../../src/lib-ssl-iostream  -I../../../src/lib-master  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-dsync-mailbox-tree-sync.o -MD -MP -MF .deps/test-dsync-mailbox-tree-sync.Tpo -c -o test-dsync-mailbox-tree-sync.o test-dsync-mailbox-tree-sync.c
--- dsync-brain-mailbox.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-ssl-iostream  -I../../../src/lib-master  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dsync-brain-mailbox.lo -MD -MP -MF .deps/dsync-brain-mailbox.Tpo -c -o dsync-brain-mailbox.lo dsync-brain-mailbox.c
--- dsync-brain.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-ssl-iostream  -I../../../src/lib-master  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dsync-brain.lo -MD -MP -MF .deps/dsync-brain.Tpo -c -o dsync-brain.lo dsync-brain.c
--- dsync-brain-mailbox-tree.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-ssl-iostream  -I../../../src/lib-master  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dsync-brain-mailbox-tree.lo -MD -MP -MF .deps/dsync-brain-mailbox-tree.Tpo -c -o dsync-brain-mailbox-tree.lo dsync-brain-mailbox-tree.c
--- dsync-brain-mailbox.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-settings -I../../../src/lib-ssl-iostream -I../../../src/lib-master -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dsync-brain-mailbox.lo -MD -MP -MF .deps/dsync-brain-mailbox.Tpo -c dsync-brain-mailbox.c  -fPIC -DPIC -o .libs/dsync-brain-mailbox.o
--- dsync-brain.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-settings -I../../../src/lib-ssl-iostream -I../../../src/lib-master -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dsync-brain.lo -MD -MP -MF .deps/dsync-brain.Tpo -c dsync-brain.c  -fPIC -DPIC -o .libs/dsync-brain.o
--- dsync-brain-mailbox-tree.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-settings -I../../../src/lib-ssl-iostream -I../../../src/lib-master -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dsync-brain-mailbox-tree.lo -MD -MP -MF .deps/dsync-brain-mailbox-tree.Tpo -c dsync-brain-mailbox-tree.c  -fPIC -DPIC -o .libs/dsync-brain-mailbox-tree.o
--- test-dsync-mailbox-tree-sync.o ---
mv -f .deps/test-dsync-mailbox-tree-sync.Tpo .deps/test-dsync-mailbox-tree-sync.Po
--- dsync-brain-mailbox-tree-sync.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-ssl-iostream  -I../../../src/lib-master  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dsync-brain-mailbox-tree-sync.lo -MD -MP -MF .deps/dsync-brain-mailbox-tree-sync.Tpo -c -o dsync-brain-mailbox-tree-sync.lo dsync-brain-mailbox-tree-sync.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-settings -I../../../src/lib-ssl-iostream -I../../../src/lib-master -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dsync-brain-mailbox-tree-sync.lo -MD -MP -MF .deps/dsync-brain-mailbox-tree-sync.Tpo -c dsync-brain-mailbox-tree-sync.c  -fPIC -DPIC -o .libs/dsync-brain-mailbox-tree-sync.o
--- dsync-brain.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-settings -I../../../src/lib-ssl-iostream -I../../../src/lib-master -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dsync-brain.lo -MD -MP -MF .deps/dsync-brain.Tpo -c dsync-brain.c -o dsync-brain.o >/dev/null 2>&1
--- dsync-brain-mailbox.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-settings -I../../../src/lib-ssl-iostream -I../../../src/lib-master -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dsync-brain-mailbox.lo -MD -MP -MF .deps/dsync-brain-mailbox.Tpo -c dsync-brain-mailbox.c -o dsync-brain-mailbox.o >/dev/null 2>&1
--- dsync-brain-mailbox-tree.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-settings -I../../../src/lib-ssl-iostream -I../../../src/lib-master -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dsync-brain-mailbox-tree.lo -MD -MP -MF .deps/dsync-brain-mailbox-tree.Tpo -c dsync-brain-mailbox-tree.c -o dsync-brain-mailbox-tree.o >/dev/null 2>&1
--- dsync-brain-mailbox-tree-sync.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-settings -I../../../src/lib-ssl-iostream -I../../../src/lib-master -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dsync-brain-mailbox-tree-sync.lo -MD -MP -MF .deps/dsync-brain-mailbox-tree-sync.Tpo -c dsync-brain-mailbox-tree-sync.c -o dsync-brain-mailbox-tree-sync.o >/dev/null 2>&1
mv -f .deps/dsync-brain-mailbox-tree-sync.Tpo .deps/dsync-brain-mailbox-tree-sync.Plo
--- dsync-brain-mails.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-ssl-iostream  -I../../../src/lib-master  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dsync-brain-mails.lo -MD -MP -MF .deps/dsync-brain-mails.Tpo -c -o dsync-brain-mails.lo dsync-brain-mails.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-settings -I../../../src/lib-ssl-iostream -I../../../src/lib-master -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dsync-brain-mails.lo -MD -MP -MF .deps/dsync-brain-mails.Tpo -c dsync-brain-mails.c  -fPIC -DPIC -o .libs/dsync-brain-mails.o
--- dsync-brain.lo ---
mv -f .deps/dsync-brain.Tpo .deps/dsync-brain.Plo
--- dsync-deserializer.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-ssl-iostream  -I../../../src/lib-master  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dsync-deserializer.lo -MD -MP -MF .deps/dsync-deserializer.Tpo -c -o dsync-deserializer.lo dsync-deserializer.c
--- dsync-brain-mailbox.lo ---
mv -f .deps/dsync-brain-mailbox.Tpo .deps/dsync-brain-mailbox.Plo
--- dsync-deserializer.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-settings -I../../../src/lib-ssl-iostream -I../../../src/lib-master -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dsync-deserializer.lo -MD -MP -MF .deps/dsync-deserializer.Tpo -c dsync-deserializer.c  -fPIC -DPIC -o .libs/dsync-deserializer.o
--- dsync-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-ssl-iostream  -I../../../src/lib-master  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dsync-mail.lo -MD -MP -MF .deps/dsync-mail.Tpo -c -o dsync-mail.lo dsync-mail.c
--- dsync-brain-mails.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-settings -I../../../src/lib-ssl-iostream -I../../../src/lib-master -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dsync-brain-mails.lo -MD -MP -MF .deps/dsync-brain-mails.Tpo -c dsync-brain-mails.c -o dsync-brain-mails.o >/dev/null 2>&1
--- dsync-brain-mailbox-tree.lo ---
mv -f .deps/dsync-brain-mailbox-tree.Tpo .deps/dsync-brain-mailbox-tree.Plo
--- dsync-mailbox.lo ---
--- dsync-mail.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-settings -I../../../src/lib-ssl-iostream -I../../../src/lib-master -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dsync-mail.lo -MD -MP -MF .deps/dsync-mail.Tpo -c dsync-mail.c  -fPIC -DPIC -o .libs/dsync-mail.o
--- dsync-mailbox.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-ssl-iostream  -I../../../src/lib-master  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dsync-mailbox.lo -MD -MP -MF .deps/dsync-mailbox.Tpo -c -o dsync-mailbox.lo dsync-mailbox.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-settings -I../../../src/lib-ssl-iostream -I../../../src/lib-master -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dsync-mailbox.lo -MD -MP -MF .deps/dsync-mailbox.Tpo -c dsync-mailbox.c  -fPIC -DPIC -o .libs/dsync-mailbox.o
--- dsync-deserializer.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-settings -I../../../src/lib-ssl-iostream -I../../../src/lib-master -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dsync-deserializer.lo -MD -MP -MF .deps/dsync-deserializer.Tpo -c dsync-deserializer.c -o dsync-deserializer.o >/dev/null 2>&1
--- dsync-mail.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-settings -I../../../src/lib-ssl-iostream -I../../../src/lib-master -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dsync-mail.lo -MD -MP -MF .deps/dsync-mail.Tpo -c dsync-mail.c -o dsync-mail.o >/dev/null 2>&1
--- dsync-mailbox.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-settings -I../../../src/lib-ssl-iostream -I../../../src/lib-master -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dsync-mailbox.lo -MD -MP -MF .deps/dsync-mailbox.Tpo -c dsync-mailbox.c -o dsync-mailbox.o >/dev/null 2>&1
--- dsync-brain-mails.lo ---
mv -f .deps/dsync-brain-mails.Tpo .deps/dsync-brain-mails.Plo
--- dsync-mailbox-import.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-ssl-iostream  -I../../../src/lib-master  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dsync-mailbox-import.lo -MD -MP -MF .deps/dsync-mailbox-import.Tpo -c -o dsync-mailbox-import.lo dsync-mailbox-import.c
--- dsync-deserializer.lo ---
mv -f .deps/dsync-deserializer.Tpo .deps/dsync-deserializer.Plo
--- dsync-mailbox-export.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-ssl-iostream  -I../../../src/lib-master  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dsync-mailbox-export.lo -MD -MP -MF .deps/dsync-mailbox-export.Tpo -c -o dsync-mailbox-export.lo dsync-mailbox-export.c
--- dsync-mailbox-import.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-settings -I../../../src/lib-ssl-iostream -I../../../src/lib-master -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dsync-mailbox-import.lo -MD -MP -MF .deps/dsync-mailbox-import.Tpo -c dsync-mailbox-import.c  -fPIC -DPIC -o .libs/dsync-mailbox-import.o
--- dsync-mailbox-export.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-settings -I../../../src/lib-ssl-iostream -I../../../src/lib-master -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dsync-mailbox-export.lo -MD -MP -MF .deps/dsync-mailbox-export.Tpo -c dsync-mailbox-export.c  -fPIC -DPIC -o .libs/dsync-mailbox-export.o
--- dsync-mailbox.lo ---
mv -f .deps/dsync-mailbox.Tpo .deps/dsync-mailbox.Plo
--- dsync-mailbox-state.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-ssl-iostream  -I../../../src/lib-master  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dsync-mailbox-state.lo -MD -MP -MF .deps/dsync-mailbox-state.Tpo -c -o dsync-mailbox-state.lo dsync-mailbox-state.c
--- dsync-mail.lo ---
mv -f .deps/dsync-mail.Tpo .deps/dsync-mail.Plo
--- dsync-mailbox-tree.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-ssl-iostream  -I../../../src/lib-master  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dsync-mailbox-tree.lo -MD -MP -MF .deps/dsync-mailbox-tree.Tpo -c -o dsync-mailbox-tree.lo dsync-mailbox-tree.c
--- dsync-mailbox-state.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-settings -I../../../src/lib-ssl-iostream -I../../../src/lib-master -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dsync-mailbox-state.lo -MD -MP -MF .deps/dsync-mailbox-state.Tpo -c dsync-mailbox-state.c  -fPIC -DPIC -o .libs/dsync-mailbox-state.o
--- dsync-mailbox-tree.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-settings -I../../../src/lib-ssl-iostream -I../../../src/lib-master -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dsync-mailbox-tree.lo -MD -MP -MF .deps/dsync-mailbox-tree.Tpo -c dsync-mailbox-tree.c  -fPIC -DPIC -o .libs/dsync-mailbox-tree.o
--- dsync-mailbox-state.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-settings -I../../../src/lib-ssl-iostream -I../../../src/lib-master -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dsync-mailbox-state.lo -MD -MP -MF .deps/dsync-mailbox-state.Tpo -c dsync-mailbox-state.c -o dsync-mailbox-state.o >/dev/null 2>&1
mv -f .deps/dsync-mailbox-state.Tpo .deps/dsync-mailbox-state.Plo
--- dsync-mailbox-tree-fill.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-ssl-iostream  -I../../../src/lib-master  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dsync-mailbox-tree-fill.lo -MD -MP -MF .deps/dsync-mailbox-tree-fill.Tpo -c -o dsync-mailbox-tree-fill.lo dsync-mailbox-tree-fill.c
--- dsync-mailbox-export.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-settings -I../../../src/lib-ssl-iostream -I../../../src/lib-master -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dsync-mailbox-export.lo -MD -MP -MF .deps/dsync-mailbox-export.Tpo -c dsync-mailbox-export.c -o dsync-mailbox-export.o >/dev/null 2>&1
--- dsync-mailbox-tree-fill.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-settings -I../../../src/lib-ssl-iostream -I../../../src/lib-master -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dsync-mailbox-tree-fill.lo -MD -MP -MF .deps/dsync-mailbox-tree-fill.Tpo -c dsync-mailbox-tree-fill.c  -fPIC -DPIC -o .libs/dsync-mailbox-tree-fill.o
--- dsync-mailbox-tree.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-settings -I../../../src/lib-ssl-iostream -I../../../src/lib-master -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dsync-mailbox-tree.lo -MD -MP -MF .deps/dsync-mailbox-tree.Tpo -c dsync-mailbox-tree.c -o dsync-mailbox-tree.o >/dev/null 2>&1
--- dsync-mailbox-tree-fill.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-settings -I../../../src/lib-ssl-iostream -I../../../src/lib-master -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dsync-mailbox-tree-fill.lo -MD -MP -MF .deps/dsync-mailbox-tree-fill.Tpo -c dsync-mailbox-tree-fill.c -o dsync-mailbox-tree-fill.o >/dev/null 2>&1
--- dsync-mailbox-tree.lo ---
mv -f .deps/dsync-mailbox-tree.Tpo .deps/dsync-mailbox-tree.Plo
--- dsync-mailbox-tree-sync.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-ssl-iostream  -I../../../src/lib-master  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dsync-mailbox-tree-sync.lo -MD -MP -MF .deps/dsync-mailbox-tree-sync.Tpo -c -o dsync-mailbox-tree-sync.lo dsync-mailbox-tree-sync.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-settings -I../../../src/lib-ssl-iostream -I../../../src/lib-master -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dsync-mailbox-tree-sync.lo -MD -MP -MF .deps/dsync-mailbox-tree-sync.Tpo -c dsync-mailbox-tree-sync.c  -fPIC -DPIC -o .libs/dsync-mailbox-tree-sync.o
--- dsync-mailbox-export.lo ---
mv -f .deps/dsync-mailbox-export.Tpo .deps/dsync-mailbox-export.Plo
--- dsync-serializer.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-ssl-iostream  -I../../../src/lib-master  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dsync-serializer.lo -MD -MP -MF .deps/dsync-serializer.Tpo -c -o dsync-serializer.lo dsync-serializer.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-settings -I../../../src/lib-ssl-iostream -I../../../src/lib-master -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dsync-serializer.lo -MD -MP -MF .deps/dsync-serializer.Tpo -c dsync-serializer.c  -fPIC -DPIC -o .libs/dsync-serializer.o
--- dsync-mailbox-tree-fill.lo ---
mv -f .deps/dsync-mailbox-tree-fill.Tpo .deps/dsync-mailbox-tree-fill.Plo
--- dsync-ibc.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-ssl-iostream  -I../../../src/lib-master  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dsync-ibc.lo -MD -MP -MF .deps/dsync-ibc.Tpo -c -o dsync-ibc.lo dsync-ibc.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-settings -I../../../src/lib-ssl-iostream -I../../../src/lib-master -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dsync-ibc.lo -MD -MP -MF .deps/dsync-ibc.Tpo -c dsync-ibc.c  -fPIC -DPIC -o .libs/dsync-ibc.o
--- dsync-serializer.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-settings -I../../../src/lib-ssl-iostream -I../../../src/lib-master -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dsync-serializer.lo -MD -MP -MF .deps/dsync-serializer.Tpo -c dsync-serializer.c -o dsync-serializer.o >/dev/null 2>&1
--- dsync-ibc.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-settings -I../../../src/lib-ssl-iostream -I../../../src/lib-master -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dsync-ibc.lo -MD -MP -MF .deps/dsync-ibc.Tpo -c dsync-ibc.c -o dsync-ibc.o >/dev/null 2>&1
--- dsync-serializer.lo ---
mv -f .deps/dsync-serializer.Tpo .deps/dsync-serializer.Plo
--- dsync-ibc-stream.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-ssl-iostream  -I../../../src/lib-master  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dsync-ibc-stream.lo -MD -MP -MF .deps/dsync-ibc-stream.Tpo -c -o dsync-ibc-stream.lo dsync-ibc-stream.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-settings -I../../../src/lib-ssl-iostream -I../../../src/lib-master -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dsync-ibc-stream.lo -MD -MP -MF .deps/dsync-ibc-stream.Tpo -c dsync-ibc-stream.c  -fPIC -DPIC -o .libs/dsync-ibc-stream.o
--- dsync-mailbox-import.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-settings -I../../../src/lib-ssl-iostream -I../../../src/lib-master -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dsync-mailbox-import.lo -MD -MP -MF .deps/dsync-mailbox-import.Tpo -c dsync-mailbox-import.c -o dsync-mailbox-import.o >/dev/null 2>&1
--- dsync-ibc.lo ---
mv -f .deps/dsync-ibc.Tpo .deps/dsync-ibc.Plo
--- dsync-ibc-pipe.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-ssl-iostream  -I../../../src/lib-master  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dsync-ibc-pipe.lo -MD -MP -MF .deps/dsync-ibc-pipe.Tpo -c -o dsync-ibc-pipe.lo dsync-ibc-pipe.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-settings -I../../../src/lib-ssl-iostream -I../../../src/lib-master -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dsync-ibc-pipe.lo -MD -MP -MF .deps/dsync-ibc-pipe.Tpo -c dsync-ibc-pipe.c  -fPIC -DPIC -o .libs/dsync-ibc-pipe.o
--- dsync-mailbox-tree-sync.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-settings -I../../../src/lib-ssl-iostream -I../../../src/lib-master -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dsync-mailbox-tree-sync.lo -MD -MP -MF .deps/dsync-mailbox-tree-sync.Tpo -c dsync-mailbox-tree-sync.c -o dsync-mailbox-tree-sync.o >/dev/null 2>&1
--- dsync-ibc-pipe.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-settings -I../../../src/lib-ssl-iostream -I../../../src/lib-master -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dsync-ibc-pipe.lo -MD -MP -MF .deps/dsync-ibc-pipe.Tpo -c dsync-ibc-pipe.c -o dsync-ibc-pipe.o >/dev/null 2>&1
mv -f .deps/dsync-ibc-pipe.Tpo .deps/dsync-ibc-pipe.Plo
--- dsync-transaction-log-scan.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-ssl-iostream  -I../../../src/lib-master  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dsync-transaction-log-scan.lo -MD -MP -MF .deps/dsync-transaction-log-scan.Tpo -c -o dsync-transaction-log-scan.lo dsync-transaction-log-scan.c
--- dsync-ibc-stream.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-settings -I../../../src/lib-ssl-iostream -I../../../src/lib-master -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dsync-ibc-stream.lo -MD -MP -MF .deps/dsync-ibc-stream.Tpo -c dsync-ibc-stream.c -o dsync-ibc-stream.o >/dev/null 2>&1
--- dsync-transaction-log-scan.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-settings -I../../../src/lib-ssl-iostream -I../../../src/lib-master -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dsync-transaction-log-scan.lo -MD -MP -MF .deps/dsync-transaction-log-scan.Tpo -c dsync-transaction-log-scan.c  -fPIC -DPIC -o .libs/dsync-transaction-log-scan.o
dsync-transaction-log-scan.c:180:29: warning: result of comparison of constant 2147483647 with expression of type 'const uint8_t' (aka 'const unsigned char') is always false [-Wtautological-constant-out-of-range-compare]
                                change->remove_flags &= ENUM_NEGATE(rec->add_flags);
                                                        ^~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../src/lib/macros.h:295:92: note: expanded from macro 'ENUM_NEGATE'
        ((unsigned int)(~(x)) + COMPILE_ERROR_IF_TRUE(sizeof((x)) > sizeof(int) || (x) < 0 || (x) > INT_MAX))
                                ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~
../../../src/lib/macros.h:188:25: note: expanded from macro 'COMPILE_ERROR_IF_TRUE'
        (sizeof(char[1 - 2 * ((condition) ? 1 : 0)]) > 0 ? FALSE : FALSE)
                               ^~~~~~~~~
dsync-transaction-log-scan.c:182:26: warning: result of comparison of constant 2147483647 with expression of type 'const uint8_t' (aka 'const unsigned char') is always false [-Wtautological-constant-out-of-range-compare]
                                change->add_flags &= ENUM_NEGATE(rec->remove_flags);
                                                     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../src/lib/macros.h:295:92: note: expanded from macro 'ENUM_NEGATE'
        ((unsigned int)(~(x)) + COMPILE_ERROR_IF_TRUE(sizeof((x)) > sizeof(int) || (x) < 0 || (x) > INT_MAX))
                                ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~
../../../src/lib/macros.h:188:25: note: expanded from macro 'COMPILE_ERROR_IF_TRUE'
        (sizeof(char[1 - 2 * ((condition) ? 1 : 0)]) > 0 ? FALSE : FALSE)
                               ^~~~~~~~~
--- dsync-mailbox-tree-sync.lo ---
mv -f .deps/dsync-mailbox-tree-sync.Tpo .deps/dsync-mailbox-tree-sync.Plo
--- dsync-transaction-log-scan.lo ---
2 warnings generated.
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-settings -I../../../src/lib-ssl-iostream -I../../../src/lib-master -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT dsync-transaction-log-scan.lo -MD -MP -MF .deps/dsync-transaction-log-scan.Tpo -c dsync-transaction-log-scan.c -o dsync-transaction-log-scan.o >/dev/null 2>&1
--- dsync-mailbox-import.lo ---
mv -f .deps/dsync-mailbox-import.Tpo .deps/dsync-mailbox-import.Plo
--- dsync-transaction-log-scan.lo ---
mv -f .deps/dsync-transaction-log-scan.Tpo .deps/dsync-transaction-log-scan.Plo
--- dsync-ibc-stream.lo ---
mv -f .deps/dsync-ibc-stream.Tpo .deps/dsync-ibc-stream.Plo
--- libdsync.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 -mfunction-return=keep -Wall -W -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 libdsync.la  dsync-brain.lo dsync-brain-mailbox.lo  dsync-brain-mailbox-tree.lo dsync-brain-mailbox-tree-sync.lo  dsync-brain-mails.lo dsync-deserializer.lo dsync-mail.lo  dsync-mailbox.lo dsync-mailbox-import.lo  dsync-mailbox-export.lo dsync-mailbox-state.lo  dsync-mailbox-tree.lo dsync-mailbox-tree-fill.lo  dsync-mailbox-tree-sync.lo dsync-serializer.lo dsync-ibc.lo  dsync-ibc-stream.lo dsync-ibc-pipe.lo  dsync-transaction-log-scan.lo  
libtool: link: ar cr .libs/libdsync.a .libs/dsync-brain.o .libs/dsync-brain-mailbox.o .libs/dsync-brain-mailbox-tree.o .libs/dsync-brain-mailbox-tree-sync.o .libs/dsync-brain-mails.o .libs/dsync-deserializer.o .libs/dsync-mail.o .libs/dsync-mailbox.o .libs/dsync-mailbox-import.o .libs/dsync-mailbox-export.o .libs/dsync-mailbox-state.o .libs/dsync-mailbox-tree.o .libs/dsync-mailbox-tree-fill.o .libs/dsync-mailbox-tree-sync.o .libs/dsync-serializer.o .libs/dsync-ibc.o .libs/dsync-ibc-stream.o .libs/dsync-ibc-pipe.o .libs/dsync-transaction-log-scan.o 
libtool: link: ranlib .libs/libdsync.a
libtool: link: ( cd ".libs" && rm -f "libdsync.la" && ln -s "../libdsync.la" "libdsync.la" )
--- libdovecot-dsync.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 -mfunction-return=keep -Wall -W -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 libdovecot-dsync.la -rpath /usr/local/lib/dovecot  libdsync.la ../../lib-storage/libdovecot-storage.la ../../lib-dovecot/libdovecot.la 
libtool: link: cc -shared  -fPIC -DPIC  -Wl,--whole-archive ./.libs/libdsync.a -Wl,--no-whole-archive  -Wl,-rpath -Wl,/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-storage/.libs -Wl,-rpath -Wl,/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-dovecot/.libs -Wl,-rpath -Wl,/usr/local/lib/dovecot -L/usr/local/lib ../../lib-storage/.libs/libdovecot-storage.so ../../lib-dovecot/.libs/libdovecot.so  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,libdovecot-dsync.so.0 -o .libs/libdovecot-dsync.so.0.0.0
libtool: link: (cd ".libs" && rm -f "libdovecot-dsync.so.0" && ln -s "libdovecot-dsync.so.0.0.0" "libdovecot-dsync.so.0")
libtool: link: (cd ".libs" && rm -f "libdovecot-dsync.so" && ln -s "libdovecot-dsync.so.0.0.0" "libdovecot-dsync.so")
libtool: link: (cd .libs/libdovecot-dsync.lax/libdsync.a && ar x "/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/doveadm/dsync/./.libs/libdsync.a")
libtool: link: ar cr .libs/libdovecot-dsync.a   .libs/libdovecot-dsync.lax/libdsync.a/dsync-brain-mailbox-tree-sync.o .libs/libdovecot-dsync.lax/libdsync.a/dsync-brain-mailbox-tree.o .libs/libdovecot-dsync.lax/libdsync.a/dsync-brain-mailbox.o .libs/libdovecot-dsync.lax/libdsync.a/dsync-brain-mails.o .libs/libdovecot-dsync.lax/libdsync.a/dsync-brain.o .libs/libdovecot-dsync.lax/libdsync.a/dsync-deserializer.o .libs/libdovecot-dsync.lax/libdsync.a/dsync-ibc-pipe.o .libs/libdovecot-dsync.lax/libdsync.a/dsync-ibc-stream.o .libs/libdovecot-dsync.lax/libdsync.a/dsync-ibc.o .libs/libdovecot-dsync.lax/libdsync.a/dsync-mail.o .libs/libdovecot-dsync.lax/libdsync.a/dsync-mailbox-export.o .libs/libdovecot-dsync.lax/libdsync.a/dsync-mailbox-import.o .libs/libdovecot-dsync.lax/libdsync.a/dsync-mailbox-state.o .libs/libdovecot-dsync.lax/libdsync.a/dsync-mailbox-tree-fill.o .libs/libdovecot-dsync.lax/libdsync.a/dsync-mailbox-tree-sync.o .libs/libdovecot-dsync.lax/libdsync.a/dsync-mailbox-tree.o .libs/libdovecot-dsync.lax/libdsync.a/dsync-mailbox.o .libs/libdovecot-dsync.lax/libdsync.a/dsync-serializer.o .libs/libdovecot-dsync.lax/libdsync.a/dsync-transaction-log-scan.o 
libtool: link: ranlib .libs/libdovecot-dsync.a
libtool: link: rm -fr .libs/libdovecot-dsync.lax
libtool: link: ( cd ".libs" && rm -f "libdovecot-dsync.la" && ln -s "../libdovecot-dsync.la" "libdovecot-dsync.la" )
--- test-dsync-mailbox-tree-sync ---
/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 -mfunction-return=keep -Wall -W -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-dsync-mailbox-tree-sync test-dsync-mailbox-tree-sync.o dsync-mailbox-tree-sync.lo dsync-mailbox-tree.lo ../../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 -mfunction-return=keep -Wall -W -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-dsync-mailbox-tree-sync test-dsync-mailbox-tree-sync.o .libs/dsync-mailbox-tree-sync.o .libs/dsync-mailbox-tree.o  -L/usr/local/lib ../../lib-test/.libs/libtest.a ../../lib/.libs/liblib.a 
--- doveadm-auth.o ---
--- doveadm-dict.o ---
--- doveadm-director.o ---
--- doveadm-fs.o ---
--- doveadm-auth.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-auth.o -MD -MP -MF .deps/doveadm-auth.Tpo -c -o doveadm-auth.o doveadm-auth.c
--- doveadm-director.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY--- doveadm-dict.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY--- doveadm-director.o ---
_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-director.o -MD -MP -MF .deps/doveadm-director.Tpo -c -o doveadm-director.o doveadm-director.c
--- doveadm-dict.o ---
_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-dict.o -MD -MP -MF .deps/doveadm-dict.Tpo -c -o doveadm-dict.o doveadm-dict.c
--- doveadm-fs.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-fs.o -MD -MP -MF .deps/doveadm-fs.Tpo -c -o doveadm-fs.o doveadm-fs.c
--- doveadm-dict.o ---
mv -f .deps/doveadm-dict.Tpo .deps/doveadm-dict.Po
--- doveadm-instance.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-instance.o -MD -MP -MF .deps/doveadm-instance.Tpo -c -o doveadm-instance.o doveadm-instance.c
--- doveadm-fs.o ---
mv -f .deps/doveadm-fs.Tpo .deps/doveadm-fs.Po
--- doveadm-kick.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-kick.o -MD -MP -MF .deps/doveadm-kick.Tpo -c -o doveadm-kick.o doveadm-kick.c
--- doveadm-instance.o ---
mv -f .deps/doveadm-instance.Tpo .deps/doveadm-instance.Po
--- doveadm-log.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-log.o -MD -MP -MF .deps/doveadm-log.Tpo -c -o doveadm-log.o doveadm-log.c
--- doveadm-auth.o ---
mv -f .deps/doveadm-auth.Tpo .deps/doveadm-auth.Po
--- doveadm-master.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-master.o -MD -MP -MF .deps/doveadm-master.Tpo -c -o doveadm-master.o doveadm-master.c
--- doveadm-director.o ---
mv -f .deps/doveadm-director.Tpo .deps/doveadm-director.Po
--- doveadm-mutf7.o ---
--- doveadm-kick.o ---
mv -f .deps/doveadm-kick.Tpo .deps/doveadm-kick.Po
--- doveadm-mutf7.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-mutf7.o -MD -MP -MF .deps/doveadm-mutf7.Tpo -c -o doveadm-mutf7.o doveadm-mutf7.c
--- doveadm-penalty.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-penalty.o -MD -MP -MF .deps/doveadm-penalty.Tpo -c -o doveadm-penalty.o doveadm-penalty.c
--- doveadm-log.o ---
mv -f .deps/doveadm-log.Tpo .deps/doveadm-log.Po
--- doveadm-proxy.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-proxy.o -MD -MP -MF .deps/doveadm-proxy.Tpo -c -o doveadm-proxy.o doveadm-proxy.c
--- doveadm-master.o ---
mv -f .deps/doveadm-master.Tpo .deps/doveadm-master.Po
--- doveadm-replicator.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-replicator.o -MD -MP -MF .deps/doveadm-replicator.Tpo -c -o doveadm-replicator.o doveadm-replicator.c
--- doveadm-mutf7.o ---
mv -f .deps/doveadm-mutf7.Tpo .deps/doveadm-mutf7.Po
--- doveadm-sis.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-sis.o -MD -MP -MF .deps/doveadm-sis.Tpo -c -o doveadm-sis.o doveadm-sis.c
--- doveadm-penalty.o ---
mv -f .deps/doveadm-penalty.Tpo .deps/doveadm-penalty.Po
--- doveadm-stats.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-stats.o -MD -MP -MF .deps/doveadm-stats.Tpo -c -o doveadm-stats.o doveadm-stats.c
--- doveadm-proxy.o ---
mv -f .deps/doveadm-proxy.Tpo .deps/doveadm-proxy.Po
--- doveadm-oldstats.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-oldstats.o -MD -MP -MF .deps/doveadm-oldstats.Tpo -c -o doveadm-oldstats.o doveadm-oldstats.c
--- doveadm-sis.o ---
mv -f .deps/doveadm-sis.Tpo .deps/doveadm-sis.Po
--- doveadm-who.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-who.o -MD -MP -MF .deps/doveadm-who.Tpo -c -o doveadm-who.o doveadm-who.c
--- doveadm-replicator.o ---
mv -f .deps/doveadm-replicator.Tpo .deps/doveadm-replicator.Po
--- doveadm-dsync.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-dsync.o -MD -MP -MF .deps/doveadm-dsync.Tpo -c -o doveadm-dsync.o doveadm-dsync.c
--- doveadm-stats.o ---
mv -f .deps/doveadm-stats.Tpo .deps/doveadm-stats.Po
--- doveadm-mail.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-mail.o -MD -MP -MF .deps/doveadm-mail.Tpo -c -o doveadm-mail.o doveadm-mail.c
--- doveadm-who.o ---
mv -f .deps/doveadm-who.Tpo .deps/doveadm-who.Po
--- doveadm-mail-altmove.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-mail-altmove.o -MD -MP -MF .deps/doveadm-mail-altmove.Tpo -c -o doveadm-mail-altmove.o doveadm-mail-altmove.c
--- doveadm-oldstats.o ---
mv -f .deps/doveadm-oldstats.Tpo .deps/doveadm-oldstats.Po
--- doveadm-mail-batch.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-mail-batch.o -MD -MP -MF .deps/doveadm-mail-batch.Tpo -c -o doveadm-mail-batch.o doveadm-mail-batch.c
--- doveadm-mail-altmove.o ---
mv -f .deps/doveadm-mail-altmove.Tpo .deps/doveadm-mail-altmove.Po
--- doveadm-mail-deduplicate.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-mail-deduplicate.o -MD -MP -MF .deps/doveadm-mail-deduplicate.Tpo -c -o doveadm-mail-deduplicate.o doveadm-mail-deduplicate.c
--- doveadm-mail.o ---
mv -f .deps/doveadm-mail.Tpo .deps/doveadm-mail.Po
--- doveadm-mail-expunge.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-mail-expunge.o -MD -MP -MF .deps/doveadm-mail-expunge.Tpo -c -o doveadm-mail-expunge.o doveadm-mail-expunge.c
--- doveadm-mail-batch.o ---
mv -f .deps/doveadm-mail-batch.Tpo .deps/doveadm-mail-batch.Po
--- doveadm-mail-fetch.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-mail-fetch.o -MD -MP -MF .deps/doveadm-mail-fetch.Tpo -c -o doveadm-mail-fetch.o doveadm-mail-fetch.c
--- doveadm-mail-deduplicate.o ---
mv -f .deps/doveadm-mail-deduplicate.Tpo .deps/doveadm-mail-deduplicate.Po
--- doveadm-mail-flags.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-mail-flags.o -MD -MP -MF .deps/doveadm-mail-flags.Tpo -c -o doveadm-mail-flags.o doveadm-mail-flags.c
--- doveadm-dsync.o ---
mv -f .deps/doveadm-dsync.Tpo .deps/doveadm-dsync.Po
--- doveadm-mail-import.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-mail-import.o -MD -MP -MF .deps/doveadm-mail-import.Tpo -c -o doveadm-mail-import.o doveadm-mail-import.c
--- doveadm-mail-expunge.o ---
mv -f .deps/doveadm-mail-expunge.Tpo .deps/doveadm-mail-expunge.Po
--- doveadm-mail-index.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-mail-index.o -MD -MP -MF .deps/doveadm-mail-index.Tpo -c -o doveadm-mail-index.o doveadm-mail-index.c
--- doveadm-mail-flags.o ---
mv -f .deps/doveadm-mail-flags.Tpo .deps/doveadm-mail-flags.Po
--- doveadm-mail-iter.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-mail-iter.o -MD -MP -MF .deps/doveadm-mail-iter.Tpo -c -o doveadm-mail-iter.o doveadm-mail-iter.c
--- doveadm-mail-import.o ---
mv -f .deps/doveadm-mail-import.Tpo .deps/doveadm-mail-import.Po
--- doveadm-mail-mailbox.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-mail-mailbox.o -MD -MP -MF .deps/doveadm-mail-mailbox.Tpo -c -o doveadm-mail-mailbox.o doveadm-mail-mailbox.c
--- doveadm-mail-index.o ---
mv -f .deps/doveadm-mail-index.Tpo .deps/doveadm-mail-index.Po
--- doveadm-mail-mailbox-metadata.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-mail-mailbox-metadata.o -MD -MP -MF .deps/doveadm-mail-mailbox-metadata.Tpo -c -o doveadm-mail-mailbox-metadata.o doveadm-mail-mailbox-metadata.c
--- doveadm-mail-iter.o ---
mv -f .deps/doveadm-mail-iter.Tpo .deps/doveadm-mail-iter.Po
--- doveadm-mail-mailbox-status.o ---
--- doveadm-mail-fetch.o ---
mv -f .deps/doveadm-mail-fetch.Tpo .deps/doveadm-mail-fetch.Po
--- doveadm-mail-mailbox-status.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-mail-mailbox-status.o -MD -MP -MF .deps/doveadm-mail-mailbox-status.Tpo -c -o doveadm-mail-mailbox-status.o doveadm-mail-mailbox-status.c
--- doveadm-mail-copymove.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-mail-copymove.o -MD -MP -MF .deps/doveadm-mail-copymove.Tpo -c -o doveadm-mail-copymove.o doveadm-mail-copymove.c
mv -f .deps/doveadm-mail-copymove.Tpo .deps/doveadm-mail-copymove.Po
--- doveadm-mailbox-list-iter.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-mailbox-list-iter.o -MD -MP -MF .deps/doveadm-mailbox-list-iter.Tpo -c -o doveadm-mailbox-list-iter.o doveadm-mailbox-list-iter.c
--- doveadm-mail-mailbox-status.o ---
mv -f .deps/doveadm-mail-mailbox-status.Tpo .deps/doveadm-mail-mailbox-status.Po
--- doveadm-mail-save.o ---
--- doveadm-mail-mailbox-metadata.o ---
mv -f .deps/doveadm-mail-mailbox-metadata.Tpo .deps/doveadm-mail-mailbox-metadata.Po
--- doveadm-mail-save.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-mail-save.o -MD -MP -MF .deps/doveadm-mail-save.Tpo -c -o doveadm-mail-save.o doveadm-mail-save.c
--- doveadm-mail-search.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-mail-search.o -MD -MP -MF .deps/doveadm-mail-search.Tpo -c -o doveadm-mail-search.o doveadm-mail-search.c
--- doveadm-mail-mailbox.o ---
mv -f .deps/doveadm-mail-mailbox.Tpo .deps/doveadm-mail-mailbox.Po
--- doveadm-mail-server.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-mail-server.o -MD -MP -MF .deps/doveadm-mail-server.Tpo -c -o doveadm-mail-server.o doveadm-mail-server.c
--- doveadm-mail-search.o ---
mv -f .deps/doveadm-mail-search.Tpo .deps/doveadm-mail-search.Po
--- doveadm-mail-mailbox-cache.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-mail-mailbox-cache.o -MD -MP -MF .deps/doveadm-mail-mailbox-cache.Tpo -c -o doveadm-mail-mailbox-cache.o doveadm-mail-mailbox-cache.c
--- doveadm-mail-save.o ---
mv -f .deps/doveadm-mail-save.Tpo .deps/doveadm-mail-save.Po
--- doveadm-mailbox-list-iter.o ---
mv -f .deps/doveadm-mailbox-list-iter.Tpo .deps/doveadm-mailbox-list-iter.Po
--- doveadm-mail-rebuild.o ---
--- doveadm-dump.o ---
--- doveadm-mail-rebuild.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-mail-rebuild.o -MD -MP -MF .deps/doveadm-mail-rebuild.Tpo -c -o doveadm-mail-rebuild.o doveadm-mail-rebuild.c
--- doveadm-dump.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-dump.o -MD -MP -MF .deps/doveadm-dump.Tpo -c -o doveadm-dump.o doveadm-dump.c
--- doveadm-mail-rebuild.o ---
mv -f .deps/doveadm-mail-rebuild.Tpo .deps/doveadm-mail-rebuild.Po
--- doveadm-dump-dbox.o ---
--- doveadm-dump.o ---
mv -f .deps/doveadm-dump.Tpo .deps/doveadm-dump.Po
--- doveadm-dump-dbox.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY--- doveadm-dump-index.o ---
--- doveadm-dump-dbox.o ---
_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-dump-dbox.o -MD -MP -MF .deps/doveadm-dump-dbox.Tpo -c -o doveadm-dump-dbox.o doveadm-dump-dbox.c
--- doveadm-dump-index.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-dump-index.o -MD -MP -MF .deps/doveadm-dump-index.Tpo -c -o doveadm-dump-index.o doveadm-dump-index.c
--- doveadm-mail-server.o ---
mv -f .deps/doveadm-mail-server.Tpo .deps/doveadm-mail-server.Po
--- doveadm-dump-log.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-dump-log.o -MD -MP -MF .deps/doveadm-dump-log.Tpo -c -o doveadm-dump-log.o doveadm-dump-log.c
--- doveadm-mail-mailbox-cache.o ---
mv -f .deps/doveadm-mail-mailbox-cache.Tpo .deps/doveadm-mail-mailbox-cache.Po
--- doveadm-dump-mailboxlog.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-dump-mailboxlog.o -MD -MP -MF .deps/doveadm-dump-mailboxlog.Tpo -c -o doveadm-dump-mailboxlog.o doveadm-dump-mailboxlog.c
--- doveadm-dump-dbox.o ---
mv -f .deps/doveadm-dump-dbox.Tpo .deps/doveadm-dump-dbox.Po
--- doveadm-dump-thread.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-dump-thread.o -MD -MP -MF .deps/doveadm-dump-thread.Tpo -c -o doveadm-dump-thread.o doveadm-dump-thread.c
--- doveadm-dump-mailboxlog.o ---
mv -f .deps/doveadm-dump-mailboxlog.Tpo .deps/doveadm-dump-mailboxlog.Po
--- doveadm-dump-dcrypt-file.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-dump-dcrypt-file.o -MD -MP -MF .deps/doveadm-dump-dcrypt-file.Tpo -c -o doveadm-dump-dcrypt-file.o doveadm-dump-dcrypt-file.c
mv -f .deps/doveadm-dump-dcrypt-file.Tpo .deps/doveadm-dump-dcrypt-file.Po
--- doveadm-dump-dcrypt-key.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-dump-dcrypt-key.o -MD -MP -MF .deps/doveadm-dump-dcrypt-key.Tpo -c -o doveadm-dump-dcrypt-key.o doveadm-dump-dcrypt-key.c
--- doveadm-dump-thread.o ---
mv -f .deps/doveadm-dump-thread.Tpo .deps/doveadm-dump-thread.Po
--- doveadm-zlib.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-zlib.o -MD -MP -MF .deps/doveadm-zlib.Tpo -c -o doveadm-zlib.o doveadm-zlib.c
--- doveadm-dump-log.o ---
mv -f .deps/doveadm-dump-log.Tpo .deps/doveadm-dump-log.Po
--- doveadm-cmd.o ---
--- doveadm-dump-dcrypt-key.o ---
mv -f .deps/doveadm-dump-dcrypt-key.Tpo .deps/doveadm-dump-dcrypt-key.Po
--- doveadm-cmd.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-cmd.o -MD -MP -MF .deps/doveadm-cmd.Tpo -c -o doveadm-cmd.o doveadm-cmd.c
--- doveadm-print.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-print.o -MD -MP -MF .deps/doveadm-print.Tpo -c -o doveadm-print.o doveadm-print.c
--- doveadm-zlib.o ---
mv -f .deps/doveadm-zlib.Tpo .deps/doveadm-zlib.Po
--- doveadm-settings.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-settings.o -MD -MP -MF .deps/doveadm-settings.Tpo -c -o doveadm-settings.o doveadm-settings.c
--- doveadm-dump-index.o ---
mv -f .deps/doveadm-dump-index.Tpo .deps/doveadm-dump-index.Po
--- doveadm-util.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-util.o -MD -MP -MF .deps/doveadm-util.Tpo -c -o doveadm-util.o doveadm-util.c
--- doveadm-print.o ---
mv -f .deps/doveadm-print.Tpo .deps/doveadm-print.Po
--- server-connection.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT server-connection.o -MD -MP -MF .deps/server-connection.Tpo -c -o server-connection.o server-connection.c
--- doveadm-settings.o ---
mv -f .deps/doveadm-settings.Tpo .deps/doveadm-settings.Po
--- doveadm-print-formatted.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-print-formatted.o -MD -MP -MF .deps/doveadm-print-formatted.Tpo -c -o doveadm-print-formatted.o doveadm-print-formatted.c
--- doveadm-util.o ---
mv -f .deps/doveadm-util.Tpo .deps/doveadm-util.Po
--- doveadm.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm.o -MD -MP -MF .deps/doveadm.Tpo -c -o doveadm.o doveadm.c
--- doveadm-print-formatted.o ---
mv -f .deps/doveadm-print-formatted.Tpo .deps/doveadm-print-formatted.Po
--- doveadm-print-flow.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-print-flow.o -MD -MP -MF .deps/doveadm-print-flow.Tpo -c -o doveadm-print-flow.o doveadm-print-flow.c
--- doveadm-cmd.o ---
mv -f .deps/doveadm-cmd.Tpo .deps/doveadm-cmd.Po
--- doveadm-print-pager.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-print-pager.o -MD -MP -MF .deps/doveadm-print-pager.Tpo -c -o doveadm-print-pager.o doveadm-print-pager.c
--- doveadm-print-flow.o ---
mv -f .deps/doveadm-print-flow.Tpo .deps/doveadm-print-flow.Po
--- doveadm-print-tab.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-print-tab.o -MD -MP -MF .deps/doveadm-print-tab.Tpo -c -o doveadm-print-tab.o doveadm-print-tab.c
--- doveadm.o ---
mv -f .deps/doveadm.Tpo .deps/doveadm.Po
--- doveadm-print-table.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-print-table.o -MD -MP -MF .deps/doveadm-print-table.Tpo -c -o doveadm-print-table.o doveadm-print-table.c
--- server-connection.o ---
mv -f .deps/server-connection.Tpo .deps/server-connection.Po
--- doveadm-print-json.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-print-json.o -MD -MP -MF .deps/doveadm-print-json.Tpo -c -o doveadm-print-json.o doveadm-print-json.c
--- doveadm-print-tab.o ---
mv -f .deps/doveadm-print-tab.Tpo .deps/doveadm-print-tab.Po
--- doveadm-print-pager.o ---
mv -f .deps/doveadm-print-pager.Tpo .deps/doveadm-print-pager.Po
--- doveadm-pw.o ---
--- test-doveadm-util.o ---
--- doveadm-pw.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-pw.o -MD -MP -MF .deps/doveadm-pw.Tpo -c -o doveadm-pw.o doveadm-pw.c
--- test-doveadm-util.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-doveadm-util.o -MD -MP -MF .deps/test-doveadm-util.Tpo -c -o test-doveadm-util.o test-doveadm-util.c
mv -f .deps/test-doveadm-util.Tpo .deps/test-doveadm-util.Po
--- doveadm-auth-server.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-auth-server.o -MD -MP -MF .deps/doveadm-auth-server.Tpo -c -o doveadm-auth-server.o doveadm-auth-server.c
--- doveadm-print-json.o ---
mv -f .deps/doveadm-print-json.Tpo .deps/doveadm-print-json.Po
--- doveadm-pw.o ---
mv -f .deps/doveadm-pw.Tpo .deps/doveadm-pw.Po
--- client-connection.o ---
--- client-connection-tcp.o ---
--- client-connection.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT client-connection.o -MD -MP -MF .deps/client-connection.Tpo -c -o client-connection.o client-connection.c
--- client-connection-tcp.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT client-connection-tcp.o -MD -MP -MF .deps/client-connection-tcp.Tpo -c -o client-connection-tcp.o client-connection-tcp.c
--- doveadm-print-table.o ---
mv -f .deps/doveadm-print-table.Tpo .deps/doveadm-print-table.Po
--- client-connection-http.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT client-connection-http.o -MD -MP -MF .deps/client-connection-http.Tpo -c -o client-connection-http.o client-connection-http.c
--- client-connection.o ---
mv -f .deps/client-connection.Tpo .deps/client-connection.Po
--- doveadm-print-server.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-print-server.o -MD -MP -MF .deps/doveadm-print-server.Tpo -c -o doveadm-print-server.o doveadm-print-server.c
mv -f .deps/doveadm-print-server.Tpo .deps/doveadm-print-server.Po
--- main.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-test  -I../../src/lib-settings  -I../../src/lib-auth  -I../../src/lib-compression  -I../../src/lib-dict  -I../../src/lib-fs  -I../../src/lib-ssl-iostream  -I../../src/lib-master  -I../../src/lib-mail  -I../../src/lib-imap  -I../../src/lib-index  -I../../src/lib-storage  -I../../src/lib-imap-storage  -I../../src/lib-http  -I../../src/lib-dcrypt  -I../../src/auth  -I../../src/stats  -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -DAUTH_MODULE_DIR=\""/usr/local/lib/dovecot/auth"\"  -DDOVEADM_MODULEDIR=\""/usr/local/lib/dovecot/doveadm"\"  -DPKG_RUNDIR=\""/var/run/dovecot"\"  -DPKG_STATEDIR=\""/var/db/dovecot"\"  -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\"  -DBINDIR=\""/usr/local/bin"\"  -DMANDIR=\""/usr/local/share/man"\"  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT main.o -MD -MP -MF .deps/main.Tpo -c -o main.o main.c
--- doveadm-auth-server.o ---
mv -f .deps/doveadm-auth-server.Tpo .deps/doveadm-auth-server.Po
--- test-doveadm-util ---
/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 -mfunction-return=keep -Wall -W -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-doveadm-util doveadm-util.o  test-doveadm-util.o ../lib-test/libtest.la  ../lib/liblib.la -export-dynamic 
--- client-connection-tcp.o ---
mv -f .deps/client-connection-tcp.Tpo .deps/client-connection-tcp.Po
--- doveadm ---
/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 -mfunction-return=keep -Wall -W -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 doveadm doveadm-auth.o doveadm-dict.o  doveadm-director.o doveadm-fs.o  doveadm-instance.o doveadm-kick.o  doveadm-log.o doveadm-master.o  doveadm-mutf7.o doveadm-penalty.o  doveadm-proxy.o doveadm-replicator.o  doveadm-sis.o doveadm-stats.o  doveadm-oldstats.o doveadm-who.o doveadm-dsync.o doveadm-mail.o  doveadm-mail-altmove.o doveadm-mail-batch.o  doveadm-mail-deduplicate.o  doveadm-mail-expunge.o doveadm-mail-fetch.o  doveadm-mail-flags.o doveadm-mail-import.o  doveadm-mail-index.o doveadm-mail-iter.o  doveadm-mail-mailbox.o  doveadm-mail-mailbox-metadata.o  doveadm-mail-mailbox-status.o  doveadm-mail-copymove.o  doveadm-mailbox-list-iter.o  doveadm-mail-save.o doveadm-mail-search.o  doveadm-mail-server.o  doveadm-mail-mailbox-cache.o  doveadm-mail-rebuild.o doveadm-dump.o doveadm-dump-dbox.o  doveadm-dump-index.o doveadm-dump-log.o  doveadm-dump-mailboxlog.o  doveadm-dump-thread.o  doveadm-dump-dcrypt-file.o  doveadm-dump-dcrypt-key.o doveadm-zlib.o  doveadm-cmd.o doveadm-print.o  doveadm-settings.o doveadm-util.o  server-connection.o doveadm-print-formatted.o doveadm.o  doveadm-print-flow.o doveadm-print-pager.o  doveadm-print-tab.o doveadm-print-table.o  doveadm-print-json.o doveadm-pw.o dsync/libdsync.la  ../lib-compression/libcompression.la  ../auth/libpassword.la  ../lib-otp/libotp.la  -lcrypt  ../../src/lib-storage/libdovecot-storage.la ../../src/lib-imap-storage/libimap-storage.la  ../../src/lib-dovecot/libdovecot.la -export-dynamic    -pie  -lm 
--- test-doveadm-util ---
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 -mfunction-return=keep -Wall -W -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-doveadm-util doveadm-util.o test-doveadm-util.o -Wl,--export-dynamic  -L/usr/local/lib ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a
--- main.o ---
mv -f .deps/main.Tpo .deps/main.Po
--- client-connection-http.o ---
mv -f .deps/client-connection-http.Tpo .deps/client-connection-http.Po
--- doveadm-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 -mfunction-return=keep -Wall -W -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 doveadm-server doveadm-auth.o doveadm-dict.o  doveadm-director.o doveadm-fs.o  doveadm-instance.o doveadm-kick.o  doveadm-log.o doveadm-master.o  doveadm-mutf7.o doveadm-penalty.o  doveadm-proxy.o doveadm-replicator.o  doveadm-sis.o doveadm-stats.o  doveadm-oldstats.o doveadm-who.o doveadm-dsync.o doveadm-mail.o  doveadm-mail-altmove.o doveadm-mail-batch.o  doveadm-mail-deduplicate.o  doveadm-mail-expunge.o doveadm-mail-fetch.o  doveadm-mail-flags.o doveadm-mail-import.o  doveadm-mail-index.o doveadm-mail-iter.o  doveadm-mail-mailbox.o  doveadm-mail-mailbox-metadata.o  doveadm-mail-mailbox-status.o  doveadm-mail-copymove.o  doveadm-mailbox-list-iter.o  doveadm-mail-save.o doveadm-mail-search.o  doveadm-mail-server.o  doveadm-mail-mailbox-cache.o  doveadm-mail-rebuild.o doveadm-dump.o doveadm-dump-dbox.o  doveadm-dump-index.o doveadm-dump-log.o  doveadm-dump-mailboxlog.o  doveadm-dump-thread.o  doveadm-dump-dcrypt-file.o  doveadm-dump-dcrypt-key.o doveadm-zlib.o  doveadm-cmd.o doveadm-print.o  doveadm-settings.o doveadm-util.o  server-connection.o doveadm-print-formatted.o  doveadm-auth-server.o client-connection.o  client-connection-tcp.o  client-connection-http.o  doveadm-print-server.o doveadm-print-json.o  main.o dsync/libdsync.la  ../lib-compression/libcompression.la  ../../src/lib-storage/libdovecot-storage.la ../../src/lib-imap-storage/libimap-storage.la  ../../src/lib-dovecot/libdovecot.la -export-dynamic  -pie  -lm 
--- doveadm ---
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 -mfunction-return=keep -Wall -W -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/doveadm doveadm-auth.o doveadm-dict.o doveadm-director.o doveadm-fs.o doveadm-instance.o doveadm-kick.o doveadm-log.o doveadm-master.o doveadm-mutf7.o doveadm-penalty.o doveadm-proxy.o doveadm-replicator.o doveadm-sis.o doveadm-stats.o doveadm-oldstats.o doveadm-who.o doveadm-dsync.o doveadm-mail.o doveadm-mail-altmove.o doveadm-mail-batch.o doveadm-mail-deduplicate.o doveadm-mail-expunge.o doveadm-mail-fetch.o doveadm-mail-flags.o doveadm-mail-import.o doveadm-mail-index.o doveadm-mail-iter.o doveadm-mail-mailbox.o doveadm-mail-mailbox-metadata.o doveadm-mail-mailbox-status.o doveadm-mail-copymove.o doveadm-mailbox-list-iter.o doveadm-mail-save.o doveadm-mail-search.o doveadm-mail-server.o doveadm-mail-mailbox-cache.o doveadm-mail-rebuild.o doveadm-dump.o doveadm-dump-dbox.o doveadm-dump-index.o doveadm-dump-log.o doveadm-dump-mailboxlog.o doveadm-dump-thread.o doveadm-dump-dcrypt-file.o doveadm-dump-dcrypt-key.o doveadm-zlib.o doveadm-cmd.o doveadm-print.o doveadm-settings.o doveadm-util.o server-connection.o doveadm-print-formatted.o doveadm.o doveadm-print-flow.o doveadm-print-pager.o doveadm-print-tab.o doveadm-print-table.o doveadm-print-json.o doveadm-pw.o -pie -Wl,--export-dynamic  -L/usr/local/lib dsync/.libs/libdsync.a ../lib-compression/.libs/libcompression.a -lz -lbz2 -llzma -lzstd ../auth/.libs/libpassword.a ../lib-otp/.libs/libotp.a -lcrypt ../../src/lib-storage/.libs/libdovecot-storage.so ../../src/lib-imap-storage/.libs/libimap-storage.a ../../src/lib-dovecot/.libs/libdovecot.so -lm -Wl,-rpath -Wl,/usr/local/lib/dovecot
--- doveadm-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 -mfunction-return=keep -Wall -W -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/doveadm-server doveadm-auth.o doveadm-dict.o doveadm-director.o doveadm-fs.o doveadm-instance.o doveadm-kick.o doveadm-log.o doveadm-master.o doveadm-mutf7.o doveadm-penalty.o doveadm-proxy.o doveadm-replicator.o doveadm-sis.o doveadm-stats.o doveadm-oldstats.o doveadm-who.o doveadm-dsync.o doveadm-mail.o doveadm-mail-altmove.o doveadm-mail-batch.o doveadm-mail-deduplicate.o doveadm-mail-expunge.o doveadm-mail-fetch.o doveadm-mail-flags.o doveadm-mail-import.o doveadm-mail-index.o doveadm-mail-iter.o doveadm-mail-mailbox.o doveadm-mail-mailbox-metadata.o doveadm-mail-mailbox-status.o doveadm-mail-copymove.o doveadm-mailbox-list-iter.o doveadm-mail-save.o doveadm-mail-search.o doveadm-mail-server.o doveadm-mail-mailbox-cache.o doveadm-mail-rebuild.o doveadm-dump.o doveadm-dump-dbox.o doveadm-dump-index.o doveadm-dump-log.o doveadm-dump-mailboxlog.o doveadm-dump-thread.o doveadm-dump-dcrypt-file.o doveadm-dump-dcrypt-key.o doveadm-zlib.o doveadm-cmd.o doveadm-print.o doveadm-settings.o doveadm-util.o server-connection.o doveadm-print-formatted.o doveadm-auth-server.o client-connection.o client-connection-tcp.o client-connection-http.o doveadm-print-server.o doveadm-print-json.o main.o -pie -Wl,--export-dynamic  -L/usr/local/lib dsync/.libs/libdsync.a ../lib-compression/.libs/libcompression.a -lz -lbz2 -llzma -lzstd ../../src/lib-storage/.libs/libdovecot-storage.so ../../src/lib-imap-storage/.libs/libimap-storage.a ../../src/lib-dovecot/.libs/libdovecot.so -lm -Wl,-rpath -Wl,/usr/local/lib/dovecot
Making all in stats
--- test-stats-metrics.o ---
--- test-stats-common.o ---
--- test-client-writer.o ---
--- test-client-reader.o ---
--- test-stats-metrics.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-http  -I../../src/lib-ssl-iostream  -I../../src/lib-test  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-stats-metrics.o -MD -MP -MF .deps/test-stats-metrics.Tpo -c -o test-stats-metrics.o test-stats-metrics.c
--- test-stats-common.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-http  -I../../src/lib-ssl-iostream  -I../../src/lib-test  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-stats-common.o -MD -MP -MF .deps/test-stats-common.Tpo -c -o test-stats-common.o test-stats-common.c
--- test-client-writer.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-http  -I../../src/lib-ssl-iostream  -I../../src/lib-test  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-client-writer.o -MD -MP -MF .deps/test-client-writer.Tpo -c -o test-client-writer.o test-client-writer.c
--- test-client-reader.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-http  -I../../src/lib-ssl-iostream  -I../../src/lib-test  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-client-reader.o -MD -MP -MF .deps/test-client-reader.Tpo -c -o test-client-reader.o test-client-reader.c
--- test-stats-common.o ---
mv -f .deps/test-stats-common.Tpo .deps/test-stats-common.Po
--- main.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-http  -I../../src/lib-ssl-iostream  -I../../src/lib-test  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT main.o -MD -MP -MF .deps/main.Tpo -c -o main.o main.c
--- test-client-writer.o ---
mv -f .deps/test-client-writer.Tpo .deps/test-client-writer.Po
--- client-reader.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-http  -I../../src/lib-ssl-iostream  -I../../src/lib-test  -fPIE -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT client-reader.lo -MD -MP -MF .deps/client-reader.Tpo -c -o client-reader.lo client-reader.c
--- test-client-reader.o ---
mv -f .deps/test-client-reader.Tpo .deps/test-client-reader.Po
--- client-writer.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-http  -I../../src/lib-ssl-iostream  -I../../src/lib-test  -fPIE -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT client-writer.lo -MD -MP -MF .deps/client-writer.Tpo -c -o client-writer.lo client-writer.c
--- client-reader.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I../../src/lib-master -I../../src/lib-http -I../../src/lib-ssl-iostream -I../../src/lib-test -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT client-reader.lo -MD -MP -MF .deps/client-reader.Tpo -c client-reader.c  -fPIC -DPIC -o .libs/client-reader.o
--- client-writer.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I../../src/lib-master -I../../src/lib-http -I../../src/lib-ssl-iostream -I../../src/lib-test -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT client-writer.lo -MD -MP -MF .deps/client-writer.Tpo -c client-writer.c  -fPIC -DPIC -o .libs/client-writer.o
--- main.o ---
mv -f .deps/main.Tpo .deps/main.Po
--- client-http.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-http  -I../../src/lib-ssl-iostream  -I../../src/lib-test  -fPIE -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT client-http.lo -MD -MP -MF .deps/client-http.Tpo -c -o client-http.lo client-http.c
--- test-stats-metrics.o ---
mv -f .deps/test-stats-metrics.Tpo .deps/test-stats-metrics.Po
--- event-exporter-fmt.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-http  -I../../src/lib-ssl-iostream  -I../../src/lib-test  -fPIE -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-exporter-fmt.lo -MD -MP -MF .deps/event-exporter-fmt.Tpo -c -o event-exporter-fmt.lo event-exporter-fmt.c
--- client-http.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I../../src/lib-master -I../../src/lib-http -I../../src/lib-ssl-iostream -I../../src/lib-test -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT client-http.lo -MD -MP -MF .deps/client-http.Tpo -c client-http.c  -fPIC -DPIC -o .libs/client-http.o
--- event-exporter-fmt.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I../../src/lib-master -I../../src/lib-http -I../../src/lib-ssl-iostream -I../../src/lib-test -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-exporter-fmt.lo -MD -MP -MF .deps/event-exporter-fmt.Tpo -c event-exporter-fmt.c  -fPIC -DPIC -o .libs/event-exporter-fmt.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I../../src/lib-master -I../../src/lib-http -I../../src/lib-ssl-iostream -I../../src/lib-test -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-exporter-fmt.lo -MD -MP -MF .deps/event-exporter-fmt.Tpo -c event-exporter-fmt.c -fPIE -o event-exporter-fmt.o >/dev/null 2>&1
--- client-reader.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I../../src/lib-master -I../../src/lib-http -I../../src/lib-ssl-iostream -I../../src/lib-test -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT client-reader.lo -MD -MP -MF .deps/client-reader.Tpo -c client-reader.c -fPIE -o client-reader.o >/dev/null 2>&1
--- client-writer.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I../../src/lib-master -I../../src/lib-http -I../../src/lib-ssl-iostream -I../../src/lib-test -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT client-writer.lo -MD -MP -MF .deps/client-writer.Tpo -c client-writer.c -fPIE -o client-writer.o >/dev/null 2>&1
--- client-http.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I../../src/lib-master -I../../src/lib-http -I../../src/lib-ssl-iostream -I../../src/lib-test -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT client-http.lo -MD -MP -MF .deps/client-http.Tpo -c client-http.c -fPIE -o client-http.o >/dev/null 2>&1
--- event-exporter-fmt.lo ---
mv -f .deps/event-exporter-fmt.Tpo .deps/event-exporter-fmt.Plo
--- event-exporter-fmt-json.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-http  -I../../src/lib-ssl-iostream  -I../../src/lib-test  -fPIE -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-exporter-fmt-json.lo -MD -MP -MF .deps/event-exporter-fmt-json.Tpo -c -o event-exporter-fmt-json.lo event-exporter-fmt-json.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I../../src/lib-master -I../../src/lib-http -I../../src/lib-ssl-iostream -I../../src/lib-test -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-exporter-fmt-json.lo -MD -MP -MF .deps/event-exporter-fmt-json.Tpo -c event-exporter-fmt-json.c  -fPIC -DPIC -o .libs/event-exporter-fmt-json.o
--- client-reader.lo ---
mv -f .deps/client-reader.Tpo .deps/client-reader.Plo
--- event-exporter-fmt-none.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-http  -I../../src/lib-ssl-iostream  -I../../src/lib-test  -fPIE -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-exporter-fmt-none.lo -MD -MP -MF .deps/event-exporter-fmt-none.Tpo -c -o event-exporter-fmt-none.lo event-exporter-fmt-none.c
--- client-http.lo ---
mv -f .deps/client-http.Tpo .deps/client-http.Plo
--- event-exporter-fmt-tab-text.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-http  -I../../src/lib-ssl-iostream  -I../../src/lib-test  -fPIE -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-exporter-fmt-tab-text.lo -MD -MP -MF .deps/event-exporter-fmt-tab-text.Tpo -c -o event-exporter-fmt-tab-text.lo event-exporter-fmt-tab-text.c
--- event-exporter-fmt-none.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I../../src/lib-master -I../../src/lib-http -I../../src/lib-ssl-iostream -I../../src/lib-test -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-exporter-fmt-none.lo -MD -MP -MF .deps/event-exporter-fmt-none.Tpo -c event-exporter-fmt-none.c  -fPIC -DPIC -o .libs/event-exporter-fmt-none.o
--- client-writer.lo ---
mv -f .deps/client-writer.Tpo .deps/client-writer.Plo
--- event-exporter-transport-drop.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-http  -I../../src/lib-ssl-iostream  -I../../src/lib-test  -fPIE -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-exporter-transport-drop.lo -MD -MP -MF .deps/event-exporter-transport-drop.Tpo -c -o event-exporter-transport-drop.lo event-exporter-transport-drop.c
--- event-exporter-fmt-tab-text.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I../../src/lib-master -I../../src/lib-http -I../../src/lib-ssl-iostream -I../../src/lib-test -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-exporter-fmt-tab-text.lo -MD -MP -MF .deps/event-exporter-fmt-tab-text.Tpo -c event-exporter-fmt-tab-text.c  -fPIC -DPIC -o .libs/event-exporter-fmt-tab-text.o
--- event-exporter-transport-drop.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I../../src/lib-master -I../../src/lib-http -I../../src/lib-ssl-iostream -I../../src/lib-test -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-exporter-transport-drop.lo -MD -MP -MF .deps/event-exporter-transport-drop.Tpo -c event-exporter-transport-drop.c  -fPIC -DPIC -o .libs/event-exporter-transport-drop.o
--- event-exporter-fmt-json.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I../../src/lib-master -I../../src/lib-http -I../../src/lib-ssl-iostream -I../../src/lib-test -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-exporter-fmt-json.lo -MD -MP -MF .deps/event-exporter-fmt-json.Tpo -c event-exporter-fmt-json.c -fPIE -o event-exporter-fmt-json.o >/dev/null 2>&1
--- event-exporter-fmt-none.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I../../src/lib-master -I../../src/lib-http -I../../src/lib-ssl-iostream -I../../src/lib-test -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-exporter-fmt-none.lo -MD -MP -MF .deps/event-exporter-fmt-none.Tpo -c event-exporter-fmt-none.c -fPIE -o event-exporter-fmt-none.o >/dev/null 2>&1
--- event-exporter-transport-drop.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I../../src/lib-master -I../../src/lib-http -I../../src/lib-ssl-iostream -I../../src/lib-test -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-exporter-transport-drop.lo -MD -MP -MF .deps/event-exporter-transport-drop.Tpo -c event-exporter-transport-drop.c -fPIE -o event-exporter-transport-drop.o >/dev/null 2>&1
--- event-exporter-fmt-none.lo ---
mv -f .deps/event-exporter-fmt-none.Tpo .deps/event-exporter-fmt-none.Plo
--- event-exporter-transport-http-post.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-http  -I../../src/lib-ssl-iostream  -I../../src/lib-test  -fPIE -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-exporter-transport-http-post.lo -MD -MP -MF .deps/event-exporter-transport-http-post.Tpo -c -o event-exporter-transport-http-post.lo event-exporter-transport-http-post.c
--- event-exporter-fmt-tab-text.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I../../src/lib-master -I../../src/lib-http -I../../src/lib-ssl-iostream -I../../src/lib-test -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-exporter-fmt-tab-text.lo -MD -MP -MF .deps/event-exporter-fmt-tab-text.Tpo -c event-exporter-fmt-tab-text.c -fPIE -o event-exporter-fmt-tab-text.o >/dev/null 2>&1
--- event-exporter-transport-http-post.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I../../src/lib-master -I../../src/lib-http -I../../src/lib-ssl-iostream -I../../src/lib-test -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-exporter-transport-http-post.lo -MD -MP -MF .deps/event-exporter-transport-http-post.Tpo -c event-exporter-transport-http-post.c  -fPIC -DPIC -o .libs/event-exporter-transport-http-post.o
--- event-exporter-transport-drop.lo ---
mv -f .deps/event-exporter-transport-drop.Tpo .deps/event-exporter-transport-drop.Plo
--- event-exporter-transport-log.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-http  -I../../src/lib-ssl-iostream  -I../../src/lib-test  -fPIE -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-exporter-transport-log.lo -MD -MP -MF .deps/event-exporter-transport-log.Tpo -c -o event-exporter-transport-log.lo event-exporter-transport-log.c
--- event-exporter-fmt-json.lo ---
mv -f .deps/event-exporter-fmt-json.Tpo .deps/event-exporter-fmt-json.Plo
--- stats-service-openmetrics.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-http  -I../../src/lib-ssl-iostream  -I../../src/lib-test  -fPIE -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-service-openmetrics.lo -MD -MP -MF .deps/stats-service-openmetrics.Tpo -c -o stats-service-openmetrics.lo stats-service-openmetrics.c
--- event-exporter-transport-log.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I../../src/lib-master -I../../src/lib-http -I../../src/lib-ssl-iostream -I../../src/lib-test -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-exporter-transport-log.lo -MD -MP -MF .deps/event-exporter-transport-log.Tpo -c event-exporter-transport-log.c  -fPIC -DPIC -o .libs/event-exporter-transport-log.o
--- stats-service-openmetrics.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I../../src/lib-master -I../../src/lib-http -I../../src/lib-ssl-iostream -I../../src/lib-test -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-service-openmetrics.lo -MD -MP -MF .deps/stats-service-openmetrics.Tpo -c stats-service-openmetrics.c  -fPIC -DPIC -o .libs/stats-service-openmetrics.o
--- event-exporter-transport-http-post.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I../../src/lib-master -I../../src/lib-http -I../../src/lib-ssl-iostream -I../../src/lib-test -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-exporter-transport-http-post.lo -MD -MP -MF .deps/event-exporter-transport-http-post.Tpo -c event-exporter-transport-http-post.c -fPIE -o event-exporter-transport-http-post.o >/dev/null 2>&1
--- event-exporter-fmt-tab-text.lo ---
mv -f .deps/event-exporter-fmt-tab-text.Tpo .deps/event-exporter-fmt-tab-text.Plo
--- stats-service.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-http  -I../../src/lib-ssl-iostream  -I../../src/lib-test  -fPIE -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-service.lo -MD -MP -MF .deps/stats-service.Tpo -c -o stats-service.lo stats-service.c
--- event-exporter-transport-log.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I../../src/lib-master -I../../src/lib-http -I../../src/lib-ssl-iostream -I../../src/lib-test -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-exporter-transport-log.lo -MD -MP -MF .deps/event-exporter-transport-log.Tpo -c event-exporter-transport-log.c -fPIE -o event-exporter-transport-log.o >/dev/null 2>&1
--- stats-service.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I../../src/lib-master -I../../src/lib-http -I../../src/lib-ssl-iostream -I../../src/lib-test -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-service.lo -MD -MP -MF .deps/stats-service.Tpo -c stats-service.c  -fPIC -DPIC -o .libs/stats-service.o
--- event-exporter-transport-log.lo ---
mv -f .deps/event-exporter-transport-log.Tpo .deps/event-exporter-transport-log.Plo
--- stats-event-category.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-http  -I../../src/lib-ssl-iostream  -I../../src/lib-test  -fPIE -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-event-category.lo -MD -MP -MF .deps/stats-event-category.Tpo -c -o stats-event-category.lo stats-event-category.c
--- stats-service.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I../../src/lib-master -I../../src/lib-http -I../../src/lib-ssl-iostream -I../../src/lib-test -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-service.lo -MD -MP -MF .deps/stats-service.Tpo -c stats-service.c -fPIE -o stats-service.o >/dev/null 2>&1
--- event-exporter-transport-http-post.lo ---
mv -f .deps/event-exporter-transport-http-post.Tpo .deps/event-exporter-transport-http-post.Plo
--- stats-metrics.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-http  -I../../src/lib-ssl-iostream  -I../../src/lib-test  -fPIE -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-metrics.lo -MD -MP -MF .deps/stats-metrics.Tpo -c -o stats-metrics.lo stats-metrics.c
--- stats-event-category.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I../../src/lib-master -I../../src/lib-http -I../../src/lib-ssl-iostream -I../../src/lib-test -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-event-category.lo -MD -MP -MF .deps/stats-event-category.Tpo -c stats-event-category.c  -fPIC -DPIC -o .libs/stats-event-category.o
--- stats-metrics.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I../../src/lib-master -I../../src/lib-http -I../../src/lib-ssl-iostream -I../../src/lib-test -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-metrics.lo -MD -MP -MF .deps/stats-metrics.Tpo -c stats-metrics.c  -fPIC -DPIC -o .libs/stats-metrics.o
--- stats-service.lo ---
mv -f .deps/stats-service.Tpo .deps/stats-service.Plo
--- stats-settings.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-http  -I../../src/lib-ssl-iostream  -I../../src/lib-test  -fPIE -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-settings.lo -MD -MP -MF .deps/stats-settings.Tpo -c -o stats-settings.lo stats-settings.c
--- stats-event-category.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I../../src/lib-master -I../../src/lib-http -I../../src/lib-ssl-iostream -I../../src/lib-test -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-event-category.lo -MD -MP -MF .deps/stats-event-category.Tpo -c stats-event-category.c -fPIE -o stats-event-category.o >/dev/null 2>&1
--- stats-settings.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I../../src/lib-master -I../../src/lib-http -I../../src/lib-ssl-iostream -I../../src/lib-test -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-settings.lo -MD -MP -MF .deps/stats-settings.Tpo -c stats-settings.c  -fPIC -DPIC -o .libs/stats-settings.o
--- stats-event-category.lo ---
mv -f .deps/stats-event-category.Tpo .deps/stats-event-category.Plo
--- stats-service-openmetrics.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I../../src/lib-master -I../../src/lib-http -I../../src/lib-ssl-iostream -I../../src/lib-test -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-service-openmetrics.lo -MD -MP -MF .deps/stats-service-openmetrics.Tpo -c stats-service-openmetrics.c -fPIE -o stats-service-openmetrics.o >/dev/null 2>&1
--- stats-settings.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I../../src/lib-master -I../../src/lib-http -I../../src/lib-ssl-iostream -I../../src/lib-test -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-settings.lo -MD -MP -MF .deps/stats-settings.Tpo -c stats-settings.c -fPIE -o stats-settings.o >/dev/null 2>&1
--- stats-metrics.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-settings -I../../src/lib-master -I../../src/lib-http -I../../src/lib-ssl-iostream -I../../src/lib-test -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-metrics.lo -MD -MP -MF .deps/stats-metrics.Tpo -c stats-metrics.c -fPIE -o stats-metrics.o >/dev/null 2>&1
--- stats-settings.lo ---
mv -f .deps/stats-settings.Tpo .deps/stats-settings.Plo
--- stats-service-openmetrics.lo ---
mv -f .deps/stats-service-openmetrics.Tpo .deps/stats-service-openmetrics.Plo
--- stats-metrics.lo ---
mv -f .deps/stats-metrics.Tpo .deps/stats-metrics.Plo
--- libstats_local.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 -mfunction-return=keep -Wall -W -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 libstats_local.la  client-reader.lo client-writer.lo  client-http.lo event-exporter-fmt.lo  event-exporter-fmt-json.lo event-exporter-fmt-none.lo  event-exporter-fmt-tab-text.lo  event-exporter-transport-drop.lo  event-exporter-transport-http-post.lo  event-exporter-transport-log.lo stats-service-openmetrics.lo  stats-service.lo stats-event-category.lo stats-metrics.lo  stats-settings.lo  
libtool: link: ar cr .libs/libstats_local.a .libs/client-reader.o .libs/client-writer.o .libs/client-http.o .libs/event-exporter-fmt.o .libs/event-exporter-fmt-json.o .libs/event-exporter-fmt-none.o .libs/event-exporter-fmt-tab-text.o .libs/event-exporter-transport-drop.o .libs/event-exporter-transport-http-post.o .libs/event-exporter-transport-log.o .libs/stats-service-openmetrics.o .libs/stats-service.o .libs/stats-event-category.o .libs/stats-metrics.o .libs/stats-settings.o 
libtool: link: ranlib .libs/libstats_local.a
libtool: link: ( cd ".libs" && rm -f "libstats_local.la" && ln -s "../libstats_local.la" "libstats_local.la" )
--- stats ---
--- test-client-reader ---
--- test-client-writer ---
--- test-stats-metrics ---
--- test-client-reader ---
/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 -mfunction-return=keep -Wall -W -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-client-reader test-client-reader.o  test-stats-common.o libstats_local.la    ../../src/lib-dovecot/libdovecot.la -export-dynamic  -pie  -lm 
--- 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 -mfunction-return=keep -Wall -W -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 stats main.o libstats_local.la  ../../src/lib-dovecot/libdovecot.la -export-dynamic    -pie  -lm 
--- test-stats-metrics ---
/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 -mfunction-return=keep -Wall -W -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-stats-metrics test-stats-metrics.o  test-stats-common.o libstats_local.la    ../../src/lib-dovecot/libdovecot.la -export-dynamic  -pie  -lm 
--- test-client-writer ---
/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 -mfunction-return=keep -Wall -W -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-client-writer test-client-writer.o  test-stats-common.o libstats_local.la    ../../src/lib-dovecot/libdovecot.la -export-dynamic  -pie  -lm 
--- test-client-reader ---
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 -mfunction-return=keep -Wall -W -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-client-reader test-client-reader.o test-stats-common.o -pie -Wl,--export-dynamic  -L/usr/local/lib ./.libs/libstats_local.a ../../src/lib-dovecot/.libs/libdovecot.so -lm -Wl,-rpath -Wl,/usr/local/lib/dovecot
--- 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 -mfunction-return=keep -Wall -W -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/stats main.o -pie -Wl,--export-dynamic  -L/usr/local/lib ./.libs/libstats_local.a ../../src/lib-dovecot/.libs/libdovecot.so -lm -Wl,-rpath -Wl,/usr/local/lib/dovecot
--- test-client-writer ---
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 -mfunction-return=keep -Wall -W -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-client-writer test-client-writer.o test-stats-common.o -pie -Wl,--export-dynamic  -L/usr/local/lib ./.libs/libstats_local.a ../../src/lib-dovecot/.libs/libdovecot.so -lm -Wl,-rpath -Wl,/usr/local/lib/dovecot
--- test-stats-metrics ---
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 -mfunction-return=keep -Wall -W -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-stats-metrics test-stats-metrics.o test-stats-common.o -pie -Wl,--export-dynamic  -L/usr/local/lib ./.libs/libstats_local.a ../../src/lib-dovecot/.libs/libdovecot.so -lm -Wl,-rpath -Wl,/usr/local/lib/dovecot
Making all in old-stats
--- client.o ---
--- client-export.o ---
--- client-reset.o ---
--- fifo-input-connection.o ---
--- client.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -DSTATS_MODULE_DIR=\""/usr/local/lib/dovecot/old-stats"\"  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-old-stats  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT client.o -MD -MP -MF .deps/client.Tpo -c -o client.o client.c
--- client-export.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -DSTATS_MODULE_DIR=\""/usr/local/lib/dovecot/old-stats"\"  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-old-stats  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT client-export.o -MD -MP -MF .deps/client-export.Tpo -c -o client-export.o client-export.c
--- client-reset.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -DSTATS_MODULE_DIR=\""/usr/local/lib/dovecot/old-stats"\"  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-old-stats  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT client-reset.o -MD -MP -MF .deps/client-reset.Tpo -c -o client-reset.o client-reset.c
--- fifo-input-connection.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -DSTATS_MODULE_DIR=\""/usr/local/lib/dovecot/old-stats"\"  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-old-stats  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fifo-input-connection.o -MD -MP -MF .deps/fifo-input-connection.Tpo -c -o fifo-input-connection.o fifo-input-connection.c
--- client-reset.o ---
mv -f .deps/client-reset.Tpo .deps/client-reset.Po
--- global-memory.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -DSTATS_MODULE_DIR=\""/usr/local/lib/dovecot/old-stats"\"  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-old-stats  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT global-memory.o -MD -MP -MF .deps/global-memory.Tpo -c -o global-memory.o global-memory.c
--- fifo-input-connection.o ---
mv -f .deps/fifo-input-connection.Tpo .deps/fifo-input-connection.Po
--- mail-command.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -DSTATS_MODULE_DIR=\""/usr/local/lib/dovecot/old-stats"\"  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-old-stats  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-command.o -MD -MP -MF .deps/mail-command.Tpo -c -o mail-command.o mail-command.c
--- client.o ---
mv -f .deps/client.Tpo .deps/client.Po
--- mail-domain.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -DSTATS_MODULE_DIR=\""/usr/local/lib/dovecot/old-stats"\"  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-old-stats  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-domain.o -MD -MP -MF .deps/mail-domain.Tpo -c -o mail-domain.o mail-domain.c
--- global-memory.o ---
mv -f .deps/global-memory.Tpo .deps/global-memory.Po
--- mail-ip.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -DSTATS_MODULE_DIR=\""/usr/local/lib/dovecot/old-stats"\"  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-old-stats  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-ip.o -MD -MP -MF .deps/mail-ip.Tpo -c -o mail-ip.o mail-ip.c
--- mail-domain.o ---
mv -f .deps/mail-domain.Tpo .deps/mail-domain.Po
--- mail-session.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -DSTATS_MODULE_DIR=\""/usr/local/lib/dovecot/old-stats"\"  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-old-stats  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-session.o -MD -MP -MF .deps/mail-session.Tpo -c -o mail-session.o mail-session.c
--- mail-command.o ---
mv -f .deps/mail-command.Tpo .deps/mail-command.Po
--- mail-stats.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -DSTATS_MODULE_DIR=\""/usr/local/lib/dovecot/old-stats"\"  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-old-stats  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-stats.o -MD -MP -MF .deps/mail-stats.Tpo -c -o mail-stats.o mail-stats.c
--- mail-ip.o ---
mv -f .deps/mail-ip.Tpo .deps/mail-ip.Po
--- mail-user.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -DSTATS_MODULE_DIR=\""/usr/local/lib/dovecot/old-stats"\"  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-old-stats  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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.o -MD -MP -MF .deps/mail-user.Tpo -c -o mail-user.o mail-user.c
--- client-export.o ---
mv -f .deps/client-export.Tpo .deps/client-export.Po
--- main.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -DSTATS_MODULE_DIR=\""/usr/local/lib/dovecot/old-stats"\"  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-old-stats  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT main.o -MD -MP -MF .deps/main.Tpo -c -o main.o main.c
--- mail-stats.o ---
mv -f .deps/mail-stats.Tpo .deps/mail-stats.Po
--- stats-carbon.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -DSTATS_MODULE_DIR=\""/usr/local/lib/dovecot/old-stats"\"  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-old-stats  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-carbon.o -MD -MP -MF .deps/stats-carbon.Tpo -c -o stats-carbon.o stats-carbon.c
--- main.o ---
mv -f .deps/main.Tpo .deps/main.Po
--- stats-settings.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -DSTATS_MODULE_DIR=\""/usr/local/lib/dovecot/old-stats"\"  -I../../src/lib  -I../../src/lib-settings  -I../../src/lib-master  -I../../src/lib-old-stats  -fPIE -DPIE  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-settings.o -MD -MP -MF .deps/stats-settings.Tpo -c -o stats-settings.o stats-settings.c
--- mail-user.o ---
mv -f .deps/mail-user.Tpo .deps/mail-user.Po
--- mail-session.o ---
mv -f .deps/mail-session.Tpo .deps/mail-session.Po
--- stats-settings.o ---
mv -f .deps/stats-settings.Tpo .deps/stats-settings.Po
--- stats-carbon.o ---
mv -f .deps/stats-carbon.Tpo .deps/stats-carbon.Po
--- old-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 -mfunction-return=keep -Wall -W -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 old-stats client.o client-export.o  client-reset.o fifo-input-connection.o  global-memory.o mail-command.o  mail-domain.o mail-ip.o mail-session.o  mail-stats.o mail-user.o main.o  stats-carbon.o stats-settings.o ../../src/lib-dovecot/libdovecot.la -export-dynamic  -pie 
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 -mfunction-return=keep -Wall -W -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/old-stats client.o client-export.o client-reset.o fifo-input-connection.o global-memory.o mail-command.o mail-domain.o mail-ip.o mail-session.o mail-stats.o mail-user.o main.o stats-carbon.o stats-settings.o -pie -Wl,--export-dynamic  -L/usr/local/lib ../../src/lib-dovecot/.libs/libdovecot.so -Wl,-rpath -Wl,/usr/local/lib/dovecot
Making all in plugins
--- all-recursive ---
Making all in acl
--- test-acl.o ---
--- doveadm-acl.lo ---
--- acl-api.lo ---
--- acl-attributes.lo ---
--- test-acl.o ---
cc -DHAVE_CONFIG_H -I. -I../../..  -I../../../src/lib  -I../../../src/lib-test  -I../../../src/lib-dict  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage  -I../../../src/lib-storage/list  -I../../../src/doveadm  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-acl.o -MD -MP -MF .deps/test-acl.Tpo -c -o test-acl.o test-acl.c
--- doveadm-acl.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-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage  -I../../../src/lib-storage/list  -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-acl.lo -MD -MP -MF .deps/doveadm-acl.Tpo -c -o doveadm-acl.lo doveadm-acl.c
--- acl-attributes.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-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage  -I../../../src/lib-storage/list  -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT acl-attributes.lo -MD -MP -MF .deps/acl-attributes.Tpo -c -o acl-attributes.lo acl-attributes.c
--- acl-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-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage  -I../../../src/lib-storage/list  -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT acl-api.lo -MD -MP -MF .deps/acl-api.Tpo -c -o acl-api.lo acl-api.c
--- acl-attributes.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/list -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT acl-attributes.lo -MD -MP -MF .deps/acl-attributes.Tpo -c acl-attributes.c  -fPIC -DPIC -o .libs/acl-attributes.o
--- acl-api.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/list -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT acl-api.lo -MD -MP -MF .deps/acl-api.Tpo -c acl-api.c  -fPIC -DPIC -o .libs/acl-api.o
--- doveadm-acl.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/list -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-acl.lo -MD -MP -MF .deps/doveadm-acl.Tpo -c doveadm-acl.c  -fPIC -DPIC -o .libs/doveadm-acl.o
--- test-acl.o ---
mv -f .deps/test-acl.Tpo .deps/test-acl.Po
--- acl-backend.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-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage  -I../../../src/lib-storage/list  -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT acl-backend.lo -MD -MP -MF .deps/acl-backend.Tpo -c -o acl-backend.lo acl-backend.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/list -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT acl-backend.lo -MD -MP -MF .deps/acl-backend.Tpo -c acl-backend.c  -fPIC -DPIC -o .libs/acl-backend.o
--- acl-attributes.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/list -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT acl-attributes.lo -MD -MP -MF .deps/acl-attributes.Tpo -c acl-attributes.c -o acl-attributes.o >/dev/null 2>&1
--- acl-backend.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/list -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT acl-backend.lo -MD -MP -MF .deps/acl-backend.Tpo -c acl-backend.c -o acl-backend.o >/dev/null 2>&1
--- doveadm-acl.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/list -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-acl.lo -MD -MP -MF .deps/doveadm-acl.Tpo -c doveadm-acl.c -o doveadm-acl.o >/dev/null 2>&1
--- acl-backend.lo ---
mv -f .deps/acl-backend.Tpo .deps/acl-backend.Plo
--- acl-backend-vfile.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-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage  -I../../../src/lib-storage/list  -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT acl-backend-vfile.lo -MD -MP -MF .deps/acl-backend-vfile.Tpo -c -o acl-backend-vfile.lo acl-backend-vfile.c
--- acl-api.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/list -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT acl-api.lo -MD -MP -MF .deps/acl-api.Tpo -c acl-api.c -o acl-api.o >/dev/null 2>&1
--- acl-backend-vfile.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/list -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT acl-backend-vfile.lo -MD -MP -MF .deps/acl-backend-vfile.Tpo -c acl-backend-vfile.c  -fPIC -DPIC -o .libs/acl-backend-vfile.o
--- acl-attributes.lo ---
mv -f .deps/acl-attributes.Tpo .deps/acl-attributes.Plo
--- acl-backend-vfile-acllist.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-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage  -I../../../src/lib-storage/list  -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT acl-backend-vfile-acllist.lo -MD -MP -MF .deps/acl-backend-vfile-acllist.Tpo -c -o acl-backend-vfile-acllist.lo acl-backend-vfile-acllist.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/list -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT acl-backend-vfile-acllist.lo -MD -MP -MF .deps/acl-backend-vfile-acllist.Tpo -c acl-backend-vfile-acllist.c  -fPIC -DPIC -o .libs/acl-backend-vfile-acllist.o
--- doveadm-acl.lo ---
mv -f .deps/doveadm-acl.Tpo .deps/doveadm-acl.Plo
--- acl-backend-vfile-update.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-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage  -I../../../src/lib-storage/list  -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT acl-backend-vfile-update.lo -MD -MP -MF .deps/acl-backend-vfile-update.Tpo -c -o acl-backend-vfile-update.lo acl-backend-vfile-update.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/list -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT acl-backend-vfile-update.lo -MD -MP -MF .deps/acl-backend-vfile-update.Tpo -c acl-backend-vfile-update.c  -fPIC -DPIC -o .libs/acl-backend-vfile-update.o
--- acl-backend-vfile-acllist.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/list -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT acl-backend-vfile-acllist.lo -MD -MP -MF .deps/acl-backend-vfile-acllist.Tpo -c acl-backend-vfile-acllist.c -o acl-backend-vfile-acllist.o >/dev/null 2>&1
--- acl-backend-vfile-update.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/list -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT acl-backend-vfile-update.lo -MD -MP -MF .deps/acl-backend-vfile-update.Tpo -c acl-backend-vfile-update.c -o acl-backend-vfile-update.o >/dev/null 2>&1
--- acl-backend-vfile.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/list -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT acl-backend-vfile.lo -MD -MP -MF .deps/acl-backend-vfile.Tpo -c acl-backend-vfile.c -o acl-backend-vfile.o >/dev/null 2>&1
--- acl-api.lo ---
mv -f .deps/acl-api.Tpo .deps/acl-api.Plo
--- acl-cache.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-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage  -I../../../src/lib-storage/list  -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT acl-cache.lo -MD -MP -MF .deps/acl-cache.Tpo -c -o acl-cache.lo acl-cache.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/list -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT acl-cache.lo -MD -MP -MF .deps/acl-cache.Tpo -c acl-cache.c  -fPIC -DPIC -o .libs/acl-cache.o
acl-cache.c:240:25: warning: result of comparison of constant 2147483647 with expression of type 'unsigned char' is always false [-Wtautological-constant-out-of-range-compare]
--- acl-backend-vfile-update.lo ---
mv -f .deps/acl-backend-vfile-update.Tpo .deps/acl-backend-vfile-update.Plo
--- acl-cache.lo ---
                        old_mask->mask[i] &= ENUM_NEGATE(change_mask->mask[i]);
                                             ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../src/lib/macros.h:295:92: note: expanded from macro 'ENUM_NEGATE'
        ((unsigned int)(~(x)) + COMPILE_ERROR_IF_TRUE(sizeof((x)) > sizeof(int) || (x) < 0 || (x) > INT_MAX))
                                ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~
../../../src/lib/macros.h:188:25: note: expanded from macro 'COMPILE_ERROR_IF_TRUE'
        (sizeof(char[1 - 2 * ((condition) ? 1 : 0)]) > 0 ? FALSE : FALSE)
                               ^~~~~~~~~
acl-cache.c:364:21: warning: result of comparison of constant 2147483647 with expression of type 'unsigned char' is always false [-Wtautological-constant-out-of-range-compare]
                        mask->mask[i] &= ENUM_NEGATE(obj_cache->my_neg_rights->mask[i]);
                                         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
--- acl-global-file.lo ---
--- acl-cache.lo ---
../../../src/lib/macros.h:295:92: note: expanded from macro 'ENUM_NEGATE'
        ((unsigned int)(~(x)) + COMPILE_ERROR_IF_TRUE(sizeof((x)) > sizeof(int) || (x) < 0 || (x) > INT_MAX))
                                ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~
../../../src/lib/macros.h:188:25: note: expanded from macro 'COMPILE_ERROR_IF_TRUE'
        (sizeof(char[1 - 2 * ((condition) ? 1 : 0)]) > 0 ? FALSE : FALSE)
                               ^~~~~~~~~
--- acl-global-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-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage  -I../../../src/lib-storage/list  -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT acl-global-file.lo -MD -MP -MF .deps/acl-global-file.Tpo -c -o acl-global-file.lo acl-global-file.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/list -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT acl-global-file.lo -MD -MP -MF .deps/acl-global-file.Tpo -c acl-global-file.c  -fPIC -DPIC -o .libs/acl-global-file.o
--- acl-backend-vfile-acllist.lo ---
mv -f .deps/acl-backend-vfile-acllist.Tpo .deps/acl-backend-vfile-acllist.Plo
--- acl-lookup-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-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage  -I../../../src/lib-storage/list  -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT acl-lookup-dict.lo -MD -MP -MF .deps/acl-lookup-dict.Tpo -c -o acl-lookup-dict.lo acl-lookup-dict.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/list -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT acl-lookup-dict.lo -MD -MP -MF .deps/acl-lookup-dict.Tpo -c acl-lookup-dict.c  -fPIC -DPIC -o .libs/acl-lookup-dict.o
--- acl-backend-vfile.lo ---
mv -f .deps/acl-backend-vfile.Tpo .deps/acl-backend-vfile.Plo
--- acl-mailbox.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-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage  -I../../../src/lib-storage/list  -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT acl-mailbox.lo -MD -MP -MF .deps/acl-mailbox.Tpo -c -o acl-mailbox.lo acl-mailbox.c
--- acl-cache.lo ---
2 warnings generated.
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/list -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT acl-cache.lo -MD -MP -MF .deps/acl-cache.Tpo -c acl-cache.c -o acl-cache.o >/dev/null 2>&1
--- acl-mailbox.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/list -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT acl-mailbox.lo -MD -MP -MF .deps/acl-mailbox.Tpo -c acl-mailbox.c  -fPIC -DPIC -o .libs/acl-mailbox.o
--- acl-global-file.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/list -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT acl-global-file.lo -MD -MP -MF .deps/acl-global-file.Tpo -c acl-global-file.c -o acl-global-file.o >/dev/null 2>&1
mv -f .deps/acl-global-file.Tpo .deps/acl-global-file.Plo
--- acl-mailbox-list.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-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage  -I../../../src/lib-storage/list  -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT acl-mailbox-list.lo -MD -MP -MF .deps/acl-mailbox-list.Tpo -c -o acl-mailbox-list.lo acl-mailbox-list.c
--- acl-cache.lo ---
mv -f .deps/acl-cache.Tpo .deps/acl-cache.Plo
--- acl-plugin.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-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage  -I../../../src/lib-storage/list  -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT acl-plugin.lo -MD -MP -MF .deps/acl-plugin.Tpo -c -o acl-plugin.lo acl-plugin.c
--- acl-mailbox-list.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/list -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT acl-mailbox-list.lo -MD -MP -MF .deps/acl-mailbox-list.Tpo -c acl-mailbox-list.c  -fPIC -DPIC -o .libs/acl-mailbox-list.o
--- acl-lookup-dict.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/list -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT acl-lookup-dict.lo -MD -MP -MF .deps/acl-lookup-dict.Tpo -c acl-lookup-dict.c -o acl-lookup-dict.o >/dev/null 2>&1
--- acl-plugin.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/list -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT acl-plugin.lo -MD -MP -MF .deps/acl-plugin.Tpo -c acl-plugin.c  -fPIC -DPIC -o .libs/acl-plugin.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/list -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT acl-plugin.lo -MD -MP -MF .deps/acl-plugin.Tpo -c acl-plugin.c -o acl-plugin.o >/dev/null 2>&1
--- acl-mailbox.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/list -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT acl-mailbox.lo -MD -MP -MF .deps/acl-mailbox.Tpo -c acl-mailbox.c -o acl-mailbox.o >/dev/null 2>&1
--- acl-plugin.lo ---
mv -f .deps/acl-plugin.Tpo .deps/acl-plugin.Plo
--- acl-shared-storage.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-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage  -I../../../src/lib-storage/list  -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT acl-shared-storage.lo -MD -MP -MF .deps/acl-shared-storage.Tpo -c -o acl-shared-storage.lo acl-shared-storage.c
--- acl-lookup-dict.lo ---
mv -f .deps/acl-lookup-dict.Tpo .deps/acl-lookup-dict.Plo
--- acl-storage.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-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage  -I../../../src/lib-storage/list  -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT acl-storage.lo -MD -MP -MF .deps/acl-storage.Tpo -c -o acl-storage.lo acl-storage.c
--- acl-shared-storage.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/list -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT acl-shared-storage.lo -MD -MP -MF .deps/acl-shared-storage.Tpo -c acl-shared-storage.c  -fPIC -DPIC -o .libs/acl-shared-storage.o
--- acl-storage.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/list -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT acl-storage.lo -MD -MP -MF .deps/acl-storage.Tpo -c acl-storage.c  -fPIC -DPIC -o .libs/acl-storage.o
--- acl-mailbox-list.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/list -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT acl-mailbox-list.lo -MD -MP -MF .deps/acl-mailbox-list.Tpo -c acl-mailbox-list.c -o acl-mailbox-list.o >/dev/null 2>&1
--- acl-shared-storage.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/list -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT acl-shared-storage.lo -MD -MP -MF .deps/acl-shared-storage.Tpo -c acl-shared-storage.c -o acl-shared-storage.o >/dev/null 2>&1
--- acl-storage.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dict -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/list -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT acl-storage.lo -MD -MP -MF .deps/acl-storage.Tpo -c acl-storage.c -o acl-storage.o >/dev/null 2>&1
mv -f .deps/acl-storage.Tpo .deps/acl-storage.Plo
--- lib10_doveadm_acl_plugin.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 -mfunction-return=keep -Wall -W -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 lib10_doveadm_acl_plugin.la -rpath /usr/local/lib/dovecot/doveadm doveadm-acl.lo  
--- acl-shared-storage.lo ---
mv -f .deps/acl-shared-storage.Tpo .deps/acl-shared-storage.Plo
--- acl-mailbox.lo ---
mv -f .deps/acl-mailbox.Tpo .deps/acl-mailbox.Plo
--- lib10_doveadm_acl_plugin.la ---
libtool: link: cc -shared  -fPIC -DPIC  .libs/doveadm-acl.o   -L/usr/local/lib  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,lib10_doveadm_acl_plugin.so -o .libs/lib10_doveadm_acl_plugin.so
libtool: link: ar cr .libs/lib10_doveadm_acl_plugin.a  doveadm-acl.o
libtool: link: ranlib .libs/lib10_doveadm_acl_plugin.a
libtool: link: ( cd ".libs" && rm -f "lib10_doveadm_acl_plugin.la" && ln -s "../lib10_doveadm_acl_plugin.la" "lib10_doveadm_acl_plugin.la" )
--- acl-mailbox-list.lo ---
mv -f .deps/acl-mailbox-list.Tpo .deps/acl-mailbox-list.Plo
--- lib01_acl_plugin.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 -mfunction-return=keep -Wall -W -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 lib01_acl_plugin.la -rpath /usr/local/lib/dovecot acl-api.lo acl-attributes.lo  acl-backend.lo acl-backend-vfile.lo  acl-backend-vfile-acllist.lo acl-backend-vfile-update.lo  acl-cache.lo acl-global-file.lo acl-lookup-dict.lo  acl-mailbox.lo acl-mailbox-list.lo acl-plugin.lo  acl-shared-storage.lo acl-storage.lo  
libtool: link: cc -shared  -fPIC -DPIC  .libs/acl-api.o .libs/acl-attributes.o .libs/acl-backend.o .libs/acl-backend-vfile.o .libs/acl-backend-vfile-acllist.o .libs/acl-backend-vfile-update.o .libs/acl-cache.o .libs/acl-global-file.o .libs/acl-lookup-dict.o .libs/acl-mailbox.o .libs/acl-mailbox-list.o .libs/acl-plugin.o .libs/acl-shared-storage.o .libs/acl-storage.o   -L/usr/local/lib  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,lib01_acl_plugin.so -o .libs/lib01_acl_plugin.so
libtool: link: ar cr .libs/lib01_acl_plugin.a  acl-api.o acl-attributes.o acl-backend.o acl-backend-vfile.o acl-backend-vfile-acllist.o acl-backend-vfile-update.o acl-cache.o acl-global-file.o acl-lookup-dict.o acl-mailbox.o acl-mailbox-list.o acl-plugin.o acl-shared-storage.o acl-storage.o
libtool: link: ranlib .libs/lib01_acl_plugin.a
libtool: link: ( cd ".libs" && rm -f "lib01_acl_plugin.la" && ln -s "../lib01_acl_plugin.la" "lib01_acl_plugin.la" )
--- test-acl ---
/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 -mfunction-return=keep -Wall -W -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-acl test-acl.o lib01_acl_plugin.la  ../../../src/lib-storage/libdovecot-storage.la ../../../src/lib-imap-storage/libimap-storage.la  ../../../src/lib-dovecot/libdovecot.la -export-dynamic 
*** Warning: Linking the executable test-acl against the loadable module
*** lib01_acl_plugin.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 -mfunction-return=keep -Wall -W -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-acl test-acl.o -Wl,--export-dynamic  -L/usr/local/lib ./.libs/lib01_acl_plugin.so ../../../src/lib-storage/.libs/libdovecot-storage.so ../../../src/lib-imap-storage/.libs/libimap-storage.a ../../../src/lib-dovecot/.libs/libdovecot.so -Wl,-rpath -Wl,/usr/local/lib/dovecot
Making all in imap-acl
--- imap-acl-plugin.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage  -I../../../src/lib-storage/index  -I../../../src/lib-storage/index/imapc  -I../../../src/imap  -I../../../src/plugins/acl  -I../../../src/lib-imap-client  -I../../../src/lib-ssl-iostream -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-acl-plugin.lo -MD -MP -MF .deps/imap-acl-plugin.Tpo -c -o imap-acl-plugin.lo imap-acl-plugin.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/lib-storage/index/imapc -I../../../src/imap -I../../../src/plugins/acl -I../../../src/lib-imap-client -I../../../src/lib-ssl-iostream -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-acl-plugin.lo -MD -MP -MF .deps/imap-acl-plugin.Tpo -c imap-acl-plugin.c  -fPIC -DPIC -o .libs/imap-acl-plugin.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/lib-storage/index/imapc -I../../../src/imap -I../../../src/plugins/acl -I../../../src/lib-imap-client -I../../../src/lib-ssl-iostream -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-acl-plugin.lo -MD -MP -MF .deps/imap-acl-plugin.Tpo -c imap-acl-plugin.c -o imap-acl-plugin.o >/dev/null 2>&1
mv -f .deps/imap-acl-plugin.Tpo .deps/imap-acl-plugin.Plo
--- lib02_imap_acl_plugin.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 -mfunction-return=keep -Wall -W -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 lib02_imap_acl_plugin.la -rpath /usr/local/lib/dovecot imap-acl-plugin.lo ../acl/lib01_acl_plugin.la 
*** Warning: Linking the shared library lib02_imap_acl_plugin.la against the loadable module
*** lib01_acl_plugin.so is not portable!
libtool: link: cc -shared  -fPIC -DPIC  .libs/imap-acl-plugin.o   -Wl,-rpath -Wl,/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/plugins/acl/.libs -Wl,-rpath -Wl,/usr/local/lib/dovecot -L/usr/local/lib ../acl/.libs/lib01_acl_plugin.so  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,lib02_imap_acl_plugin.so -o .libs/lib02_imap_acl_plugin.so
libtool: link: ar cr .libs/lib02_imap_acl_plugin.a  imap-acl-plugin.o
libtool: link: ranlib .libs/lib02_imap_acl_plugin.a
libtool: link: ( cd ".libs" && rm -f "lib02_imap_acl_plugin.la" && ln -s "../lib02_imap_acl_plugin.la" "lib02_imap_acl_plugin.la" )
Making all in fts
--- fts-parser-html.lo ---
--- xml2text-xml2text.o ---
--- xml2text-fts-parser-html.o ---
--- doveadm-fts.lo ---
--- fts-parser-html.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-settings  -I../../../src/lib-fts  -I../../../src/lib-ssl-iostream  -I../../../src/lib-http  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage  -I../../../src/lib-storage/index  -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-parser-html.lo -MD -MP -MF .deps/fts-parser-html.Tpo -c -o fts-parser-html.lo fts-parser-html.c
--- xml2text-xml2text.o ---
cc -DHAVE_CONFIG_H -I. -I../../..  -I../../../src/lib  -I../../../src/lib-settings  -I../../../src/lib-fts  -I../../../src/lib-ssl-iostream  -I../../../src/lib-http  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage  -I../../../src/lib-storage/index  -I../../../src/doveadm -fPIE -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT xml2text-xml2text.o -MD -MP -MF .deps/xml2text-xml2text.Tpo -c -o xml2text-xml2text.o `test -f 'xml2text.c' || echo './'`xml2text.c
--- xml2text-fts-parser-html.o ---
cc -DHAVE_CONFIG_H -I. -I../../..  -I../../../src/lib  -I../../../src/lib-settings  -I../../../src/lib-fts  -I../../../src/lib-ssl-iostream  -I../../../src/lib-http  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage  -I../../../src/lib-storage/index  -I../../../src/doveadm -fPIE -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT xml2text-fts-parser-html.o -MD -MP -MF .deps/xml2text-fts-parser-html.Tpo -c -o xml2text-fts-parser-html.o `test -f 'fts-parser-html.c' || echo './'`fts-parser-html.c
--- doveadm-fts.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-settings  -I../../../src/lib-fts  -I../../../src/lib-ssl-iostream  -I../../../src/lib-http  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage  -I../../../src/lib-storage/index  -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-fts.lo -MD -MP -MF .deps/doveadm-fts.Tpo -c -o doveadm-fts.lo doveadm-fts.c
--- fts-parser-html.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-fts -I../../../src/lib-ssl-iostream -I../../../src/lib-http -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-parser-html.lo -MD -MP -MF .deps/fts-parser-html.Tpo -c fts-parser-html.c  -fPIC -DPIC -o .libs/fts-parser-html.o
--- doveadm-fts.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-fts -I../../../src/lib-ssl-iostream -I../../../src/lib-http -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-fts.lo -MD -MP -MF .deps/doveadm-fts.Tpo -c doveadm-fts.c  -fPIC -DPIC -o .libs/doveadm-fts.o
--- xml2text-xml2text.o ---
mv -f .deps/xml2text-xml2text.Tpo .deps/xml2text-xml2text.Po
--- xml2text-fts-parser-html.o ---
mv -f .deps/xml2text-fts-parser-html.Tpo .deps/xml2text-fts-parser-html.Po
--- doveadm-dump-fts-expunge-log.lo ---
--- fts-api.lo ---
--- doveadm-dump-fts-expunge-log.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-settings  -I../../../src/lib-fts  -I../../../src/lib-ssl-iostream  -I../../../src/lib-http  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage  -I../../../src/lib-storage/index  -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-dump-fts-expunge-log.lo -MD -MP -MF .deps/doveadm-dump-fts-expunge-log.Tpo -c -o doveadm-dump-fts-expunge-log.lo doveadm-dump-fts-expunge-log.c
--- fts-api.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-settings  -I../../../src/lib-fts  -I../../../src/lib-ssl-iostream  -I../../../src/lib-http  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage  -I../../../src/lib-storage/index  -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-api.lo -MD -MP -MF .deps/fts-api.Tpo -c -o fts-api.lo fts-api.c
--- fts-parser-html.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-fts -I../../../src/lib-ssl-iostream -I../../../src/lib-http -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-parser-html.lo -MD -MP -MF .deps/fts-parser-html.Tpo -c fts-parser-html.c -o fts-parser-html.o >/dev/null 2>&1
--- doveadm-dump-fts-expunge-log.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-fts -I../../../src/lib-ssl-iostream -I../../../src/lib-http -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-dump-fts-expunge-log.lo -MD -MP -MF .deps/doveadm-dump-fts-expunge-log.Tpo -c doveadm-dump-fts-expunge-log.c  -fPIC -DPIC -o .libs/doveadm-dump-fts-expunge-log.o
--- fts-api.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-fts -I../../../src/lib-ssl-iostream -I../../../src/lib-http -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-api.lo -MD -MP -MF .deps/fts-api.Tpo -c fts-api.c  -fPIC -DPIC -o .libs/fts-api.o
--- fts-parser-html.lo ---
mv -f .deps/fts-parser-html.Tpo .deps/fts-parser-html.Plo
--- fts-build-mail.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-settings  -I../../../src/lib-fts  -I../../../src/lib-ssl-iostream  -I../../../src/lib-http  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage  -I../../../src/lib-storage/index  -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-build-mail.lo -MD -MP -MF .deps/fts-build-mail.Tpo -c -o fts-build-mail.lo fts-build-mail.c
--- doveadm-dump-fts-expunge-log.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-fts -I../../../src/lib-ssl-iostream -I../../../src/lib-http -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-dump-fts-expunge-log.lo -MD -MP -MF .deps/doveadm-dump-fts-expunge-log.Tpo -c doveadm-dump-fts-expunge-log.c -o doveadm-dump-fts-expunge-log.o >/dev/null 2>&1
--- fts-build-mail.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-fts -I../../../src/lib-ssl-iostream -I../../../src/lib-http -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-build-mail.lo -MD -MP -MF .deps/fts-build-mail.Tpo -c fts-build-mail.c  -fPIC -DPIC -o .libs/fts-build-mail.o
--- doveadm-fts.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-fts -I../../../src/lib-ssl-iostream -I../../../src/lib-http -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-fts.lo -MD -MP -MF .deps/doveadm-fts.Tpo -c doveadm-fts.c -o doveadm-fts.o >/dev/null 2>&1
--- doveadm-dump-fts-expunge-log.lo ---
mv -f .deps/doveadm-dump-fts-expunge-log.Tpo .deps/doveadm-dump-fts-expunge-log.Plo
--- fts-expunge-log.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-settings  -I../../../src/lib-fts  -I../../../src/lib-ssl-iostream  -I../../../src/lib-http  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage  -I../../../src/lib-storage/index  -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-expunge-log.lo -MD -MP -MF .deps/fts-expunge-log.Tpo -c -o fts-expunge-log.lo fts-expunge-log.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-fts -I../../../src/lib-ssl-iostream -I../../../src/lib-http -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-expunge-log.lo -MD -MP -MF .deps/fts-expunge-log.Tpo -c fts-expunge-log.c  -fPIC -DPIC -o .libs/fts-expunge-log.o
--- fts-api.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-fts -I../../../src/lib-ssl-iostream -I../../../src/lib-http -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-api.lo -MD -MP -MF .deps/fts-api.Tpo -c fts-api.c -o fts-api.o >/dev/null 2>&1
--- doveadm-fts.lo ---
mv -f .deps/doveadm-fts.Tpo .deps/doveadm-fts.Plo
--- fts-indexer.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-settings  -I../../../src/lib-fts  -I../../../src/lib-ssl-iostream  -I../../../src/lib-http  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage  -I../../../src/lib-storage/index  -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-indexer.lo -MD -MP -MF .deps/fts-indexer.Tpo -c -o fts-indexer.lo fts-indexer.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-fts -I../../../src/lib-ssl-iostream -I../../../src/lib-http -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-indexer.lo -MD -MP -MF .deps/fts-indexer.Tpo -c fts-indexer.c  -fPIC -DPIC -o .libs/fts-indexer.o
--- fts-build-mail.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-fts -I../../../src/lib-ssl-iostream -I../../../src/lib-http -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-build-mail.lo -MD -MP -MF .deps/fts-build-mail.Tpo -c fts-build-mail.c -o fts-build-mail.o >/dev/null 2>&1
--- fts-expunge-log.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-fts -I../../../src/lib-ssl-iostream -I../../../src/lib-http -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-expunge-log.lo -MD -MP -MF .deps/fts-expunge-log.Tpo -c fts-expunge-log.c -o fts-expunge-log.o >/dev/null 2>&1
--- fts-api.lo ---
mv -f .deps/fts-api.Tpo .deps/fts-api.Plo
--- fts-parser.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-settings  -I../../../src/lib-fts  -I../../../src/lib-ssl-iostream  -I../../../src/lib-http  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage  -I../../../src/lib-storage/index  -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-parser.lo -MD -MP -MF .deps/fts-parser.Tpo -c -o fts-parser.lo fts-parser.c
--- fts-indexer.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-fts -I../../../src/lib-ssl-iostream -I../../../src/lib-http -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-indexer.lo -MD -MP -MF .deps/fts-indexer.Tpo -c fts-indexer.c -o fts-indexer.o >/dev/null 2>&1
--- fts-parser.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-fts -I../../../src/lib-ssl-iostream -I../../../src/lib-http -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-parser.lo -MD -MP -MF .deps/fts-parser.Tpo -c fts-parser.c  -fPIC -DPIC -o .libs/fts-parser.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-fts -I../../../src/lib-ssl-iostream -I../../../src/lib-http -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-parser.lo -MD -MP -MF .deps/fts-parser.Tpo -c fts-parser.c -o fts-parser.o >/dev/null 2>&1
--- fts-indexer.lo ---
mv -f .deps/fts-indexer.Tpo .deps/fts-indexer.Plo
--- fts-parser-script.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-settings  -I../../../src/lib-fts  -I../../../src/lib-ssl-iostream  -I../../../src/lib-http  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage  -I../../../src/lib-storage/index  -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-parser-script.lo -MD -MP -MF .deps/fts-parser-script.Tpo -c -o fts-parser-script.lo fts-parser-script.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-fts -I../../../src/lib-ssl-iostream -I../../../src/lib-http -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-parser-script.lo -MD -MP -MF .deps/fts-parser-script.Tpo -c fts-parser-script.c  -fPIC -DPIC -o .libs/fts-parser-script.o
--- fts-parser.lo ---
mv -f .deps/fts-parser.Tpo .deps/fts-parser.Plo
--- fts-parser-tika.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-settings  -I../../../src/lib-fts  -I../../../src/lib-ssl-iostream  -I../../../src/lib-http  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage  -I../../../src/lib-storage/index  -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-parser-tika.lo -MD -MP -MF .deps/fts-parser-tika.Tpo -c -o fts-parser-tika.lo fts-parser-tika.c
--- fts-expunge-log.lo ---
mv -f .deps/fts-expunge-log.Tpo .deps/fts-expunge-log.Plo
--- fts-plugin.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-settings  -I../../../src/lib-fts  -I../../../src/lib-ssl-iostream  -I../../../src/lib-http  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage  -I../../../src/lib-storage/index  -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-plugin.lo -MD -MP -MF .deps/fts-plugin.Tpo -c -o fts-plugin.lo fts-plugin.c
--- fts-parser-tika.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-fts -I../../../src/lib-ssl-iostream -I../../../src/lib-http -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-parser-tika.lo -MD -MP -MF .deps/fts-parser-tika.Tpo -c fts-parser-tika.c  -fPIC -DPIC -o .libs/fts-parser-tika.o
--- fts-plugin.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-fts -I../../../src/lib-ssl-iostream -I../../../src/lib-http -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-plugin.lo -MD -MP -MF .deps/fts-plugin.Tpo -c fts-plugin.c  -fPIC -DPIC -o .libs/fts-plugin.o
--- fts-build-mail.lo ---
mv -f .deps/fts-build-mail.Tpo .deps/fts-build-mail.Plo
--- fts-search.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-settings  -I../../../src/lib-fts  -I../../../src/lib-ssl-iostream  -I../../../src/lib-http  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage  -I../../../src/lib-storage/index  -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-search.lo -MD -MP -MF .deps/fts-search.Tpo -c -o fts-search.lo fts-search.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-fts -I../../../src/lib-ssl-iostream -I../../../src/lib-http -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-search.lo -MD -MP -MF .deps/fts-search.Tpo -c fts-search.c  -fPIC -DPIC -o .libs/fts-search.o
--- fts-plugin.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-fts -I../../../src/lib-ssl-iostream -I../../../src/lib-http -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-plugin.lo -MD -MP -MF .deps/fts-plugin.Tpo -c fts-plugin.c -o fts-plugin.o >/dev/null 2>&1
--- fts-parser-script.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-fts -I../../../src/lib-ssl-iostream -I../../../src/lib-http -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-parser-script.lo -MD -MP -MF .deps/fts-parser-script.Tpo -c fts-parser-script.c -o fts-parser-script.o >/dev/null 2>&1
--- fts-parser-tika.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-fts -I../../../src/lib-ssl-iostream -I../../../src/lib-http -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-parser-tika.lo -MD -MP -MF .deps/fts-parser-tika.Tpo -c fts-parser-tika.c -o fts-parser-tika.o >/dev/null 2>&1
--- fts-plugin.lo ---
mv -f .deps/fts-plugin.Tpo .deps/fts-plugin.Plo
--- fts-search-args.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-settings  -I../../../src/lib-fts  -I../../../src/lib-ssl-iostream  -I../../../src/lib-http  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage  -I../../../src/lib-storage/index  -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-search-args.lo -MD -MP -MF .deps/fts-search-args.Tpo -c -o fts-search-args.lo fts-search-args.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-fts -I../../../src/lib-ssl-iostream -I../../../src/lib-http -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-search-args.lo -MD -MP -MF .deps/fts-search-args.Tpo -c fts-search-args.c  -fPIC -DPIC -o .libs/fts-search-args.o
--- fts-parser-tika.lo ---
mv -f .deps/fts-parser-tika.Tpo .deps/fts-parser-tika.Plo
--- fts-search.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-fts -I../../../src/lib-ssl-iostream -I../../../src/lib-http -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-search.lo -MD -MP -MF .deps/fts-search.Tpo -c fts-search.c -o fts-search.o >/dev/null 2>&1
--- fts-search-serialize.lo ---
--- fts-parser-script.lo ---
mv -f .deps/fts-parser-script.Tpo .deps/fts-parser-script.Plo
--- fts-search-serialize.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-settings  -I../../../src/lib-fts  -I../../../src/lib-ssl-iostream  -I../../../src/lib-http  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage  -I../../../src/lib-storage/index  -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-search-serialize.lo -MD -MP -MF .deps/fts-search-serialize.Tpo -c -o fts-search-serialize.lo fts-search-serialize.c
--- fts-storage.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-settings  -I../../../src/lib-fts  -I../../../src/lib-ssl-iostream  -I../../../src/lib-http  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage  -I../../../src/lib-storage/index  -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-storage.lo -MD -MP -MF .deps/fts-storage.Tpo -c -o fts-storage.lo fts-storage.c
--- fts-search-serialize.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-fts -I../../../src/lib-ssl-iostream -I../../../src/lib-http -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-search-serialize.lo -MD -MP -MF .deps/fts-search-serialize.Tpo -c fts-search-serialize.c  -fPIC -DPIC -o .libs/fts-search-serialize.o
--- fts-storage.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-fts -I../../../src/lib-ssl-iostream -I../../../src/lib-http -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-storage.lo -MD -MP -MF .deps/fts-storage.Tpo -c fts-storage.c  -fPIC -DPIC -o .libs/fts-storage.o
--- fts-search-serialize.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-fts -I../../../src/lib-ssl-iostream -I../../../src/lib-http -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-search-serialize.lo -MD -MP -MF .deps/fts-search-serialize.Tpo -c fts-search-serialize.c -o fts-search-serialize.o >/dev/null 2>&1
--- fts-search-args.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-fts -I../../../src/lib-ssl-iostream -I../../../src/lib-http -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-search-args.lo -MD -MP -MF .deps/fts-search-args.Tpo -c fts-search-args.c -o fts-search-args.o >/dev/null 2>&1
--- fts-search-serialize.lo ---
mv -f .deps/fts-search-serialize.Tpo .deps/fts-search-serialize.Plo
--- fts-user.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-settings  -I../../../src/lib-fts  -I../../../src/lib-ssl-iostream  -I../../../src/lib-http  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage  -I../../../src/lib-storage/index  -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-user.lo -MD -MP -MF .deps/fts-user.Tpo -c -o fts-user.lo fts-user.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-fts -I../../../src/lib-ssl-iostream -I../../../src/lib-http -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-user.lo -MD -MP -MF .deps/fts-user.Tpo -c fts-user.c  -fPIC -DPIC -o .libs/fts-user.o
--- fts-search.lo ---
mv -f .deps/fts-search.Tpo .deps/fts-search.Plo
--- lib20_doveadm_fts_plugin.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 -mfunction-return=keep -Wall -W -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 lib20_doveadm_fts_plugin.la -rpath /usr/local/lib/dovecot/doveadm doveadm-fts.lo  doveadm-dump-fts-expunge-log.lo  
libtool: link: cc -shared  -fPIC -DPIC  .libs/doveadm-fts.o .libs/doveadm-dump-fts-expunge-log.o   -L/usr/local/lib  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,lib20_doveadm_fts_plugin.so -o .libs/lib20_doveadm_fts_plugin.so
--- fts-search-args.lo ---
mv -f .deps/fts-search-args.Tpo .deps/fts-search-args.Plo
--- lib20_doveadm_fts_plugin.la ---
libtool: link: ar cr .libs/lib20_doveadm_fts_plugin.a  doveadm-fts.o doveadm-dump-fts-expunge-log.o
libtool: link: ranlib .libs/lib20_doveadm_fts_plugin.a
libtool: link: ( cd ".libs" && rm -f "lib20_doveadm_fts_plugin.la" && ln -s "../lib20_doveadm_fts_plugin.la" "lib20_doveadm_fts_plugin.la" )
--- fts-user.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-fts -I../../../src/lib-ssl-iostream -I../../../src/lib-http -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-user.lo -MD -MP -MF .deps/fts-user.Tpo -c fts-user.c -o fts-user.o >/dev/null 2>&1
--- fts-storage.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-fts -I../../../src/lib-ssl-iostream -I../../../src/lib-http -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-storage.lo -MD -MP -MF .deps/fts-storage.Tpo -c fts-storage.c -o fts-storage.o >/dev/null 2>&1
--- fts-user.lo ---
mv -f .deps/fts-user.Tpo .deps/fts-user.Plo
--- fts-storage.lo ---
mv -f .deps/fts-storage.Tpo .deps/fts-storage.Plo
--- lib20_fts_plugin.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 -mfunction-return=keep -Wall -W -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 lib20_fts_plugin.la -rpath /usr/local/lib/dovecot fts-api.lo fts-build-mail.lo  fts-expunge-log.lo fts-indexer.lo fts-parser.lo  fts-parser-html.lo fts-parser-script.lo fts-parser-tika.lo  fts-plugin.lo fts-search.lo fts-search-args.lo  fts-search-serialize.lo fts-storage.lo fts-user.lo ../../lib-fts/libfts.la 
libtool: link: cc -shared  -fPIC -DPIC  .libs/fts-api.o .libs/fts-build-mail.o .libs/fts-expunge-log.o .libs/fts-indexer.o .libs/fts-parser.o .libs/fts-parser-html.o .libs/fts-parser-script.o .libs/fts-parser-tika.o .libs/fts-plugin.o .libs/fts-search.o .libs/fts-search-args.o .libs/fts-search-serialize.o .libs/fts-storage.o .libs/fts-user.o  -Wl,--whole-archive ../../lib-fts/.libs/libfts.a -Wl,--no-whole-archive  -L/usr/local/lib  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,lib20_fts_plugin.so -o .libs/lib20_fts_plugin.so
libtool: link: (cd .libs/lib20_fts_plugin.lax/libfts.a && ar x "/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/plugins/fts/../../lib-fts/.libs/libfts.a")
libtool: link: ar cr .libs/lib20_fts_plugin.a  fts-api.o fts-build-mail.o fts-expunge-log.o fts-indexer.o fts-parser.o fts-parser-html.o fts-parser-script.o fts-parser-tika.o fts-plugin.o fts-search.o fts-search-args.o fts-search-serialize.o fts-storage.o fts-user.o  .libs/lib20_fts_plugin.lax/libfts.a/fts-filter-common.o .libs/lib20_fts_plugin.lax/libfts.a/fts-filter-contractions.o .libs/lib20_fts_plugin.lax/libfts.a/fts-filter-english-possessive.o .libs/lib20_fts_plugin.lax/libfts.a/fts-filter-lowercase.o .libs/lib20_fts_plugin.lax/libfts.a/fts-filter-normalizer-icu.o .libs/lib20_fts_plugin.lax/libfts.a/fts-filter-stemmer-snowball.o .libs/lib20_fts_plugin.lax/libfts.a/fts-filter-stopwords.o .libs/lib20_fts_plugin.lax/libfts.a/fts-filter.o .libs/lib20_fts_plugin.lax/libfts.a/fts-language.o .libs/lib20_fts_plugin.lax/libfts.a/fts-library.o .libs/lib20_fts_plugin.lax/libfts.a/fts-tokenizer-address.o .libs/lib20_fts_plugin.lax/libfts.a/fts-tokenizer-common.o .libs/lib20_fts_plugin.lax/libfts.a/fts-tokenizer-generic.o .libs/lib20_fts_plugin.lax/libfts.a/fts-tokenizer.o 
libtool: link: ranlib .libs/lib20_fts_plugin.a
libtool: link: rm -fr .libs/lib20_fts_plugin.lax
libtool: link: ( cd ".libs" && rm -f "lib20_fts_plugin.la" && ln -s "../lib20_fts_plugin.la" "lib20_fts_plugin.la" )
--- xml2text ---
/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 -mfunction-return=keep -Wall -W -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 xml2text xml2text-xml2text.o  xml2text-fts-parser-html.o ../../../src/lib-dovecot/libdovecot.la -export-dynamic -pie 
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 -mfunction-return=keep -Wall -W -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/xml2text xml2text-xml2text.o xml2text-fts-parser-html.o -pie -Wl,--export-dynamic  -L/usr/local/lib ../../../src/lib-dovecot/.libs/libdovecot.so -Wl,-rpath -Wl,/usr/local/lib/dovecot
Making all in fts-squat
--- squat-test.o ---
--- squat-trie.lo ---
--- squat-uidlist.lo ---
--- fts-squat-plugin.lo ---
--- squat-test.o ---
cc -DHAVE_CONFIG_H -I. -I../../..  -I../../../src/lib  -I../../../src/lib-mail  -I../../../src/lib-index  -I../../../src/lib-storage  -I../../../src/plugins/fts  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT squat-test.o -MD -MP -MF .deps/squat-test.Tpo -c -o squat-test.o squat-test.c
--- squat-trie.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-mail  -I../../../src/lib-index  -I../../../src/lib-storage  -I../../../src/plugins/fts -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT squat-trie.lo -MD -MP -MF .deps/squat-trie.Tpo -c -o squat-trie.lo squat-trie.c
--- fts-squat-plugin.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-mail  -I../../../src/lib-index  -I../../../src/lib-storage  -I../../../src/plugins/fts -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-squat-plugin.lo -MD -MP -MF .deps/fts-squat-plugin.Tpo -c -o fts-squat-plugin.lo fts-squat-plugin.c
--- squat-uidlist.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-mail  -I../../../src/lib-index  -I../../../src/lib-storage  -I../../../src/plugins/fts -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT squat-uidlist.lo -MD -MP -MF .deps/squat-uidlist.Tpo -c -o squat-uidlist.lo squat-uidlist.c
--- squat-trie.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-mail -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/plugins/fts -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT squat-trie.lo -MD -MP -MF .deps/squat-trie.Tpo -c squat-trie.c  -fPIC -DPIC -o .libs/squat-trie.o
--- fts-squat-plugin.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-mail -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/plugins/fts -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-squat-plugin.lo -MD -MP -MF .deps/fts-squat-plugin.Tpo -c fts-squat-plugin.c  -fPIC -DPIC -o .libs/fts-squat-plugin.o
--- squat-uidlist.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-mail -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/plugins/fts -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT squat-uidlist.lo -MD -MP -MF .deps/squat-uidlist.Tpo -c squat-uidlist.c  -fPIC -DPIC -o .libs/squat-uidlist.o
--- fts-squat-plugin.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-mail -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/plugins/fts -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-squat-plugin.lo -MD -MP -MF .deps/fts-squat-plugin.Tpo -c fts-squat-plugin.c -o fts-squat-plugin.o >/dev/null 2>&1
--- squat-test.o ---
mv -f .deps/squat-test.Tpo .deps/squat-test.Po
--- fts-backend-squat.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-mail  -I../../../src/lib-index  -I../../../src/lib-storage  -I../../../src/plugins/fts -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-backend-squat.lo -MD -MP -MF .deps/fts-backend-squat.Tpo -c -o fts-backend-squat.lo fts-backend-squat.c
--- fts-squat-plugin.lo ---
mv -f .deps/fts-squat-plugin.Tpo .deps/fts-squat-plugin.Plo
--- fts-backend-squat.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-mail -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/plugins/fts -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-backend-squat.lo -MD -MP -MF .deps/fts-backend-squat.Tpo -c fts-backend-squat.c  -fPIC -DPIC -o .libs/fts-backend-squat.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-mail -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/plugins/fts -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fts-backend-squat.lo -MD -MP -MF .deps/fts-backend-squat.Tpo -c fts-backend-squat.c -o fts-backend-squat.o >/dev/null 2>&1
mv -f .deps/fts-backend-squat.Tpo .deps/fts-backend-squat.Plo
--- squat-uidlist.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-mail -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/plugins/fts -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT squat-uidlist.lo -MD -MP -MF .deps/squat-uidlist.Tpo -c squat-uidlist.c -o squat-uidlist.o >/dev/null 2>&1
--- squat-trie.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-mail -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/plugins/fts -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT squat-trie.lo -MD -MP -MF .deps/squat-trie.Tpo -c squat-trie.c -o squat-trie.o >/dev/null 2>&1
--- squat-uidlist.lo ---
mv -f .deps/squat-uidlist.Tpo .deps/squat-uidlist.Plo
--- squat-trie.lo ---
mv -f .deps/squat-trie.Tpo .deps/squat-trie.Plo
--- lib21_fts_squat_plugin.la ---
--- squat-test ---
--- lib21_fts_squat_plugin.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 -mfunction-return=keep -Wall -W -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 lib21_fts_squat_plugin.la -rpath /usr/local/lib/dovecot fts-squat-plugin.lo  fts-backend-squat.lo squat-trie.lo squat-uidlist.lo ../fts/lib20_fts_plugin.la 
--- squat-test ---
/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 -mfunction-return=keep -Wall -W -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 squat-test squat-test.o squat-trie.lo  squat-uidlist.lo  ../../../src/lib-storage/libdovecot-storage.la ../../../src/lib-imap-storage/libimap-storage.la  ../../../src/lib-dovecot/libdovecot.la -export-dynamic 
--- lib21_fts_squat_plugin.la ---
*** Warning: Linking the shared library lib21_fts_squat_plugin.la against the loadable module
*** lib20_fts_plugin.so is not portable!
libtool: link: cc -shared  -fPIC -DPIC  .libs/fts-squat-plugin.o .libs/fts-backend-squat.o .libs/squat-trie.o .libs/squat-uidlist.o   -Wl,-rpath -Wl,/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/plugins/fts/.libs -Wl,-rpath -Wl,/usr/local/lib/dovecot -L/usr/local/lib ../fts/.libs/lib20_fts_plugin.so  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,lib21_fts_squat_plugin.so -o .libs/lib21_fts_squat_plugin.so
libtool: link: ar cr .libs/lib21_fts_squat_plugin.a  fts-squat-plugin.o fts-backend-squat.o squat-trie.o squat-uidlist.o
libtool: link: ranlib .libs/lib21_fts_squat_plugin.a
--- squat-test ---
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 -mfunction-return=keep -Wall -W -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/squat-test squat-test.o .libs/squat-trie.o .libs/squat-uidlist.o -Wl,--export-dynamic  -L/usr/local/lib ../../../src/lib-storage/.libs/libdovecot-storage.so ../../../src/lib-imap-storage/.libs/libimap-storage.a ../../../src/lib-dovecot/.libs/libdovecot.so  -Wl,-rpath -Wl,/usr/local/lib/dovecot
--- lib21_fts_squat_plugin.la ---
libtool: link: ( cd ".libs" && rm -f "lib21_fts_squat_plugin.la" && ln -s "../lib21_fts_squat_plugin.la" "lib21_fts_squat_plugin.la" )
Making all in last-login
--- last-login-plugin.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-dict  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT last-login-plugin.lo -MD -MP -MF .deps/last-login-plugin.Tpo -c -o last-login-plugin.lo last-login-plugin.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-dict -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT last-login-plugin.lo -MD -MP -MF .deps/last-login-plugin.Tpo -c last-login-plugin.c  -fPIC -DPIC -o .libs/last-login-plugin.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-dict -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT last-login-plugin.lo -MD -MP -MF .deps/last-login-plugin.Tpo -c last-login-plugin.c -o last-login-plugin.o >/dev/null 2>&1
mv -f .deps/last-login-plugin.Tpo .deps/last-login-plugin.Plo
--- lib10_last_login_plugin.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 -mfunction-return=keep -Wall -W -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 lib10_last_login_plugin.la -rpath /usr/local/lib/dovecot last-login-plugin.lo  
libtool: link: cc -shared  -fPIC -DPIC  .libs/last-login-plugin.o   -L/usr/local/lib  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,lib10_last_login_plugin.so -o .libs/lib10_last_login_plugin.so
libtool: link: ar cr .libs/lib10_last_login_plugin.a  last-login-plugin.o
libtool: link: ranlib .libs/lib10_last_login_plugin.a
libtool: link: ( cd ".libs" && rm -f "lib10_last_login_plugin.la" && ln -s "../lib10_last_login_plugin.la" "lib10_last_login_plugin.la" )
Making all in lazy-expunge
--- lazy-expunge-plugin.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-mail  -I../../../src/lib-index  -I../../../src/lib-storage  -I../../../src/lib-storage/index  -I../../../src/lib-storage/index/maildir  -I../../../src/lib-imap  -I../../../src/plugins/quota -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT lazy-expunge-plugin.lo -MD -MP -MF .deps/lazy-expunge-plugin.Tpo -c -o lazy-expunge-plugin.lo lazy-expunge-plugin.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-mail -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/lib-storage/index/maildir -I../../../src/lib-imap -I../../../src/plugins/quota -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT lazy-expunge-plugin.lo -MD -MP -MF .deps/lazy-expunge-plugin.Tpo -c lazy-expunge-plugin.c  -fPIC -DPIC -o .libs/lazy-expunge-plugin.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-mail -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/lib-storage/index/maildir -I../../../src/lib-imap -I../../../src/plugins/quota -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT lazy-expunge-plugin.lo -MD -MP -MF .deps/lazy-expunge-plugin.Tpo -c lazy-expunge-plugin.c -o lazy-expunge-plugin.o >/dev/null 2>&1
mv -f .deps/lazy-expunge-plugin.Tpo .deps/lazy-expunge-plugin.Plo
--- lib02_lazy_expunge_plugin.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 -mfunction-return=keep -Wall -W -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 lib02_lazy_expunge_plugin.la -rpath /usr/local/lib/dovecot lazy-expunge-plugin.lo  
libtool: link: cc -shared  -fPIC -DPIC  .libs/lazy-expunge-plugin.o   -L/usr/local/lib  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,lib02_lazy_expunge_plugin.so -o .libs/lib02_lazy_expunge_plugin.so
libtool: link: ar cr .libs/lib02_lazy_expunge_plugin.a  lazy-expunge-plugin.o
libtool: link: ranlib .libs/lib02_lazy_expunge_plugin.a
libtool: link: ( cd ".libs" && rm -f "lib02_lazy_expunge_plugin.la" && ln -s "../lib02_lazy_expunge_plugin.la" "lib02_lazy_expunge_plugin.la" )
Making all in listescape
--- listescape-plugin.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT listescape-plugin.lo -MD -MP -MF .deps/listescape-plugin.Tpo -c -o listescape-plugin.lo listescape-plugin.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT listescape-plugin.lo -MD -MP -MF .deps/listescape-plugin.Tpo -c listescape-plugin.c  -fPIC -DPIC -o .libs/listescape-plugin.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT listescape-plugin.lo -MD -MP -MF .deps/listescape-plugin.Tpo -c listescape-plugin.c -o listescape-plugin.o >/dev/null 2>&1
mv -f .deps/listescape-plugin.Tpo .deps/listescape-plugin.Plo
--- lib20_listescape_plugin.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 -mfunction-return=keep -Wall -W -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 lib20_listescape_plugin.la -rpath /usr/local/lib/dovecot listescape-plugin.lo  
libtool: link: cc -shared  -fPIC -DPIC  .libs/listescape-plugin.o   -L/usr/local/lib  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,lib20_listescape_plugin.so -o .libs/lib20_listescape_plugin.so
libtool: link: ar cr .libs/lib20_listescape_plugin.a  listescape-plugin.o
libtool: link: ranlib .libs/lib20_listescape_plugin.a
libtool: link: ( cd ".libs" && rm -f "lib20_listescape_plugin.la" && ln -s "../lib20_listescape_plugin.la" "lib20_listescape_plugin.la" )
Making all in notify
--- notify-plugin.lo ---
--- notify-storage.lo ---
--- notify-plugin.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage  -I../../../src/lib-storage/index  -I../../../src/lib-storage/index/maildir -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT notify-plugin.lo -MD -MP -MF .deps/notify-plugin.Tpo -c -o notify-plugin.lo notify-plugin.c
--- notify-storage.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage  -I../../../src/lib-storage/index  -I../../../src/lib-storage/index/maildir -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT notify-storage.lo -MD -MP -MF .deps/notify-storage.Tpo -c -o notify-storage.lo notify-storage.c
--- notify-plugin.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/lib-storage/index/maildir -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT notify-plugin.lo -MD -MP -MF .deps/notify-plugin.Tpo -c notify-plugin.c  -fPIC -DPIC -o .libs/notify-plugin.o
--- notify-storage.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/lib-storage/index/maildir -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT notify-storage.lo -MD -MP -MF .deps/notify-storage.Tpo -c notify-storage.c  -fPIC -DPIC -o .libs/notify-storage.o
--- notify-plugin.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/lib-storage/index/maildir -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT notify-plugin.lo -MD -MP -MF .deps/notify-plugin.Tpo -c notify-plugin.c -o notify-plugin.o >/dev/null 2>&1
--- notify-storage.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/lib-storage/index/maildir -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT notify-storage.lo -MD -MP -MF .deps/notify-storage.Tpo -c notify-storage.c -o notify-storage.o >/dev/null 2>&1
--- notify-plugin.lo ---
mv -f .deps/notify-plugin.Tpo .deps/notify-plugin.Plo
--- notify-storage.lo ---
mv -f .deps/notify-storage.Tpo .deps/notify-storage.Plo
--- lib15_notify_plugin.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 -mfunction-return=keep -Wall -W -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 lib15_notify_plugin.la -rpath /usr/local/lib/dovecot notify-plugin.lo notify-storage.lo  
libtool: link: cc -shared  -fPIC -DPIC  .libs/notify-plugin.o .libs/notify-storage.o   -L/usr/local/lib  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,lib15_notify_plugin.so -o .libs/lib15_notify_plugin.so
libtool: link: ar cr .libs/lib15_notify_plugin.a  notify-plugin.o notify-storage.o
libtool: link: ranlib .libs/lib15_notify_plugin.a
libtool: link: ( cd ".libs" && rm -f "lib15_notify_plugin.la" && ln -s "../lib15_notify_plugin.la" "lib15_notify_plugin.la" )
Making all in notify-status
--- notify-status-plugin.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-imap  -I../../../src/lib-mail  -I../../../src/lib-index  -I../../../src/lib-storage  -I../../../src/lib-dict  -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT notify-status-plugin.lo -MD -MP -MF .deps/notify-status-plugin.Tpo -c -o notify-status-plugin.lo notify-status-plugin.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-imap -I../../../src/lib-mail -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-dict -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT notify-status-plugin.lo -MD -MP -MF .deps/notify-status-plugin.Tpo -c notify-status-plugin.c  -fPIC -DPIC -o .libs/notify-status-plugin.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-imap -I../../../src/lib-mail -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-dict -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT notify-status-plugin.lo -MD -MP -MF .deps/notify-status-plugin.Tpo -c notify-status-plugin.c -o notify-status-plugin.o >/dev/null 2>&1
mv -f .deps/notify-status-plugin.Tpo .deps/notify-status-plugin.Plo
--- lib20_notify_status_plugin.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 -mfunction-return=keep -Wall -W -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 lib20_notify_status_plugin.la -rpath /usr/local/lib/dovecot notify-status-plugin.lo  
libtool: link: cc -shared  -fPIC -DPIC  .libs/notify-status-plugin.o   -L/usr/local/lib  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,lib20_notify_status_plugin.so -o .libs/lib20_notify_status_plugin.so
libtool: link: ar cr .libs/lib20_notify_status_plugin.a  notify-status-plugin.o
libtool: link: ranlib .libs/lib20_notify_status_plugin.a
libtool: link: ( cd ".libs" && rm -f "lib20_notify_status_plugin.la" && ln -s "../lib20_notify_status_plugin.la" "lib20_notify_status_plugin.la" )
Making all in push-notification
--- push-notification-driver-dlog.lo ---
--- push-notification-driver-ox.lo ---
--- push-notification-drivers.lo ---
--- push-notification-event-flagsclear.lo ---
--- push-notification-driver-dlog.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-settings  -I../../../src/lib-http  -I../../../src/lib-index  -I../../../src/lib-mail  -I../../../src/lib-storage  -I../../../src/lib-ssl-iostream  -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-driver-dlog.lo -MD -MP -MF .deps/push-notification-driver-dlog.Tpo -c -o push-notification-driver-dlog.lo push-notification-driver-dlog.c
--- push-notification-driver-ox.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-settings  -I../../../src/lib-http  -I../../../src/lib-index  -I../../../src/lib-mail  -I../../../src/lib-storage  -I../../../src/lib-ssl-iostream  -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-driver-ox.lo -MD -MP -MF .deps/push-notification-driver-ox.Tpo -c -o push-notification-driver-ox.lo push-notification-driver-ox.c
--- push-notification-drivers.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-settings  -I../../../src/lib-http  -I../../../src/lib-index  -I../../../src/lib-mail  -I../../../src/lib-storage  -I../../../src/lib-ssl-iostream  -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-drivers.lo -MD -MP -MF .deps/push-notification-drivers.Tpo -c -o push-notification-drivers.lo push-notification-drivers.c
--- push-notification-event-flagsclear.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-settings  -I../../../src/lib-http  -I../../../src/lib-index  -I../../../src/lib-mail  -I../../../src/lib-storage  -I../../../src/lib-ssl-iostream  -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-event-flagsclear.lo -MD -MP -MF .deps/push-notification-event-flagsclear.Tpo -c -o push-notification-event-flagsclear.lo push-notification-event-flagsclear.c
--- push-notification-driver-ox.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-http -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-storage -I../../../src/lib-ssl-iostream -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-driver-ox.lo -MD -MP -MF .deps/push-notification-driver-ox.Tpo -c push-notification-driver-ox.c  -fPIC -DPIC -o .libs/push-notification-driver-ox.o
--- push-notification-event-flagsclear.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-http -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-storage -I../../../src/lib-ssl-iostream -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-event-flagsclear.lo -MD -MP -MF .deps/push-notification-event-flagsclear.Tpo -c push-notification-event-flagsclear.c  -fPIC -DPIC -o .libs/push-notification-event-flagsclear.o
--- push-notification-driver-dlog.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-http -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-storage -I../../../src/lib-ssl-iostream -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-driver-dlog.lo -MD -MP -MF .deps/push-notification-driver-dlog.Tpo -c push-notification-driver-dlog.c  -fPIC -DPIC -o .libs/push-notification-driver-dlog.o
--- push-notification-drivers.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-http -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-storage -I../../../src/lib-ssl-iostream -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-drivers.lo -MD -MP -MF .deps/push-notification-drivers.Tpo -c push-notification-drivers.c  -fPIC -DPIC -o .libs/push-notification-drivers.o
--- push-notification-driver-dlog.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-http -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-storage -I../../../src/lib-ssl-iostream -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-driver-dlog.lo -MD -MP -MF .deps/push-notification-driver-dlog.Tpo -c push-notification-driver-dlog.c -o push-notification-driver-dlog.o >/dev/null 2>&1
--- push-notification-event-flagsclear.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-http -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-storage -I../../../src/lib-ssl-iostream -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-event-flagsclear.lo -MD -MP -MF .deps/push-notification-event-flagsclear.Tpo -c push-notification-event-flagsclear.c -o push-notification-event-flagsclear.o >/dev/null 2>&1
--- push-notification-drivers.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-http -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-storage -I../../../src/lib-ssl-iostream -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-drivers.lo -MD -MP -MF .deps/push-notification-drivers.Tpo -c push-notification-drivers.c -o push-notification-drivers.o >/dev/null 2>&1
--- push-notification-driver-dlog.lo ---
mv -f .deps/push-notification-driver-dlog.Tpo .deps/push-notification-driver-dlog.Plo
--- push-notification-event-flagsset.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-settings  -I../../../src/lib-http  -I../../../src/lib-index  -I../../../src/lib-mail  -I../../../src/lib-storage  -I../../../src/lib-ssl-iostream  -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-event-flagsset.lo -MD -MP -MF .deps/push-notification-event-flagsset.Tpo -c -o push-notification-event-flagsset.lo push-notification-event-flagsset.c
--- push-notification-driver-ox.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-http -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-storage -I../../../src/lib-ssl-iostream -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-driver-ox.lo -MD -MP -MF .deps/push-notification-driver-ox.Tpo -c push-notification-driver-ox.c -o push-notification-driver-ox.o >/dev/null 2>&1
--- push-notification-event-flagsset.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-http -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-storage -I../../../src/lib-ssl-iostream -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-event-flagsset.lo -MD -MP -MF .deps/push-notification-event-flagsset.Tpo -c push-notification-event-flagsset.c  -fPIC -DPIC -o .libs/push-notification-event-flagsset.o
--- push-notification-event-flagsclear.lo ---
mv -f .deps/push-notification-event-flagsclear.Tpo .deps/push-notification-event-flagsclear.Plo
--- push-notification-event-mailboxcreate.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-settings  -I../../../src/lib-http  -I../../../src/lib-index  -I../../../src/lib-mail  -I../../../src/lib-storage  -I../../../src/lib-ssl-iostream  -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-event-mailboxcreate.lo -MD -MP -MF .deps/push-notification-event-mailboxcreate.Tpo -c -o push-notification-event-mailboxcreate.lo push-notification-event-mailboxcreate.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-http -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-storage -I../../../src/lib-ssl-iostream -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-event-mailboxcreate.lo -MD -MP -MF .deps/push-notification-event-mailboxcreate.Tpo -c push-notification-event-mailboxcreate.c  -fPIC -DPIC -o .libs/push-notification-event-mailboxcreate.o
--- push-notification-drivers.lo ---
mv -f .deps/push-notification-drivers.Tpo .deps/push-notification-drivers.Plo
--- push-notification-event-mailboxdelete.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-settings  -I../../../src/lib-http  -I../../../src/lib-index  -I../../../src/lib-mail  -I../../../src/lib-storage  -I../../../src/lib-ssl-iostream  -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-event-mailboxdelete.lo -MD -MP -MF .deps/push-notification-event-mailboxdelete.Tpo -c -o push-notification-event-mailboxdelete.lo push-notification-event-mailboxdelete.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-http -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-storage -I../../../src/lib-ssl-iostream -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-event-mailboxdelete.lo -MD -MP -MF .deps/push-notification-event-mailboxdelete.Tpo -c push-notification-event-mailboxdelete.c  -fPIC -DPIC -o .libs/push-notification-event-mailboxdelete.o
--- push-notification-event-flagsset.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-http -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-storage -I../../../src/lib-ssl-iostream -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-event-flagsset.lo -MD -MP -MF .deps/push-notification-event-flagsset.Tpo -c push-notification-event-flagsset.c -o push-notification-event-flagsset.o >/dev/null 2>&1
--- push-notification-event-mailboxcreate.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-http -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-storage -I../../../src/lib-ssl-iostream -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-event-mailboxcreate.lo -MD -MP -MF .deps/push-notification-event-mailboxcreate.Tpo -c push-notification-event-mailboxcreate.c -o push-notification-event-mailboxcreate.o >/dev/null 2>&1
--- push-notification-event-mailboxdelete.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-http -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-storage -I../../../src/lib-ssl-iostream -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-event-mailboxdelete.lo -MD -MP -MF .deps/push-notification-event-mailboxdelete.Tpo -c push-notification-event-mailboxdelete.c -o push-notification-event-mailboxdelete.o >/dev/null 2>&1
--- push-notification-driver-ox.lo ---
mv -f .deps/push-notification-driver-ox.Tpo .deps/push-notification-driver-ox.Plo
--- push-notification-event-mailboxrename.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-settings  -I../../../src/lib-http  -I../../../src/lib-index  -I../../../src/lib-mail  -I../../../src/lib-storage  -I../../../src/lib-ssl-iostream  -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-event-mailboxrename.lo -MD -MP -MF .deps/push-notification-event-mailboxrename.Tpo -c -o push-notification-event-mailboxrename.lo push-notification-event-mailboxrename.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-http -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-storage -I../../../src/lib-ssl-iostream -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-event-mailboxrename.lo -MD -MP -MF .deps/push-notification-event-mailboxrename.Tpo -c push-notification-event-mailboxrename.c  -fPIC -DPIC -o .libs/push-notification-event-mailboxrename.o
--- push-notification-event-mailboxcreate.lo ---
mv -f .deps/push-notification-event-mailboxcreate.Tpo .deps/push-notification-event-mailboxcreate.Plo
--- push-notification-event-mailboxsubscribe.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-settings  -I../../../src/lib-http  -I../../../src/lib-index  -I../../../src/lib-mail  -I../../../src/lib-storage  -I../../../src/lib-ssl-iostream  -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-event-mailboxsubscribe.lo -MD -MP -MF .deps/push-notification-event-mailboxsubscribe.Tpo -c -o push-notification-event-mailboxsubscribe.lo push-notification-event-mailboxsubscribe.c
--- push-notification-event-mailboxdelete.lo ---
mv -f .deps/push-notification-event-mailboxdelete.Tpo .deps/push-notification-event-mailboxdelete.Plo
--- push-notification-event-mailboxunsubscribe.lo ---
--- push-notification-event-flagsset.lo ---
mv -f .deps/push-notification-event-flagsset.Tpo .deps/push-notification-event-flagsset.Plo
--- push-notification-event-mailboxunsubscribe.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-settings  -I../../../src/lib-http  -I../../../src/lib-index  -I../../../src/lib-mail  -I../../../src/lib-storage  -I../../../src/lib-ssl-iostream  -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-event-mailboxunsubscribe.lo -MD -MP -MF .deps/push-notification-event-mailboxunsubscribe.Tpo -c -o push-notification-event-mailboxunsubscribe.lo push-notification-event-mailboxunsubscribe.c
--- push-notification-event-messageappend.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-settings  -I../../../src/lib-http  -I../../../src/lib-index  -I../../../src/lib-mail  -I../../../src/lib-storage  -I../../../src/lib-ssl-iostream  -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-event-messageappend.lo -MD -MP -MF .deps/push-notification-event-messageappend.Tpo -c -o push-notification-event-messageappend.lo push-notification-event-messageappend.c
--- push-notification-event-mailboxsubscribe.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-http -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-storage -I../../../src/lib-ssl-iostream -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-event-mailboxsubscribe.lo -MD -MP -MF .deps/push-notification-event-mailboxsubscribe.Tpo -c push-notification-event-mailboxsubscribe.c  -fPIC -DPIC -o .libs/push-notification-event-mailboxsubscribe.o
--- push-notification-event-mailboxunsubscribe.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-http -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-storage -I../../../src/lib-ssl-iostream -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-event-mailboxunsubscribe.lo -MD -MP -MF .deps/push-notification-event-mailboxunsubscribe.Tpo -c push-notification-event-mailboxunsubscribe.c  -fPIC -DPIC -o .libs/push-notification-event-mailboxunsubscribe.o
--- push-notification-event-messageappend.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-http -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-storage -I../../../src/lib-ssl-iostream -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-event-messageappend.lo -MD -MP -MF .deps/push-notification-event-messageappend.Tpo -c push-notification-event-messageappend.c  -fPIC -DPIC -o .libs/push-notification-event-messageappend.o
--- push-notification-event-mailboxrename.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-http -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-storage -I../../../src/lib-ssl-iostream -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-event-mailboxrename.lo -MD -MP -MF .deps/push-notification-event-mailboxrename.Tpo -c push-notification-event-mailboxrename.c -o push-notification-event-mailboxrename.o >/dev/null 2>&1
--- push-notification-event-mailboxsubscribe.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-http -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-storage -I../../../src/lib-ssl-iostream -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-event-mailboxsubscribe.lo -MD -MP -MF .deps/push-notification-event-mailboxsubscribe.Tpo -c push-notification-event-mailboxsubscribe.c -o push-notification-event-mailboxsubscribe.o >/dev/null 2>&1
--- push-notification-event-mailboxunsubscribe.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-http -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-storage -I../../../src/lib-ssl-iostream -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-event-mailboxunsubscribe.lo -MD -MP -MF .deps/push-notification-event-mailboxunsubscribe.Tpo -c push-notification-event-mailboxunsubscribe.c -o push-notification-event-mailboxunsubscribe.o >/dev/null 2>&1
--- push-notification-event-messageappend.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-http -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-storage -I../../../src/lib-ssl-iostream -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-event-messageappend.lo -MD -MP -MF .deps/push-notification-event-messageappend.Tpo -c push-notification-event-messageappend.c -o push-notification-event-messageappend.o >/dev/null 2>&1
--- push-notification-event-mailboxrename.lo ---
mv -f .deps/push-notification-event-mailboxrename.Tpo .deps/push-notification-event-mailboxrename.Plo
--- push-notification-event-messageexpunge.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-settings  -I../../../src/lib-http  -I../../../src/lib-index  -I../../../src/lib-mail  -I../../../src/lib-storage  -I../../../src/lib-ssl-iostream  -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-event-messageexpunge.lo -MD -MP -MF .deps/push-notification-event-messageexpunge.Tpo -c -o push-notification-event-messageexpunge.lo push-notification-event-messageexpunge.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-http -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-storage -I../../../src/lib-ssl-iostream -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-event-messageexpunge.lo -MD -MP -MF .deps/push-notification-event-messageexpunge.Tpo -c push-notification-event-messageexpunge.c  -fPIC -DPIC -o .libs/push-notification-event-messageexpunge.o
--- push-notification-event-mailboxsubscribe.lo ---
mv -f .deps/push-notification-event-mailboxsubscribe.Tpo .deps/push-notification-event-mailboxsubscribe.Plo
--- push-notification-event-messagenew.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-settings  -I../../../src/lib-http  -I../../../src/lib-index  -I../../../src/lib-mail  -I../../../src/lib-storage  -I../../../src/lib-ssl-iostream  -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-event-messagenew.lo -MD -MP -MF .deps/push-notification-event-messagenew.Tpo -c -o push-notification-event-messagenew.lo push-notification-event-messagenew.c
--- push-notification-event-mailboxunsubscribe.lo ---
mv -f .deps/push-notification-event-mailboxunsubscribe.Tpo .deps/push-notification-event-mailboxunsubscribe.Plo
--- push-notification-event-messageread.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-settings  -I../../../src/lib-http  -I../../../src/lib-index  -I../../../src/lib-mail  -I../../../src/lib-storage  -I../../../src/lib-ssl-iostream  -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-event-messageread.lo -MD -MP -MF .deps/push-notification-event-messageread.Tpo -c -o push-notification-event-messageread.lo push-notification-event-messageread.c
--- push-notification-event-messagenew.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-http -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-storage -I../../../src/lib-ssl-iostream -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-event-messagenew.lo -MD -MP -MF .deps/push-notification-event-messagenew.Tpo -c push-notification-event-messagenew.c  -fPIC -DPIC -o .libs/push-notification-event-messagenew.o
--- push-notification-event-messageread.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-http -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-storage -I../../../src/lib-ssl-iostream -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-event-messageread.lo -MD -MP -MF .deps/push-notification-event-messageread.Tpo -c push-notification-event-messageread.c  -fPIC -DPIC -o .libs/push-notification-event-messageread.o
--- push-notification-event-messageappend.lo ---
mv -f .deps/push-notification-event-messageappend.Tpo .deps/push-notification-event-messageappend.Plo
--- push-notification-event-messagetrash.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-settings  -I../../../src/lib-http  -I../../../src/lib-index  -I../../../src/lib-mail  -I../../../src/lib-storage  -I../../../src/lib-ssl-iostream  -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-event-messagetrash.lo -MD -MP -MF .deps/push-notification-event-messagetrash.Tpo -c -o push-notification-event-messagetrash.lo push-notification-event-messagetrash.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-http -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-storage -I../../../src/lib-ssl-iostream -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-event-messagetrash.lo -MD -MP -MF .deps/push-notification-event-messagetrash.Tpo -c push-notification-event-messagetrash.c  -fPIC -DPIC -o .libs/push-notification-event-messagetrash.o
--- push-notification-event-messageexpunge.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-http -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-storage -I../../../src/lib-ssl-iostream -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-event-messageexpunge.lo -MD -MP -MF .deps/push-notification-event-messageexpunge.Tpo -c push-notification-event-messageexpunge.c -o push-notification-event-messageexpunge.o >/dev/null 2>&1
--- push-notification-event-messageread.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-http -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-storage -I../../../src/lib-ssl-iostream -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-event-messageread.lo -MD -MP -MF .deps/push-notification-event-messageread.Tpo -c push-notification-event-messageread.c -o push-notification-event-messageread.o >/dev/null 2>&1
--- push-notification-event-messagenew.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-http -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-storage -I../../../src/lib-ssl-iostream -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-event-messagenew.lo -MD -MP -MF .deps/push-notification-event-messagenew.Tpo -c push-notification-event-messagenew.c -o push-notification-event-messagenew.o >/dev/null 2>&1
--- push-notification-event-messagetrash.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-http -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-storage -I../../../src/lib-ssl-iostream -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-event-messagetrash.lo -MD -MP -MF .deps/push-notification-event-messagetrash.Tpo -c push-notification-event-messagetrash.c -o push-notification-event-messagetrash.o >/dev/null 2>&1
--- push-notification-event-messageexpunge.lo ---
mv -f .deps/push-notification-event-messageexpunge.Tpo .deps/push-notification-event-messageexpunge.Plo
--- push-notification-event-message-common.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-settings  -I../../../src/lib-http  -I../../../src/lib-index  -I../../../src/lib-mail  -I../../../src/lib-storage  -I../../../src/lib-ssl-iostream  -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-event-message-common.lo -MD -MP -MF .deps/push-notification-event-message-common.Tpo -c -o push-notification-event-message-common.lo push-notification-event-message-common.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-http -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-storage -I../../../src/lib-ssl-iostream -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-event-message-common.lo -MD -MP -MF .deps/push-notification-event-message-common.Tpo -c push-notification-event-message-common.c  -fPIC -DPIC -o .libs/push-notification-event-message-common.o
--- push-notification-event-messageread.lo ---
mv -f .deps/push-notification-event-messageread.Tpo .deps/push-notification-event-messageread.Plo
--- push-notification-events.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-settings  -I../../../src/lib-http  -I../../../src/lib-index  -I../../../src/lib-mail  -I../../../src/lib-storage  -I../../../src/lib-ssl-iostream  -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-events.lo -MD -MP -MF .deps/push-notification-events.Tpo -c -o push-notification-events.lo push-notification-events.c
--- push-notification-event-messagenew.lo ---
mv -f .deps/push-notification-event-messagenew.Tpo .deps/push-notification-event-messagenew.Plo
--- push-notification-events-rfc5423.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-settings  -I../../../src/lib-http  -I../../../src/lib-index  -I../../../src/lib-mail  -I../../../src/lib-storage  -I../../../src/lib-ssl-iostream  -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-events-rfc5423.lo -MD -MP -MF .deps/push-notification-events-rfc5423.Tpo -c -o push-notification-events-rfc5423.lo push-notification-events-rfc5423.c
--- push-notification-event-messagetrash.lo ---
mv -f .deps/push-notification-event-messagetrash.Tpo .deps/push-notification-event-messagetrash.Plo
--- push-notification-plugin.lo ---
--- push-notification-events.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-http -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-storage -I../../../src/lib-ssl-iostream -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-events.lo -MD -MP -MF .deps/push-notification-events.Tpo -c push-notification-events.c  -fPIC -DPIC -o .libs/push-notification-events.o
--- push-notification-plugin.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-settings  -I../../../src/lib-http  -I../../../src/lib-index  -I../../../src/lib-mail  -I../../../src/lib-storage  -I../../../src/lib-ssl-iostream  -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-plugin.lo -MD -MP -MF .deps/push-notification-plugin.Tpo -c -o push-notification-plugin.lo push-notification-plugin.c
--- push-notification-events-rfc5423.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-http -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-storage -I../../../src/lib-ssl-iostream -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-events-rfc5423.lo -MD -MP -MF .deps/push-notification-events-rfc5423.Tpo -c push-notification-events-rfc5423.c  -fPIC -DPIC -o .libs/push-notification-events-rfc5423.o
--- push-notification-plugin.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-http -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-storage -I../../../src/lib-ssl-iostream -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-plugin.lo -MD -MP -MF .deps/push-notification-plugin.Tpo -c push-notification-plugin.c  -fPIC -DPIC -o .libs/push-notification-plugin.o
--- push-notification-event-message-common.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-http -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-storage -I../../../src/lib-ssl-iostream -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-event-message-common.lo -MD -MP -MF .deps/push-notification-event-message-common.Tpo -c push-notification-event-message-common.c -o push-notification-event-message-common.o >/dev/null 2>&1
--- push-notification-events-rfc5423.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-http -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-storage -I../../../src/lib-ssl-iostream -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-events-rfc5423.lo -MD -MP -MF .deps/push-notification-events-rfc5423.Tpo -c push-notification-events-rfc5423.c -o push-notification-events-rfc5423.o >/dev/null 2>&1
--- push-notification-events.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-http -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-storage -I../../../src/lib-ssl-iostream -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-events.lo -MD -MP -MF .deps/push-notification-events.Tpo -c push-notification-events.c -o push-notification-events.o >/dev/null 2>&1
--- push-notification-events-rfc5423.lo ---
mv -f .deps/push-notification-events-rfc5423.Tpo .deps/push-notification-events-rfc5423.Plo
--- push-notification-triggers.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-settings  -I../../../src/lib-http  -I../../../src/lib-index  -I../../../src/lib-mail  -I../../../src/lib-storage  -I../../../src/lib-ssl-iostream  -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-triggers.lo -MD -MP -MF .deps/push-notification-triggers.Tpo -c -o push-notification-triggers.lo push-notification-triggers.c
--- push-notification-event-message-common.lo ---
mv -f .deps/push-notification-event-message-common.Tpo .deps/push-notification-event-message-common.Plo
--- push-notification-txn-mbox.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-settings  -I../../../src/lib-http  -I../../../src/lib-index  -I../../../src/lib-mail  -I../../../src/lib-storage  -I../../../src/lib-ssl-iostream  -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-txn-mbox.lo -MD -MP -MF .deps/push-notification-txn-mbox.Tpo -c -o push-notification-txn-mbox.lo push-notification-txn-mbox.c
--- push-notification-triggers.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-http -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-storage -I../../../src/lib-ssl-iostream -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-triggers.lo -MD -MP -MF .deps/push-notification-triggers.Tpo -c push-notification-triggers.c  -fPIC -DPIC -o .libs/push-notification-triggers.o
--- push-notification-txn-mbox.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-http -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-storage -I../../../src/lib-ssl-iostream -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-txn-mbox.lo -MD -MP -MF .deps/push-notification-txn-mbox.Tpo -c push-notification-txn-mbox.c  -fPIC -DPIC -o .libs/push-notification-txn-mbox.o
--- push-notification-plugin.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-http -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-storage -I../../../src/lib-ssl-iostream -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-plugin.lo -MD -MP -MF .deps/push-notification-plugin.Tpo -c push-notification-plugin.c -o push-notification-plugin.o >/dev/null 2>&1
--- push-notification-events.lo ---
mv -f .deps/push-notification-events.Tpo .deps/push-notification-events.Plo
--- push-notification-txn-msg.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-settings  -I../../../src/lib-http  -I../../../src/lib-index  -I../../../src/lib-mail  -I../../../src/lib-storage  -I../../../src/lib-ssl-iostream  -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-txn-msg.lo -MD -MP -MF .deps/push-notification-txn-msg.Tpo -c -o push-notification-txn-msg.lo push-notification-txn-msg.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-http -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-storage -I../../../src/lib-ssl-iostream -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-txn-msg.lo -MD -MP -MF .deps/push-notification-txn-msg.Tpo -c push-notification-txn-msg.c  -fPIC -DPIC -o .libs/push-notification-txn-msg.o
--- push-notification-triggers.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-http -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-storage -I../../../src/lib-ssl-iostream -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-triggers.lo -MD -MP -MF .deps/push-notification-triggers.Tpo -c push-notification-triggers.c -o push-notification-triggers.o >/dev/null 2>&1
--- push-notification-txn-mbox.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-http -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-storage -I../../../src/lib-ssl-iostream -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-txn-mbox.lo -MD -MP -MF .deps/push-notification-txn-mbox.Tpo -c push-notification-txn-mbox.c -o push-notification-txn-mbox.o >/dev/null 2>&1
--- push-notification-txn-msg.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-http -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-storage -I../../../src/lib-ssl-iostream -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT push-notification-txn-msg.lo -MD -MP -MF .deps/push-notification-txn-msg.Tpo -c push-notification-txn-msg.c -o push-notification-txn-msg.o >/dev/null 2>&1
--- push-notification-plugin.lo ---
mv -f .deps/push-notification-plugin.Tpo .deps/push-notification-plugin.Plo
--- push-notification-txn-mbox.lo ---
mv -f .deps/push-notification-txn-mbox.Tpo .deps/push-notification-txn-mbox.Plo
--- push-notification-triggers.lo ---
mv -f .deps/push-notification-triggers.Tpo .deps/push-notification-triggers.Plo
--- push-notification-txn-msg.lo ---
mv -f .deps/push-notification-txn-msg.Tpo .deps/push-notification-txn-msg.Plo
--- lib20_push_notification_plugin.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 -mfunction-return=keep -Wall -W -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 lib20_push_notification_plugin.la -rpath /usr/local/lib/dovecot push-notification-driver-dlog.lo  push-notification-driver-ox.lo push-notification-drivers.lo  push-notification-event-flagsclear.lo  push-notification-event-flagsset.lo  push-notification-event-mailboxcreate.lo  push-notification-event-mailboxdelete.lo  push-notification-event-mailboxrename.lo  push-notification-event-mailboxsubscribe.lo  push-notification-event-mailboxunsubscribe.lo  push-notification-event-messageappend.lo  push-notification-event-messageexpunge.lo  push-notification-event-messagenew.lo  push-notification-event-messageread.lo  push-notification-event-messagetrash.lo  push-notification-event-message-common.lo  push-notification-events.lo  push-notification-events-rfc5423.lo  push-notification-plugin.lo push-notification-triggers.lo  push-notification-txn-mbox.lo push-notification-txn-msg.lo ../notify/lib15_notify_plugin.la 
*** Warning: Linking the shared library lib20_push_notification_plugin.la against the loadable module
*** lib15_notify_plugin.so is not portable!
libtool: link: cc -shared  -fPIC -DPIC  .libs/push-notification-driver-dlog.o .libs/push-notification-driver-ox.o .libs/push-notification-drivers.o .libs/push-notification-event-flagsclear.o .libs/push-notification-event-flagsset.o .libs/push-notification-event-mailboxcreate.o .libs/push-notification-event-mailboxdelete.o .libs/push-notification-event-mailboxrename.o .libs/push-notification-event-mailboxsubscribe.o .libs/push-notification-event-mailboxunsubscribe.o .libs/push-notification-event-messageappend.o .libs/push-notification-event-messageexpunge.o .libs/push-notification-event-messagenew.o .libs/push-notification-event-messageread.o .libs/push-notification-event-messagetrash.o .libs/push-notification-event-message-common.o .libs/push-notification-events.o .libs/push-notification-events-rfc5423.o .libs/push-notification-plugin.o .libs/push-notification-triggers.o .libs/push-notification-txn-mbox.o .libs/push-notification-txn-msg.o   -Wl,-rpath -Wl,/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/plugins/notify/.libs -Wl,-rpath -Wl,/usr/local/lib/dovecot -L/usr/local/lib ../notify/.libs/lib15_notify_plugin.so  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,lib20_push_notification_plugin.so -o .libs/lib20_push_notification_plugin.so
libtool: link: ar cr .libs/lib20_push_notification_plugin.a  push-notification-driver-dlog.o push-notification-driver-ox.o push-notification-drivers.o push-notification-event-flagsclear.o push-notification-event-flagsset.o push-notification-event-mailboxcreate.o push-notification-event-mailboxdelete.o push-notification-event-mailboxrename.o push-notification-event-mailboxsubscribe.o push-notification-event-mailboxunsubscribe.o push-notification-event-messageappend.o push-notification-event-messageexpunge.o push-notification-event-messagenew.o push-notification-event-messageread.o push-notification-event-messagetrash.o push-notification-event-message-common.o push-notification-events.o push-notification-events-rfc5423.o push-notification-plugin.o push-notification-triggers.o push-notification-txn-mbox.o push-notification-txn-msg.o
libtool: link: ranlib .libs/lib20_push_notification_plugin.a
libtool: link: ( cd ".libs" && rm -f "lib20_push_notification_plugin.la" && ln -s "../lib20_push_notification_plugin.la" "lib20_push_notification_plugin.la" )
Making all in mail-log
--- mail-log-plugin.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage  -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-log-plugin.lo -MD -MP -MF .deps/mail-log-plugin.Tpo -c -o mail-log-plugin.lo mail-log-plugin.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-log-plugin.lo -MD -MP -MF .deps/mail-log-plugin.Tpo -c mail-log-plugin.c  -fPIC -DPIC -o .libs/mail-log-plugin.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-log-plugin.lo -MD -MP -MF .deps/mail-log-plugin.Tpo -c mail-log-plugin.c -o mail-log-plugin.o >/dev/null 2>&1
mv -f .deps/mail-log-plugin.Tpo .deps/mail-log-plugin.Plo
--- lib20_mail_log_plugin.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 -mfunction-return=keep -Wall -W -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 lib20_mail_log_plugin.la -rpath /usr/local/lib/dovecot mail-log-plugin.lo ../notify/lib15_notify_plugin.la 
*** Warning: Linking the shared library lib20_mail_log_plugin.la against the loadable module
*** lib15_notify_plugin.so is not portable!
libtool: link: cc -shared  -fPIC -DPIC  .libs/mail-log-plugin.o   -Wl,-rpath -Wl,/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/plugins/notify/.libs -Wl,-rpath -Wl,/usr/local/lib/dovecot -L/usr/local/lib ../notify/.libs/lib15_notify_plugin.so  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,lib20_mail_log_plugin.so -o .libs/lib20_mail_log_plugin.so
libtool: link: ar cr .libs/lib20_mail_log_plugin.a  mail-log-plugin.o
libtool: link: ranlib .libs/lib20_mail_log_plugin.a
libtool: link: ( cd ".libs" && rm -f "lib20_mail_log_plugin.la" && ln -s "../lib20_mail_log_plugin.la" "lib20_mail_log_plugin.la" )
Making all in mailbox-alias
--- mailbox-alias-plugin.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-alias-plugin.lo -MD -MP -MF .deps/mailbox-alias-plugin.Tpo -c -o mailbox-alias-plugin.lo mailbox-alias-plugin.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-alias-plugin.lo -MD -MP -MF .deps/mailbox-alias-plugin.Tpo -c mailbox-alias-plugin.c  -fPIC -DPIC -o .libs/mailbox-alias-plugin.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mailbox-alias-plugin.lo -MD -MP -MF .deps/mailbox-alias-plugin.Tpo -c mailbox-alias-plugin.c -o mailbox-alias-plugin.o >/dev/null 2>&1
mv -f .deps/mailbox-alias-plugin.Tpo .deps/mailbox-alias-plugin.Plo
--- lib20_mailbox_alias_plugin.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 -mfunction-return=keep -Wall -W -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 lib20_mailbox_alias_plugin.la -rpath /usr/local/lib/dovecot mailbox-alias-plugin.lo  
libtool: link: cc -shared  -fPIC -DPIC  .libs/mailbox-alias-plugin.o   -L/usr/local/lib  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,lib20_mailbox_alias_plugin.so -o .libs/lib20_mailbox_alias_plugin.so
libtool: link: ar cr .libs/lib20_mailbox_alias_plugin.a  mailbox-alias-plugin.o
libtool: link: ranlib .libs/lib20_mailbox_alias_plugin.a
libtool: link: ( cd ".libs" && rm -f "lib20_mailbox_alias_plugin.la" && ln -s "../lib20_mailbox_alias_plugin.la" "lib20_mailbox_alias_plugin.la" )
Making all in quota
--- test-quota-util.o ---
--- quota-util.lo ---
--- quota_status-quota-status.o ---
--- quota_status-quota-status-settings.o ---
--- test-quota-util.o ---
cc -DHAVE_CONFIG_H -I. -I../../..  -I../../../src/lib  -I../../../src/lib-test  -I../../../src/lib-master  -I../../../src/lib-dict  -I../../../src/lib-index  -I../../../src/lib-mail  -I../../../src/lib-smtp  -I../../../src/lib-imap  -I../../../src/lib-imap-client  -I../../../src/lib-settings  -I../../../src/lib-ssl-iostream  -I../../../src/lib-storage  -I../../../src/lib-storage/index  -I../../../src/lib-storage/index/imapc  -I../../../src/lib-storage/index/maildir  -I../../../src/lib-program-client  -I../../../src/doveadm    -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-quota-util.o -MD -MP -MF .deps/test-quota-util.Tpo -c -o test-quota-util.o test-quota-util.c
--- quota-util.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-test  -I../../../src/lib-master  -I../../../src/lib-dict  -I../../../src/lib-index  -I../../../src/lib-mail  -I../../../src/lib-smtp  -I../../../src/lib-imap  -I../../../src/lib-imap-client  -I../../../src/lib-settings  -I../../../src/lib-ssl-iostream  -I../../../src/lib-storage  -I../../../src/lib-storage/index  -I../../../src/lib-storage/index/imapc  -I../../../src/lib-storage/index/maildir  -I../../../src/lib-program-client  -I../../../src/doveadm   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT quota-util.lo -MD -MP -MF .deps/quota-util.Tpo -c -o quota-util.lo quota-util.c
--- quota_status-quota-status.o ---
cc -DHAVE_CONFIG_H -I. -I../../..  -I../../../src/lib  -I../../../src/lib-test  -I../../../src/lib-master  -I../../../src/lib-dict  -I../../../src/lib-index  -I../../../src/lib-mail  -I../../../src/lib-smtp  -I../../../src/lib-imap  -I../../../src/lib-imap-client  -I../../../src/lib-settings  -I../../../src/lib-ssl-iostream  -I../../../src/lib-storage  -I../../../src/lib-storage/index  -I../../../src/lib-storage/index/imapc  -I../../../src/lib-storage/index/maildir  -I../../../src/lib-program-client  -I../../../src/doveadm   -fPIE -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT quota_status-quota-status.o -MD -MP -MF .deps/quota_status-quota-status.Tpo -c -o quota_status-quota-status.o `test -f 'quota-status.c' || echo './'`quota-status.c
--- quota_status-quota-status-settings.o ---
cc -DHAVE_CONFIG_H -I. -I../../..  -I../../../src/lib  -I../../../src/lib-test  -I../../../src/lib-master  -I../../../src/lib-dict  -I../../../src/lib-index  -I../../../src/lib-mail  -I../../../src/lib-smtp  -I../../../src/lib-imap  -I../../../src/lib-imap-client  -I../../../src/lib-settings  -I../../../src/lib-ssl-iostream  -I../../../src/lib-storage  -I../../../src/lib-storage/index  -I../../../src/lib-storage/index/imapc  -I../../../src/lib-storage/index/maildir  -I../../../src/lib-program-client  -I../../../src/doveadm   -fPIE -DPIE -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT quota_status-quota-status-settings.o -MD -MP -MF .deps/quota_status-quota-status-settings.Tpo -c -o quota_status-quota-status-settings.o `test -f 'quota-status-settings.c' || echo './'`quota-status-settings.c
--- quota-util.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-master -I../../../src/lib-dict -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-smtp -I../../../src/lib-imap -I../../../src/lib-imap-client -I../../../src/lib-settings -I../../../src/lib-ssl-iostream -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/lib-storage/index/imapc -I../../../src/lib-storage/index/maildir -I../../../src/lib-program-client -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT quota-util.lo -MD -MP -MF .deps/quota-util.Tpo -c quota-util.c  -fPIC -DPIC -o .libs/quota-util.o
--- quota_status-quota-status-settings.o ---
mv -f .deps/quota_status-quota-status-settings.Tpo .deps/quota_status-quota-status-settings.Po
--- quota.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-test  -I../../../src/lib-master  -I../../../src/lib-dict  -I../../../src/lib-index  -I../../../src/lib-mail  -I../../../src/lib-smtp  -I../../../src/lib-imap  -I../../../src/lib-imap-client  -I../../../src/lib-settings  -I../../../src/lib-ssl-iostream  -I../../../src/lib-storage  -I../../../src/lib-storage/index  -I../../../src/lib-storage/index/imapc  -I../../../src/lib-storage/index/maildir  -I../../../src/lib-program-client  -I../../../src/doveadm   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT quota.lo -MD -MP -MF .deps/quota.Tpo -c -o quota.lo quota.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-master -I../../../src/lib-dict -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-smtp -I../../../src/lib-imap -I../../../src/lib-imap-client -I../../../src/lib-settings -I../../../src/lib-ssl-iostream -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/lib-storage/index/imapc -I../../../src/lib-storage/index/maildir -I../../../src/lib-program-client -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT quota.lo -MD -MP -MF .deps/quota.Tpo -c quota.c  -fPIC -DPIC -o .libs/quota.o
--- test-quota-util.o ---
mv -f .deps/test-quota-util.Tpo .deps/test-quota-util.Po
--- quota-count.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-test  -I../../../src/lib-master  -I../../../src/lib-dict  -I../../../src/lib-index  -I../../../src/lib-mail  -I../../../src/lib-smtp  -I../../../src/lib-imap  -I../../../src/lib-imap-client  -I../../../src/lib-settings  -I../../../src/lib-ssl-iostream  -I../../../src/lib-storage  -I../../../src/lib-storage/index  -I../../../src/lib-storage/index/imapc  -I../../../src/lib-storage/index/maildir  -I../../../src/lib-program-client  -I../../../src/doveadm   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT quota-count.lo -MD -MP -MF .deps/quota-count.Tpo -c -o quota-count.lo quota-count.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-master -I../../../src/lib-dict -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-smtp -I../../../src/lib-imap -I../../../src/lib-imap-client -I../../../src/lib-settings -I../../../src/lib-ssl-iostream -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/lib-storage/index/imapc -I../../../src/lib-storage/index/maildir -I../../../src/lib-program-client -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT quota-count.lo -MD -MP -MF .deps/quota-count.Tpo -c quota-count.c  -fPIC -DPIC -o .libs/quota-count.o
--- quota_status-quota-status.o ---
mv -f .deps/quota_status-quota-status.Tpo .deps/quota_status-quota-status.Po
--- quota-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-master  -I../../../src/lib-dict  -I../../../src/lib-index  -I../../../src/lib-mail  -I../../../src/lib-smtp  -I../../../src/lib-imap  -I../../../src/lib-imap-client  -I../../../src/lib-settings  -I../../../src/lib-ssl-iostream  -I../../../src/lib-storage  -I../../../src/lib-storage/index  -I../../../src/lib-storage/index/imapc  -I../../../src/lib-storage/index/maildir  -I../../../src/lib-program-client  -I../../../src/doveadm   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT quota-dict.lo -MD -MP -MF .deps/quota-dict.Tpo -c -o quota-dict.lo quota-dict.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-master -I../../../src/lib-dict -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-smtp -I../../../src/lib-imap -I../../../src/lib-imap-client -I../../../src/lib-settings -I../../../src/lib-ssl-iostream -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/lib-storage/index/imapc -I../../../src/lib-storage/index/maildir -I../../../src/lib-program-client -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT quota-dict.lo -MD -MP -MF .deps/quota-dict.Tpo -c quota-dict.c  -fPIC -DPIC -o .libs/quota-dict.o
--- quota-util.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-master -I../../../src/lib-dict -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-smtp -I../../../src/lib-imap -I../../../src/lib-imap-client -I../../../src/lib-settings -I../../../src/lib-ssl-iostream -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/lib-storage/index/imapc -I../../../src/lib-storage/index/maildir -I../../../src/lib-program-client -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT quota-util.lo -MD -MP -MF .deps/quota-util.Tpo -c quota-util.c -o quota-util.o >/dev/null 2>&1
--- quota-count.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-master -I../../../src/lib-dict -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-smtp -I../../../src/lib-imap -I../../../src/lib-imap-client -I../../../src/lib-settings -I../../../src/lib-ssl-iostream -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/lib-storage/index/imapc -I../../../src/lib-storage/index/maildir -I../../../src/lib-program-client -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT quota-count.lo -MD -MP -MF .deps/quota-count.Tpo -c quota-count.c -o quota-count.o >/dev/null 2>&1
--- quota-dict.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-master -I../../../src/lib-dict -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-smtp -I../../../src/lib-imap -I../../../src/lib-imap-client -I../../../src/lib-settings -I../../../src/lib-ssl-iostream -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/lib-storage/index/imapc -I../../../src/lib-storage/index/maildir -I../../../src/lib-program-client -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT quota-dict.lo -MD -MP -MF .deps/quota-dict.Tpo -c quota-dict.c -o quota-dict.o >/dev/null 2>&1
--- quota-util.lo ---
mv -f .deps/quota-util.Tpo .deps/quota-util.Plo
--- quota-dirsize.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-test  -I../../../src/lib-master  -I../../../src/lib-dict  -I../../../src/lib-index  -I../../../src/lib-mail  -I../../../src/lib-smtp  -I../../../src/lib-imap  -I../../../src/lib-imap-client  -I../../../src/lib-settings  -I../../../src/lib-ssl-iostream  -I../../../src/lib-storage  -I../../../src/lib-storage/index  -I../../../src/lib-storage/index/imapc  -I../../../src/lib-storage/index/maildir  -I../../../src/lib-program-client  -I../../../src/doveadm   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT quota-dirsize.lo -MD -MP -MF .deps/quota-dirsize.Tpo -c -o quota-dirsize.lo quota-dirsize.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-master -I../../../src/lib-dict -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-smtp -I../../../src/lib-imap -I../../../src/lib-imap-client -I../../../src/lib-settings -I../../../src/lib-ssl-iostream -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/lib-storage/index/imapc -I../../../src/lib-storage/index/maildir -I../../../src/lib-program-client -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT quota-dirsize.lo -MD -MP -MF .deps/quota-dirsize.Tpo -c quota-dirsize.c  -fPIC -DPIC -o .libs/quota-dirsize.o
--- quota-count.lo ---
mv -f .deps/quota-count.Tpo .deps/quota-count.Plo
--- quota-imapc.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-test  -I../../../src/lib-master  -I../../../src/lib-dict  -I../../../src/lib-index  -I../../../src/lib-mail  -I../../../src/lib-smtp  -I../../../src/lib-imap  -I../../../src/lib-imap-client  -I../../../src/lib-settings  -I../../../src/lib-ssl-iostream  -I../../../src/lib-storage  -I../../../src/lib-storage/index  -I../../../src/lib-storage/index/imapc  -I../../../src/lib-storage/index/maildir  -I../../../src/lib-program-client  -I../../../src/doveadm   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT quota-imapc.lo -MD -MP -MF .deps/quota-imapc.Tpo -c -o quota-imapc.lo quota-imapc.c
--- quota-dict.lo ---
mv -f .deps/quota-dict.Tpo .deps/quota-dict.Plo
--- quota-maildir.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-test  -I../../../src/lib-master  -I../../../src/lib-dict  -I../../../src/lib-index  -I../../../src/lib-mail  -I../../../src/lib-smtp  -I../../../src/lib-imap  -I../../../src/lib-imap-client  -I../../../src/lib-settings  -I../../../src/lib-ssl-iostream  -I../../../src/lib-storage  -I../../../src/lib-storage/index  -I../../../src/lib-storage/index/imapc  -I../../../src/lib-storage/index/maildir  -I../../../src/lib-program-client  -I../../../src/doveadm   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT quota-maildir.lo -MD -MP -MF .deps/quota-maildir.Tpo -c -o quota-maildir.lo quota-maildir.c
--- quota-imapc.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-master -I../../../src/lib-dict -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-smtp -I../../../src/lib-imap -I../../../src/lib-imap-client -I../../../src/lib-settings -I../../../src/lib-ssl-iostream -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/lib-storage/index/imapc -I../../../src/lib-storage/index/maildir -I../../../src/lib-program-client -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT quota-imapc.lo -MD -MP -MF .deps/quota-imapc.Tpo -c quota-imapc.c  -fPIC -DPIC -o .libs/quota-imapc.o
--- quota-maildir.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-master -I../../../src/lib-dict -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-smtp -I../../../src/lib-imap -I../../../src/lib-imap-client -I../../../src/lib-settings -I../../../src/lib-ssl-iostream -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/lib-storage/index/imapc -I../../../src/lib-storage/index/maildir -I../../../src/lib-program-client -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT quota-maildir.lo -MD -MP -MF .deps/quota-maildir.Tpo -c quota-maildir.c  -fPIC -DPIC -o .libs/quota-maildir.o
--- quota-dirsize.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-master -I../../../src/lib-dict -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-smtp -I../../../src/lib-imap -I../../../src/lib-imap-client -I../../../src/lib-settings -I../../../src/lib-ssl-iostream -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/lib-storage/index/imapc -I../../../src/lib-storage/index/maildir -I../../../src/lib-program-client -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT quota-dirsize.lo -MD -MP -MF .deps/quota-dirsize.Tpo -c quota-dirsize.c -o quota-dirsize.o >/dev/null 2>&1
--- quota.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-master -I../../../src/lib-dict -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-smtp -I../../../src/lib-imap -I../../../src/lib-imap-client -I../../../src/lib-settings -I../../../src/lib-ssl-iostream -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/lib-storage/index/imapc -I../../../src/lib-storage/index/maildir -I../../../src/lib-program-client -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT quota.lo -MD -MP -MF .deps/quota.Tpo -c quota.c -o quota.o >/dev/null 2>&1
--- quota-imapc.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-master -I../../../src/lib-dict -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-smtp -I../../../src/lib-imap -I../../../src/lib-imap-client -I../../../src/lib-settings -I../../../src/lib-ssl-iostream -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/lib-storage/index/imapc -I../../../src/lib-storage/index/maildir -I../../../src/lib-program-client -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT quota-imapc.lo -MD -MP -MF .deps/quota-imapc.Tpo -c quota-imapc.c -o quota-imapc.o >/dev/null 2>&1
--- quota-dirsize.lo ---
mv -f .deps/quota-dirsize.Tpo .deps/quota-dirsize.Plo
--- quota-plugin.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-test  -I../../../src/lib-master  -I../../../src/lib-dict  -I../../../src/lib-index  -I../../../src/lib-mail  -I../../../src/lib-smtp  -I../../../src/lib-imap  -I../../../src/lib-imap-client  -I../../../src/lib-settings  -I../../../src/lib-ssl-iostream  -I../../../src/lib-storage  -I../../../src/lib-storage/index  -I../../../src/lib-storage/index/imapc  -I../../../src/lib-storage/index/maildir  -I../../../src/lib-program-client  -I../../../src/doveadm   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT quota-plugin.lo -MD -MP -MF .deps/quota-plugin.Tpo -c -o quota-plugin.lo quota-plugin.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-master -I../../../src/lib-dict -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-smtp -I../../../src/lib-imap -I../../../src/lib-imap-client -I../../../src/lib-settings -I../../../src/lib-ssl-iostream -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/lib-storage/index/imapc -I../../../src/lib-storage/index/maildir -I../../../src/lib-program-client -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT quota-plugin.lo -MD -MP -MF .deps/quota-plugin.Tpo -c quota-plugin.c  -fPIC -DPIC -o .libs/quota-plugin.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-master -I../../../src/lib-dict -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-smtp -I../../../src/lib-imap -I../../../src/lib-imap-client -I../../../src/lib-settings -I../../../src/lib-ssl-iostream -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/lib-storage/index/imapc -I../../../src/lib-storage/index/maildir -I../../../src/lib-program-client -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT quota-plugin.lo -MD -MP -MF .deps/quota-plugin.Tpo -c quota-plugin.c -o quota-plugin.o >/dev/null 2>&1
--- quota-maildir.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-master -I../../../src/lib-dict -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-smtp -I../../../src/lib-imap -I../../../src/lib-imap-client -I../../../src/lib-settings -I../../../src/lib-ssl-iostream -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/lib-storage/index/imapc -I../../../src/lib-storage/index/maildir -I../../../src/lib-program-client -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT quota-maildir.lo -MD -MP -MF .deps/quota-maildir.Tpo -c quota-maildir.c -o quota-maildir.o >/dev/null 2>&1
--- quota-plugin.lo ---
mv -f .deps/quota-plugin.Tpo .deps/quota-plugin.Plo
--- quota-storage.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-test  -I../../../src/lib-master  -I../../../src/lib-dict  -I../../../src/lib-index  -I../../../src/lib-mail  -I../../../src/lib-smtp  -I../../../src/lib-imap  -I../../../src/lib-imap-client  -I../../../src/lib-settings  -I../../../src/lib-ssl-iostream  -I../../../src/lib-storage  -I../../../src/lib-storage/index  -I../../../src/lib-storage/index/imapc  -I../../../src/lib-storage/index/maildir  -I../../../src/lib-program-client  -I../../../src/doveadm   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT quota-storage.lo -MD -MP -MF .deps/quota-storage.Tpo -c -o quota-storage.lo quota-storage.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-master -I../../../src/lib-dict -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-smtp -I../../../src/lib-imap -I../../../src/lib-imap-client -I../../../src/lib-settings -I../../../src/lib-ssl-iostream -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/lib-storage/index/imapc -I../../../src/lib-storage/index/maildir -I../../../src/lib-program-client -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT quota-storage.lo -MD -MP -MF .deps/quota-storage.Tpo -c quota-storage.c  -fPIC -DPIC -o .libs/quota-storage.o
--- quota-imapc.lo ---
mv -f .deps/quota-imapc.Tpo .deps/quota-imapc.Plo
--- doveadm-quota.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-test  -I../../../src/lib-master  -I../../../src/lib-dict  -I../../../src/lib-index  -I../../../src/lib-mail  -I../../../src/lib-smtp  -I../../../src/lib-imap  -I../../../src/lib-imap-client  -I../../../src/lib-settings  -I../../../src/lib-ssl-iostream  -I../../../src/lib-storage  -I../../../src/lib-storage/index  -I../../../src/lib-storage/index/imapc  -I../../../src/lib-storage/index/maildir  -I../../../src/lib-program-client  -I../../../src/doveadm   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-quota.lo -MD -MP -MF .deps/doveadm-quota.Tpo -c -o doveadm-quota.lo doveadm-quota.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-master -I../../../src/lib-dict -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-smtp -I../../../src/lib-imap -I../../../src/lib-imap-client -I../../../src/lib-settings -I../../../src/lib-ssl-iostream -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/lib-storage/index/imapc -I../../../src/lib-storage/index/maildir -I../../../src/lib-program-client -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-quota.lo -MD -MP -MF .deps/doveadm-quota.Tpo -c doveadm-quota.c  -fPIC -DPIC -o .libs/doveadm-quota.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-master -I../../../src/lib-dict -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-smtp -I../../../src/lib-imap -I../../../src/lib-imap-client -I../../../src/lib-settings -I../../../src/lib-ssl-iostream -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/lib-storage/index/imapc -I../../../src/lib-storage/index/maildir -I../../../src/lib-program-client -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-quota.lo -MD -MP -MF .deps/doveadm-quota.Tpo -c doveadm-quota.c -o doveadm-quota.o >/dev/null 2>&1
--- quota.lo ---
mv -f .deps/quota.Tpo .deps/quota.Plo
--- test-quota-util ---
/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 -mfunction-return=keep -Wall -W -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-quota-util test-quota-util.o quota-util.lo ../../lib-test/libtest.la  ../../lib/liblib.la 
--- quota-maildir.lo ---
mv -f .deps/quota-maildir.Tpo .deps/quota-maildir.Plo
--- rquota.h ---
rpcgen -h ./rquota.x > rquota.h.tmp
cat ./rquota-pragmas.h rquota.h.tmp > rquota.h
--- test-quota-util ---
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 -mfunction-return=keep -Wall -W -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 test-quota-util test-quota-util.o .libs/quota-util.o  -L/usr/local/lib ../../lib-test/.libs/libtest.a ../../lib/.libs/liblib.a 
--- doveadm-quota.lo ---
mv -f .deps/doveadm-quota.Tpo .deps/doveadm-quota.Plo
--- lib10_doveadm_quota_plugin.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 -mfunction-return=keep -Wall -W -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 lib10_doveadm_quota_plugin.la -rpath /usr/local/lib/dovecot/doveadm doveadm-quota.lo  
libtool: link: cc -shared  -fPIC -DPIC  .libs/doveadm-quota.o   -L/usr/local/lib  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,lib10_doveadm_quota_plugin.so -o .libs/lib10_doveadm_quota_plugin.so
--- quota-storage.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-master -I../../../src/lib-dict -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-smtp -I../../../src/lib-imap -I../../../src/lib-imap-client -I../../../src/lib-settings -I../../../src/lib-ssl-iostream -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/lib-storage/index/imapc -I../../../src/lib-storage/index/maildir -I../../../src/lib-program-client -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT quota-storage.lo -MD -MP -MF .deps/quota-storage.Tpo -c quota-storage.c -o quota-storage.o >/dev/null 2>&1
--- lib10_doveadm_quota_plugin.la ---
libtool: link: ar cr .libs/lib10_doveadm_quota_plugin.a  doveadm-quota.o
libtool: link: ranlib .libs/lib10_doveadm_quota_plugin.a
libtool: link: ( cd ".libs" && rm -f "lib10_doveadm_quota_plugin.la" && ln -s "../lib10_doveadm_quota_plugin.la" "lib10_doveadm_quota_plugin.la" )
--- rquota_xdr.c ---
--- quota-fs.lo ---
--- rquota_xdr.c ---
if [ "../../.." != "../../.." ]; then  cp ./rquota.x ../../../src/plugins/quota/;  fi;  (echo '#include "lib.h"';  echo '#undef FALSE';  echo '#undef TRUE';  echo '#include <rpc/rpc.h>';  rpcgen -c ../../../src/plugins/quota/rquota.x |  sed  -e 's/IXDR_PUT/(void)IXDR_PUT/g'  -e 's,!xdr_,0 == xdr_,'  -e 's,/usr/include/rpcsvc/rquota.h,rquota.h,'  -e 's/int32_t \*buf/int32_t *buf ATTR_UNUSED/'  -e 's/^static char rcsid.*//' ) > rquota_xdr.c.tmp
--- quota-fs.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-test  -I../../../src/lib-master  -I../../../src/lib-dict  -I../../../src/lib-index  -I../../../src/lib-mail  -I../../../src/lib-smtp  -I../../../src/lib-imap  -I../../../src/lib-imap-client  -I../../../src/lib-settings  -I../../../src/lib-ssl-iostream  -I../../../src/lib-storage  -I../../../src/lib-storage/index  -I../../../src/lib-storage/index/imapc  -I../../../src/lib-storage/index/maildir  -I../../../src/lib-program-client  -I../../../src/doveadm   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT quota-fs.lo -MD -MP -MF .deps/quota-fs.Tpo -c -o quota-fs.lo quota-fs.c
--- rquota_xdr.c ---
cat ./rquota-pragmas.h rquota_xdr.c.tmp > rquota_xdr.c
--- quota-fs.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-master -I../../../src/lib-dict -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-smtp -I../../../src/lib-imap -I../../../src/lib-imap-client -I../../../src/lib-settings -I../../../src/lib-ssl-iostream -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/lib-storage/index/imapc -I../../../src/lib-storage/index/maildir -I../../../src/lib-program-client -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT quota-fs.lo -MD -MP -MF .deps/quota-fs.Tpo -c quota-fs.c  -fPIC -DPIC -o .libs/quota-fs.o
--- rquota_xdr.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-test  -I../../../src/lib-master  -I../../../src/lib-dict  -I../../../src/lib-index  -I../../../src/lib-mail  -I../../../src/lib-smtp  -I../../../src/lib-imap  -I../../../src/lib-imap-client  -I../../../src/lib-settings  -I../../../src/lib-ssl-iostream  -I../../../src/lib-storage  -I../../../src/lib-storage/index  -I../../../src/lib-storage/index/imapc  -I../../../src/lib-storage/index/maildir  -I../../../src/lib-program-client  -I../../../src/doveadm   -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT rquota_xdr.lo -MD -MP -MF .deps/rquota_xdr.Tpo -c -o rquota_xdr.lo rquota_xdr.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-master -I../../../src/lib-dict -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-smtp -I../../../src/lib-imap -I../../../src/lib-imap-client -I../../../src/lib-settings -I../../../src/lib-ssl-iostream -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/lib-storage/index/imapc -I../../../src/lib-storage/index/maildir -I../../../src/lib-program-client -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT rquota_xdr.lo -MD -MP -MF .deps/rquota_xdr.Tpo -c rquota_xdr.c  -fPIC -DPIC -o .libs/rquota_xdr.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-master -I../../../src/lib-dict -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-smtp -I../../../src/lib-imap -I../../../src/lib-imap-client -I../../../src/lib-settings -I../../../src/lib-ssl-iostream -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/lib-storage/index/imapc -I../../../src/lib-storage/index/maildir -I../../../src/lib-program-client -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT rquota_xdr.lo -MD -MP -MF .deps/rquota_xdr.Tpo -c rquota_xdr.c -o rquota_xdr.o >/dev/null 2>&1
--- quota-storage.lo ---
mv -f .deps/quota-storage.Tpo .deps/quota-storage.Plo
--- quota-fs.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-master -I../../../src/lib-dict -I../../../src/lib-index -I../../../src/lib-mail -I../../../src/lib-smtp -I../../../src/lib-imap -I../../../src/lib-imap-client -I../../../src/lib-settings -I../../../src/lib-ssl-iostream -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/lib-storage/index/imapc -I../../../src/lib-storage/index/maildir -I../../../src/lib-program-client -I../../../src/doveadm -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT quota-fs.lo -MD -MP -MF .deps/quota-fs.Tpo -c quota-fs.c -o quota-fs.o >/dev/null 2>&1
--- rquota_xdr.lo ---
mv -f .deps/rquota_xdr.Tpo .deps/rquota_xdr.Plo
--- quota-fs.lo ---
mv -f .deps/quota-fs.Tpo .deps/quota-fs.Plo
--- lib10_quota_plugin.la ---
--- quota-status ---
--- lib10_quota_plugin.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 -mfunction-return=keep -Wall -W -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 lib10_quota_plugin.la -rpath /usr/local/lib/dovecot quota.lo quota-count.lo quota-fs.lo quota-dict.lo  quota-dirsize.lo quota-imapc.lo quota-maildir.lo  quota-plugin.lo quota-storage.lo quota-util.lo  rquota_xdr.lo  
--- quota-status ---
/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 -mfunction-return=keep -Wall -W -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 quota-status quota_status-quota-status.o  quota_status-quota-status-settings.o quota.lo  quota-count.lo  quota-fs.lo  quota-dict.lo  quota-dirsize.lo  quota-imapc.lo  quota-maildir.lo  quota-plugin.lo  quota-storage.lo  quota-util.lo  rquota_xdr.lo  ../../../src/lib-storage/libdovecot-storage.la ../../../src/lib-imap-storage/libimap-storage.la  ../../../src/lib-dovecot/libdovecot.la -export-dynamic    -pie 
--- lib10_quota_plugin.la ---
libtool: link: cc -shared  -fPIC -DPIC  .libs/quota.o .libs/quota-count.o .libs/quota-fs.o .libs/quota-dict.o .libs/quota-dirsize.o .libs/quota-imapc.o .libs/quota-maildir.o .libs/quota-plugin.o .libs/quota-storage.o .libs/quota-util.o .libs/rquota_xdr.o   -L/usr/local/lib  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,lib10_quota_plugin.so -o .libs/lib10_quota_plugin.so
libtool: link: ar cr .libs/lib10_quota_plugin.a  quota.o quota-count.o quota-fs.o quota-dict.o quota-dirsize.o quota-imapc.o quota-maildir.o quota-plugin.o quota-storage.o quota-util.o rquota_xdr.o
libtool: link: ranlib .libs/lib10_quota_plugin.a
--- quota-status ---
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 -mfunction-return=keep -Wall -W -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/quota-status quota_status-quota-status.o quota_status-quota-status-settings.o .libs/quota.o .libs/quota-count.o .libs/quota-fs.o .libs/quota-dict.o .libs/quota-dirsize.o .libs/quota-imapc.o .libs/quota-maildir.o .libs/quota-plugin.o .libs/quota-storage.o .libs/quota-util.o .libs/rquota_xdr.o -pie -Wl,--export-dynamic  -L/usr/local/lib ../../../src/lib-storage/.libs/libdovecot-storage.so ../../../src/lib-imap-storage/.libs/libimap-storage.a ../../../src/lib-dovecot/.libs/libdovecot.so  -Wl,-rpath -Wl,/usr/local/lib/dovecot
--- lib10_quota_plugin.la ---
libtool: link: ( cd ".libs" && rm -f "lib10_quota_plugin.la" && ln -s "../lib10_quota_plugin.la" "lib10_quota_plugin.la" )
Making all in quota-clone
--- quota-clone-plugin.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-dict  -I../../../src/lib-mail  -I../../../src/lib-index  -I../../../src/lib-storage  -I../../../src/plugins/quota -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT quota-clone-plugin.lo -MD -MP -MF .deps/quota-clone-plugin.Tpo -c -o quota-clone-plugin.lo quota-clone-plugin.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-dict -I../../../src/lib-mail -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/plugins/quota -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT quota-clone-plugin.lo -MD -MP -MF .deps/quota-clone-plugin.Tpo -c quota-clone-plugin.c  -fPIC -DPIC -o .libs/quota-clone-plugin.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-dict -I../../../src/lib-mail -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/plugins/quota -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT quota-clone-plugin.lo -MD -MP -MF .deps/quota-clone-plugin.Tpo -c quota-clone-plugin.c -o quota-clone-plugin.o >/dev/null 2>&1
mv -f .deps/quota-clone-plugin.Tpo .deps/quota-clone-plugin.Plo
--- lib20_quota_clone_plugin.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 -mfunction-return=keep -Wall -W -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 lib20_quota_clone_plugin.la -rpath /usr/local/lib/dovecot quota-clone-plugin.lo  
libtool: link: cc -shared  -fPIC -DPIC  .libs/quota-clone-plugin.o   -L/usr/local/lib  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,lib20_quota_clone_plugin.so -o .libs/lib20_quota_clone_plugin.so
libtool: link: ar cr .libs/lib20_quota_clone_plugin.a  quota-clone-plugin.o
libtool: link: ranlib .libs/lib20_quota_clone_plugin.a
libtool: link: ( cd ".libs" && rm -f "lib20_quota_clone_plugin.la" && ln -s "../lib20_quota_clone_plugin.la" "lib20_quota_clone_plugin.la" )
Making all in imap-quota
--- imap-quota-plugin.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage  -I../../../src/imap  -I../../../src/plugins/quota -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-quota-plugin.lo -MD -MP -MF .deps/imap-quota-plugin.Tpo -c -o imap-quota-plugin.lo imap-quota-plugin.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/imap -I../../../src/plugins/quota -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-quota-plugin.lo -MD -MP -MF .deps/imap-quota-plugin.Tpo -c imap-quota-plugin.c  -fPIC -DPIC -o .libs/imap-quota-plugin.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/imap -I../../../src/plugins/quota -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-quota-plugin.lo -MD -MP -MF .deps/imap-quota-plugin.Tpo -c imap-quota-plugin.c -o imap-quota-plugin.o >/dev/null 2>&1
mv -f .deps/imap-quota-plugin.Tpo .deps/imap-quota-plugin.Plo
--- lib11_imap_quota_plugin.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 -mfunction-return=keep -Wall -W -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 lib11_imap_quota_plugin.la -rpath /usr/local/lib/dovecot imap-quota-plugin.lo ../quota/lib10_quota_plugin.la 
*** Warning: Linking the shared library lib11_imap_quota_plugin.la against the loadable module
*** lib10_quota_plugin.so is not portable!
libtool: link: cc -shared  -fPIC -DPIC  .libs/imap-quota-plugin.o   -Wl,-rpath -Wl,/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/plugins/quota/.libs -Wl,-rpath -Wl,/usr/local/lib/dovecot -L/usr/local/lib ../quota/.libs/lib10_quota_plugin.so  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,lib11_imap_quota_plugin.so -o .libs/lib11_imap_quota_plugin.so
libtool: link: ar cr .libs/lib11_imap_quota_plugin.a  imap-quota-plugin.o
libtool: link: ranlib .libs/lib11_imap_quota_plugin.a
libtool: link: ( cd ".libs" && rm -f "lib11_imap_quota_plugin.la" && ln -s "../lib11_imap_quota_plugin.la" "lib11_imap_quota_plugin.la" )
Making all in pop3-migration
--- test-pop3-migration-plugin.o ---
--- pop3-migration-plugin.lo ---
--- test-pop3-migration-plugin.o ---
cc -DHAVE_CONFIG_H -I. -I../../..  -I../../../src/lib  -I../../../src/lib-test  -I../../../src/lib-mail  -I../../../src/lib-index  -I../../../src/lib-storage  -I../../../src/lib-storage/index  -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-pop3-migration-plugin.o -MD -MP -MF .deps/test-pop3-migration-plugin.Tpo -c -o test-pop3-migration-plugin.o test-pop3-migration-plugin.c
--- pop3-migration-plugin.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-test  -I../../../src/lib-mail  -I../../../src/lib-index  -I../../../src/lib-storage  -I../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT pop3-migration-plugin.lo -MD -MP -MF .deps/pop3-migration-plugin.Tpo -c -o pop3-migration-plugin.lo pop3-migration-plugin.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-mail -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT pop3-migration-plugin.lo -MD -MP -MF .deps/pop3-migration-plugin.Tpo -c pop3-migration-plugin.c  -fPIC -DPIC -o .libs/pop3-migration-plugin.o
--- test-pop3-migration-plugin.o ---
mv -f .deps/test-pop3-migration-plugin.Tpo .deps/test-pop3-migration-plugin.Po
--- pop3-migration-plugin.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-mail -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/index -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT pop3-migration-plugin.lo -MD -MP -MF .deps/pop3-migration-plugin.Tpo -c pop3-migration-plugin.c -o pop3-migration-plugin.o >/dev/null 2>&1
mv -f .deps/pop3-migration-plugin.Tpo .deps/pop3-migration-plugin.Plo
--- lib05_pop3_migration_plugin.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 -mfunction-return=keep -Wall -W -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 lib05_pop3_migration_plugin.la -rpath /usr/local/lib/dovecot pop3-migration-plugin.lo  
libtool: link: cc -shared  -fPIC -DPIC  .libs/pop3-migration-plugin.o   -L/usr/local/lib  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,lib05_pop3_migration_plugin.so -o .libs/lib05_pop3_migration_plugin.so
libtool: link: ar cr .libs/lib05_pop3_migration_plugin.a  pop3-migration-plugin.o
libtool: link: ranlib .libs/lib05_pop3_migration_plugin.a
libtool: link: ( cd ".libs" && rm -f "lib05_pop3_migration_plugin.la" && ln -s "../lib05_pop3_migration_plugin.la" "lib05_pop3_migration_plugin.la" )
--- test-pop3-migration-plugin ---
/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 -mfunction-return=keep -Wall -W -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-pop3-migration-plugin test-pop3-migration-plugin.o pop3-migration-plugin.lo ../../../src/lib-storage/libdovecot-storage.la ../../../src/lib-imap-storage/libimap-storage.la  ../../../src/lib-dovecot/libdovecot.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 -mfunction-return=keep -Wall -W -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-pop3-migration-plugin test-pop3-migration-plugin.o .libs/pop3-migration-plugin.o -Wl,--export-dynamic  -L/usr/local/lib ../../../src/lib-storage/.libs/libdovecot-storage.so ../../../src/lib-imap-storage/.libs/libimap-storage.a ../../../src/lib-dovecot/.libs/libdovecot.so  -Wl,-rpath -Wl,/usr/local/lib/dovecot
Making all in replication
--- replication-plugin.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage  -I../../../src/replication  -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT replication-plugin.lo -MD -MP -MF .deps/replication-plugin.Tpo -c -o replication-plugin.lo replication-plugin.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/replication -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT replication-plugin.lo -MD -MP -MF .deps/replication-plugin.Tpo -c replication-plugin.c  -fPIC -DPIC -o .libs/replication-plugin.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/replication -I../../../src/plugins/notify -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT replication-plugin.lo -MD -MP -MF .deps/replication-plugin.Tpo -c replication-plugin.c -o replication-plugin.o >/dev/null 2>&1
mv -f .deps/replication-plugin.Tpo .deps/replication-plugin.Plo
--- lib20_replication_plugin.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 -mfunction-return=keep -Wall -W -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 lib20_replication_plugin.la -rpath /usr/local/lib/dovecot replication-plugin.lo ../notify/lib15_notify_plugin.la 
*** Warning: Linking the shared library lib20_replication_plugin.la against the loadable module
*** lib15_notify_plugin.so is not portable!
libtool: link: cc -shared  -fPIC -DPIC  .libs/replication-plugin.o   -Wl,-rpath -Wl,/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/plugins/notify/.libs -Wl,-rpath -Wl,/usr/local/lib/dovecot -L/usr/local/lib ../notify/.libs/lib15_notify_plugin.so  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,lib20_replication_plugin.so -o .libs/lib20_replication_plugin.so
libtool: link: ar cr .libs/lib20_replication_plugin.a  replication-plugin.o
libtool: link: ranlib .libs/lib20_replication_plugin.a
libtool: link: ( cd ".libs" && rm -f "lib20_replication_plugin.la" && ln -s "../lib20_replication_plugin.la" "lib20_replication_plugin.la" )
Making all in old-stats
--- mail-stats.lo ---
--- mail-stats-fill.lo ---
--- mail-stats-connection.lo ---
--- stats-plugin.lo ---
--- mail-stats.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-settings  -I../../../src/lib-mail  -I../../../src/lib-master  -I../../../src/lib-old-stats  -I../../../src/lib-index  -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-stats.lo -MD -MP -MF .deps/mail-stats.Tpo -c -o mail-stats.lo mail-stats.c
--- mail-stats-fill.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-settings  -I../../../src/lib-mail  -I../../../src/lib-master  -I../../../src/lib-old-stats  -I../../../src/lib-index  -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-stats-fill.lo -MD -MP -MF .deps/mail-stats-fill.Tpo -c -o mail-stats-fill.lo mail-stats-fill.c
--- stats-plugin.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-settings  -I../../../src/lib-mail  -I../../../src/lib-master  -I../../../src/lib-old-stats  -I../../../src/lib-index  -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-plugin.lo -MD -MP -MF .deps/stats-plugin.Tpo -c -o stats-plugin.lo stats-plugin.c
--- mail-stats-connection.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-settings  -I../../../src/lib-mail  -I../../../src/lib-master  -I../../../src/lib-old-stats  -I../../../src/lib-index  -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-stats-connection.lo -MD -MP -MF .deps/mail-stats-connection.Tpo -c -o mail-stats-connection.lo mail-stats-connection.c
--- mail-stats.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-mail -I../../../src/lib-master -I../../../src/lib-old-stats -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-stats.lo -MD -MP -MF .deps/mail-stats.Tpo -c mail-stats.c  -fPIC -DPIC -o .libs/mail-stats.o
--- mail-stats-fill.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-mail -I../../../src/lib-master -I../../../src/lib-old-stats -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-stats-fill.lo -MD -MP -MF .deps/mail-stats-fill.Tpo -c mail-stats-fill.c  -fPIC -DPIC -o .libs/mail-stats-fill.o
--- stats-plugin.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-mail -I../../../src/lib-master -I../../../src/lib-old-stats -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-plugin.lo -MD -MP -MF .deps/stats-plugin.Tpo -c stats-plugin.c  -fPIC -DPIC -o .libs/stats-plugin.o
--- mail-stats-connection.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-mail -I../../../src/lib-master -I../../../src/lib-old-stats -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-stats-connection.lo -MD -MP -MF .deps/mail-stats-connection.Tpo -c mail-stats-connection.c  -fPIC -DPIC -o .libs/mail-stats-connection.o
--- mail-stats.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-mail -I../../../src/lib-master -I../../../src/lib-old-stats -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-stats.lo -MD -MP -MF .deps/mail-stats.Tpo -c mail-stats.c -o mail-stats.o >/dev/null 2>&1
--- mail-stats-connection.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-mail -I../../../src/lib-master -I../../../src/lib-old-stats -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-stats-connection.lo -MD -MP -MF .deps/mail-stats-connection.Tpo -c mail-stats-connection.c -o mail-stats-connection.o >/dev/null 2>&1
--- mail-stats-fill.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-mail -I../../../src/lib-master -I../../../src/lib-old-stats -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-stats-fill.lo -MD -MP -MF .deps/mail-stats-fill.Tpo -c mail-stats-fill.c -o mail-stats-fill.o >/dev/null 2>&1
--- mail-stats.lo ---
mv -f .deps/mail-stats.Tpo .deps/mail-stats.Plo
--- libold_stats_mail.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 -mfunction-return=keep -Wall -W -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 libold_stats_mail.la -rpath /usr/local/lib/dovecot/old-stats  mail-stats.lo ../../../src/lib-dovecot/libdovecot.la -export-dynamic 
--- mail-stats-connection.lo ---
mv -f .deps/mail-stats-connection.Tpo .deps/mail-stats-connection.Plo
--- mail-stats-fill.lo ---
mv -f .deps/mail-stats-fill.Tpo .deps/mail-stats-fill.Plo
--- stats-plugin.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-settings -I../../../src/lib-mail -I../../../src/lib-master -I../../../src/lib-old-stats -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-plugin.lo -MD -MP -MF .deps/stats-plugin.Tpo -c stats-plugin.c -o stats-plugin.o >/dev/null 2>&1
--- libold_stats_mail.la ---
libtool: link: cc -shared  -fPIC -DPIC  .libs/mail-stats.o   -Wl,-rpath -Wl,/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-dovecot/.libs -Wl,-rpath -Wl,/usr/local/lib/dovecot -L/usr/local/lib ../../../src/lib-dovecot/.libs/libdovecot.so  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,libold_stats_mail.so -o .libs/libold_stats_mail.so
libtool: link: ar cr .libs/libold_stats_mail.a  mail-stats.o
libtool: link: ranlib .libs/libold_stats_mail.a
libtool: link: ( cd ".libs" && rm -f "libold_stats_mail.la" && ln -s "../libold_stats_mail.la" "libold_stats_mail.la" )
--- stats-plugin.lo ---
mv -f .deps/stats-plugin.Tpo .deps/stats-plugin.Plo
--- lib90_old_stats_plugin.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 -mfunction-return=keep -Wall -W -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 lib90_old_stats_plugin.la -rpath /usr/local/lib/dovecot mail-stats.lo  mail-stats-fill.lo mail-stats-connection.lo stats-plugin.lo  
libtool: link: cc -shared  -fPIC -DPIC  .libs/mail-stats.o .libs/mail-stats-fill.o .libs/mail-stats-connection.o .libs/stats-plugin.o   -L/usr/local/lib  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,lib90_old_stats_plugin.so -o .libs/lib90_old_stats_plugin.so
libtool: link: ar cr .libs/lib90_old_stats_plugin.a  mail-stats.o mail-stats-fill.o mail-stats-connection.o stats-plugin.o
libtool: link: ranlib .libs/lib90_old_stats_plugin.a
libtool: link: ( cd ".libs" && rm -f "lib90_old_stats_plugin.la" && ln -s "../lib90_old_stats_plugin.la" "lib90_old_stats_plugin.la" )
Making all in imap-old-stats
--- imap-stats-plugin.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-old-stats  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage  -I../../../src/imap  -I../../../src/plugins/old-stats -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-stats-plugin.lo -MD -MP -MF .deps/imap-stats-plugin.Tpo -c -o imap-stats-plugin.lo imap-stats-plugin.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-old-stats -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/imap -I../../../src/plugins/old-stats -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-stats-plugin.lo -MD -MP -MF .deps/imap-stats-plugin.Tpo -c imap-stats-plugin.c  -fPIC -DPIC -o .libs/imap-stats-plugin.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-old-stats -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/imap -I../../../src/plugins/old-stats -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-stats-plugin.lo -MD -MP -MF .deps/imap-stats-plugin.Tpo -c imap-stats-plugin.c -o imap-stats-plugin.o >/dev/null 2>&1
mv -f .deps/imap-stats-plugin.Tpo .deps/imap-stats-plugin.Plo
--- lib95_imap_old_stats_plugin.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 -mfunction-return=keep -Wall -W -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 lib95_imap_old_stats_plugin.la -rpath /usr/local/lib/dovecot imap-stats-plugin.lo ../old-stats/lib90_old_stats_plugin.la 
*** Warning: Linking the shared library lib95_imap_old_stats_plugin.la against the loadable module
*** lib90_old_stats_plugin.so is not portable!
libtool: link: cc -shared  -fPIC -DPIC  .libs/imap-stats-plugin.o   -Wl,-rpath -Wl,/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/plugins/old-stats/.libs -Wl,-rpath -Wl,/usr/local/lib/dovecot -L/usr/local/lib ../old-stats/.libs/lib90_old_stats_plugin.so  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,lib95_imap_old_stats_plugin.so -o .libs/lib95_imap_old_stats_plugin.so
libtool: link: ar cr .libs/lib95_imap_old_stats_plugin.a  imap-stats-plugin.o
libtool: link: ranlib .libs/lib95_imap_old_stats_plugin.a
libtool: link: ( cd ".libs" && rm -f "lib95_imap_old_stats_plugin.la" && ln -s "../lib95_imap_old_stats_plugin.la" "lib95_imap_old_stats_plugin.la" )
Making all in mail-crypt
--- test_mail_key-mail-crypt-global-key.o ---
--- mail-crypt-global-key.lo ---
--- mail-crypt-userenv.lo ---
--- mail-crypt-key.lo ---
--- test_mail_key-mail-crypt-global-key.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-mail  -I../../../src/lib-dict  -I../../../src/lib-index  -I../../../src/lib-storage/index  -I../../../src/lib-storage  -I../../../src/lib-dcrypt  -I../../../src/lib-fs  -I../../../src/doveadm  -I../../../src/plugins/acl -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -I../../../src/lib  -I../../../src/lib-test  -I../../../src/lib-settings  -I../../../src/lib-master  -I../../../src/lib-mail  -I../../../src/lib-dict  -I../../../src/lib-index  -I../../../src/lib-storage/index  -I../../../src/lib-storage  -I../../../src/lib-dcrypt  -I../../../src/lib-fs  -I../../../src/doveadm  -I../../../src/plugins/acl  -Dtop_builddir=\"../../..\" -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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_key-mail-crypt-global-key.o -MD -MP -MF .deps/test_mail_key-mail-crypt-global-key.Tpo -c -o test_mail_key-mail-crypt-global-key.o `test -f 'mail-crypt-global-key.c' || echo './'`mail-crypt-global-key.c
--- mail-crypt-global-key.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-mail  -I../../../src/lib-dict  -I../../../src/lib-index  -I../../../src/lib-storage/index  -I../../../src/lib-storage  -I../../../src/lib-dcrypt  -I../../../src/lib-fs  -I../../../src/doveadm  -I../../../src/plugins/acl -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-crypt-global-key.lo -MD -MP -MF .deps/mail-crypt-global-key.Tpo -c -o mail-crypt-global-key.lo mail-crypt-global-key.c
--- mail-crypt-userenv.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-mail  -I../../../src/lib-dict  -I../../../src/lib-index  -I../../../src/lib-storage/index  -I../../../src/lib-storage  -I../../../src/lib-dcrypt  -I../../../src/lib-fs  -I../../../src/doveadm  -I../../../src/plugins/acl -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-crypt-userenv.lo -MD -MP -MF .deps/mail-crypt-userenv.Tpo -c -o mail-crypt-userenv.lo mail-crypt-userenv.c
--- mail-crypt-key.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-mail  -I../../../src/lib-dict  -I../../../src/lib-index  -I../../../src/lib-storage/index  -I../../../src/lib-storage  -I../../../src/lib-dcrypt  -I../../../src/lib-fs  -I../../../src/doveadm  -I../../../src/plugins/acl -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-crypt-key.lo -MD -MP -MF .deps/mail-crypt-key.Tpo -c -o mail-crypt-key.lo mail-crypt-key.c
--- mail-crypt-global-key.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-mail -I../../../src/lib-dict -I../../../src/lib-index -I../../../src/lib-storage/index -I../../../src/lib-storage -I../../../src/lib-dcrypt -I../../../src/lib-fs -I../../../src/doveadm -I../../../src/plugins/acl -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-crypt-global-key.lo -MD -MP -MF .deps/mail-crypt-global-key.Tpo -c mail-crypt-global-key.c  -fPIC -DPIC -o .libs/mail-crypt-global-key.o
--- mail-crypt-userenv.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-mail -I../../../src/lib-dict -I../../../src/lib-index -I../../../src/lib-storage/index -I../../../src/lib-storage -I../../../src/lib-dcrypt -I../../../src/lib-fs -I../../../src/doveadm -I../../../src/plugins/acl -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-crypt-userenv.lo -MD -MP -MF .deps/mail-crypt-userenv.Tpo -c mail-crypt-userenv.c  -fPIC -DPIC -o .libs/mail-crypt-userenv.o
--- mail-crypt-key.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-mail -I../../../src/lib-dict -I../../../src/lib-index -I../../../src/lib-storage/index -I../../../src/lib-storage -I../../../src/lib-dcrypt -I../../../src/lib-fs -I../../../src/doveadm -I../../../src/plugins/acl -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-crypt-key.lo -MD -MP -MF .deps/mail-crypt-key.Tpo -c mail-crypt-key.c  -fPIC -DPIC -o .libs/mail-crypt-key.o
--- test_mail_key-mail-crypt-global-key.o ---
mv -f .deps/test_mail_key-mail-crypt-global-key.Tpo .deps/test_mail_key-mail-crypt-global-key.Po
--- fs-crypt-settings.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-mail  -I../../../src/lib-dict  -I../../../src/lib-index  -I../../../src/lib-storage/index  -I../../../src/lib-storage  -I../../../src/lib-dcrypt  -I../../../src/lib-fs  -I../../../src/doveadm  -I../../../src/plugins/acl -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-crypt-settings.lo -MD -MP -MF .deps/fs-crypt-settings.Tpo -c -o fs-crypt-settings.lo fs-crypt-settings.c
--- mail-crypt-userenv.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-mail -I../../../src/lib-dict -I../../../src/lib-index -I../../../src/lib-storage/index -I../../../src/lib-storage -I../../../src/lib-dcrypt -I../../../src/lib-fs -I../../../src/doveadm -I../../../src/plugins/acl -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-crypt-userenv.lo -MD -MP -MF .deps/mail-crypt-userenv.Tpo -c mail-crypt-userenv.c -o mail-crypt-userenv.o >/dev/null 2>&1
--- mail-crypt-global-key.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-mail -I../../../src/lib-dict -I../../../src/lib-index -I../../../src/lib-storage/index -I../../../src/lib-storage -I../../../src/lib-dcrypt -I../../../src/lib-fs -I../../../src/doveadm -I../../../src/plugins/acl -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-crypt-global-key.lo -MD -MP -MF .deps/mail-crypt-global-key.Tpo -c mail-crypt-global-key.c -o mail-crypt-global-key.o >/dev/null 2>&1
--- fs-crypt-settings.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-mail -I../../../src/lib-dict -I../../../src/lib-index -I../../../src/lib-storage/index -I../../../src/lib-storage -I../../../src/lib-dcrypt -I../../../src/lib-fs -I../../../src/doveadm -I../../../src/plugins/acl -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-crypt-settings.lo -MD -MP -MF .deps/fs-crypt-settings.Tpo -c fs-crypt-settings.c  -fPIC -DPIC -o .libs/fs-crypt-settings.o
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-mail -I../../../src/lib-dict -I../../../src/lib-index -I../../../src/lib-storage/index -I../../../src/lib-storage -I../../../src/lib-dcrypt -I../../../src/lib-fs -I../../../src/doveadm -I../../../src/plugins/acl -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-crypt-settings.lo -MD -MP -MF .deps/fs-crypt-settings.Tpo -c fs-crypt-settings.c -o fs-crypt-settings.o >/dev/null 2>&1
--- mail-crypt-userenv.lo ---
mv -f .deps/mail-crypt-userenv.Tpo .deps/mail-crypt-userenv.Plo
--- test_mail_global_key-test-mail-global-key.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-mail  -I../../../src/lib-dict  -I../../../src/lib-index  -I../../../src/lib-storage/index  -I../../../src/lib-storage  -I../../../src/lib-dcrypt  -I../../../src/lib-fs  -I../../../src/doveadm  -I../../../src/plugins/acl -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -I../../../src/lib  -I../../../src/lib-test  -I../../../src/lib-settings  -I../../../src/lib-master  -I../../../src/lib-mail  -I../../../src/lib-dict  -I../../../src/lib-index  -I../../../src/lib-storage/index  -I../../../src/lib-storage  -I../../../src/lib-dcrypt  -I../../../src/lib-fs  -I../../../src/doveadm  -I../../../src/plugins/acl  -Dtop_builddir=\"../../..\" -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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_global_key-test-mail-global-key.o -MD -MP -MF .deps/test_mail_global_key-test-mail-global-key.Tpo -c -o test_mail_global_key-test-mail-global-key.o `test -f 'test-mail-global-key.c' || echo './'`test-mail-global-key.c
--- fs-crypt-settings.lo ---
mv -f .deps/fs-crypt-settings.Tpo .deps/fs-crypt-settings.Plo
--- test_mail_global_key-fs-crypt-settings.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-mail  -I../../../src/lib-dict  -I../../../src/lib-index  -I../../../src/lib-storage/index  -I../../../src/lib-storage  -I../../../src/lib-dcrypt  -I../../../src/lib-fs  -I../../../src/doveadm  -I../../../src/plugins/acl -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -I../../../src/lib  -I../../../src/lib-test  -I../../../src/lib-settings  -I../../../src/lib-master  -I../../../src/lib-mail  -I../../../src/lib-dict  -I../../../src/lib-index  -I../../../src/lib-storage/index  -I../../../src/lib-storage  -I../../../src/lib-dcrypt  -I../../../src/lib-fs  -I../../../src/doveadm  -I../../../src/plugins/acl  -Dtop_builddir=\"../../..\" -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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_global_key-fs-crypt-settings.o -MD -MP -MF .deps/test_mail_global_key-fs-crypt-settings.Tpo -c -o test_mail_global_key-fs-crypt-settings.o `test -f 'fs-crypt-settings.c' || echo './'`fs-crypt-settings.c
--- mail-crypt-global-key.lo ---
mv -f .deps/mail-crypt-global-key.Tpo .deps/mail-crypt-global-key.Plo
--- test_mail_global_key-mail-crypt-global-key.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-mail  -I../../../src/lib-dict  -I../../../src/lib-index  -I../../../src/lib-storage/index  -I../../../src/lib-storage  -I../../../src/lib-dcrypt  -I../../../src/lib-fs  -I../../../src/doveadm  -I../../../src/plugins/acl -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -I../../../src/lib  -I../../../src/lib-test  -I../../../src/lib-settings  -I../../../src/lib-master  -I../../../src/lib-mail  -I../../../src/lib-dict  -I../../../src/lib-index  -I../../../src/lib-storage/index  -I../../../src/lib-storage  -I../../../src/lib-dcrypt  -I../../../src/lib-fs  -I../../../src/doveadm  -I../../../src/plugins/acl  -Dtop_builddir=\"../../..\" -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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_global_key-mail-crypt-global-key.o -MD -MP -MF .deps/test_mail_global_key-mail-crypt-global-key.Tpo -c -o test_mail_global_key-mail-crypt-global-key.o `test -f 'mail-crypt-global-key.c' || echo './'`mail-crypt-global-key.c
--- test_mail_global_key-fs-crypt-settings.o ---
mv -f .deps/test_mail_global_key-fs-crypt-settings.Tpo .deps/test_mail_global_key-fs-crypt-settings.Po
--- test_mail_key-test-mail-key.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-mail  -I../../../src/lib-dict  -I../../../src/lib-index  -I../../../src/lib-storage/index  -I../../../src/lib-storage  -I../../../src/lib-dcrypt  -I../../../src/lib-fs  -I../../../src/doveadm  -I../../../src/plugins/acl -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -I../../../src/lib  -I../../../src/lib-test  -I../../../src/lib-settings  -I../../../src/lib-master  -I../../../src/lib-mail  -I../../../src/lib-dict  -I../../../src/lib-index  -I../../../src/lib-storage/index  -I../../../src/lib-storage  -I../../../src/lib-dcrypt  -I../../../src/lib-fs  -I../../../src/doveadm  -I../../../src/plugins/acl  -Dtop_builddir=\"../../..\" -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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_key-test-mail-key.o -MD -MP -MF .deps/test_mail_key-test-mail-key.Tpo -c -o test_mail_key-test-mail-key.o `test -f 'test-mail-key.c' || echo './'`test-mail-key.c
--- mail-crypt-key.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-mail -I../../../src/lib-dict -I../../../src/lib-index -I../../../src/lib-storage/index -I../../../src/lib-storage -I../../../src/lib-dcrypt -I../../../src/lib-fs -I../../../src/doveadm -I../../../src/plugins/acl -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-crypt-key.lo -MD -MP -MF .deps/mail-crypt-key.Tpo -c mail-crypt-key.c -o mail-crypt-key.o >/dev/null 2>&1
--- test_mail_global_key-test-mail-global-key.o ---
mv -f .deps/test_mail_global_key-test-mail-global-key.Tpo .deps/test_mail_global_key-test-mail-global-key.Po
--- test_mail_key-mail-crypt-key.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-mail  -I../../../src/lib-dict  -I../../../src/lib-index  -I../../../src/lib-storage/index  -I../../../src/lib-storage  -I../../../src/lib-dcrypt  -I../../../src/lib-fs  -I../../../src/doveadm  -I../../../src/plugins/acl -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -I../../../src/lib  -I../../../src/lib-test  -I../../../src/lib-settings  -I../../../src/lib-master  -I../../../src/lib-mail  -I../../../src/lib-dict  -I../../../src/lib-index  -I../../../src/lib-storage/index  -I../../../src/lib-storage  -I../../../src/lib-dcrypt  -I../../../src/lib-fs  -I../../../src/doveadm  -I../../../src/plugins/acl  -Dtop_builddir=\"../../..\" -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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_key-mail-crypt-key.o -MD -MP -MF .deps/test_mail_key-mail-crypt-key.Tpo -c -o test_mail_key-mail-crypt-key.o `test -f 'mail-crypt-key.c' || echo './'`mail-crypt-key.c
--- test_mail_global_key-mail-crypt-global-key.o ---
mv -f .deps/test_mail_global_key-mail-crypt-global-key.Tpo .deps/test_mail_global_key-mail-crypt-global-key.Po
--- test_mail_key-mail-crypt-userenv.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-mail  -I../../../src/lib-dict  -I../../../src/lib-index  -I../../../src/lib-storage/index  -I../../../src/lib-storage  -I../../../src/lib-dcrypt  -I../../../src/lib-fs  -I../../../src/doveadm  -I../../../src/plugins/acl -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -I../../../src/lib  -I../../../src/lib-test  -I../../../src/lib-settings  -I../../../src/lib-master  -I../../../src/lib-mail  -I../../../src/lib-dict  -I../../../src/lib-index  -I../../../src/lib-storage/index  -I../../../src/lib-storage  -I../../../src/lib-dcrypt  -I../../../src/lib-fs  -I../../../src/doveadm  -I../../../src/plugins/acl  -Dtop_builddir=\"../../..\" -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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_key-mail-crypt-userenv.o -MD -MP -MF .deps/test_mail_key-mail-crypt-userenv.Tpo -c -o test_mail_key-mail-crypt-userenv.o `test -f 'mail-crypt-userenv.c' || echo './'`mail-crypt-userenv.c
mv -f .deps/test_mail_key-mail-crypt-userenv.Tpo .deps/test_mail_key-mail-crypt-userenv.Po
--- doveadm-mail-crypt.lo ---
--- test_mail_key-test-mail-key.o ---
mv -f .deps/test_mail_key-test-mail-key.Tpo .deps/test_mail_key-test-mail-key.Po
--- doveadm-mail-crypt.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-mail  -I../../../src/lib-dict  -I../../../src/lib-index  -I../../../src/lib-storage/index  -I../../../src/lib-storage  -I../../../src/lib-dcrypt  -I../../../src/lib-fs  -I../../../src/doveadm  -I../../../src/plugins/acl -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-mail-crypt.lo -MD -MP -MF .deps/doveadm-mail-crypt.Tpo -c -o doveadm-mail-crypt.lo doveadm-mail-crypt.c
--- mail-crypt-plugin.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-mail  -I../../../src/lib-dict  -I../../../src/lib-index  -I../../../src/lib-storage/index  -I../../../src/lib-storage  -I../../../src/lib-dcrypt  -I../../../src/lib-fs  -I../../../src/doveadm  -I../../../src/plugins/acl -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-crypt-plugin.lo -MD -MP -MF .deps/mail-crypt-plugin.Tpo -c -o mail-crypt-plugin.lo mail-crypt-plugin.c
--- doveadm-mail-crypt.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-mail -I../../../src/lib-dict -I../../../src/lib-index -I../../../src/lib-storage/index -I../../../src/lib-storage -I../../../src/lib-dcrypt -I../../../src/lib-fs -I../../../src/doveadm -I../../../src/plugins/acl -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-mail-crypt.lo -MD -MP -MF .deps/doveadm-mail-crypt.Tpo -c doveadm-mail-crypt.c  -fPIC -DPIC -o .libs/doveadm-mail-crypt.o
--- mail-crypt-plugin.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-mail -I../../../src/lib-dict -I../../../src/lib-index -I../../../src/lib-storage/index -I../../../src/lib-storage -I../../../src/lib-dcrypt -I../../../src/lib-fs -I../../../src/doveadm -I../../../src/plugins/acl -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-crypt-plugin.lo -MD -MP -MF .deps/mail-crypt-plugin.Tpo -c mail-crypt-plugin.c  -fPIC -DPIC -o .libs/mail-crypt-plugin.o
--- mail-crypt-key.lo ---
mv -f .deps/mail-crypt-key.Tpo .deps/mail-crypt-key.Plo
--- mail-crypt-acl-plugin.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-mail  -I../../../src/lib-dict  -I../../../src/lib-index  -I../../../src/lib-storage/index  -I../../../src/lib-storage  -I../../../src/lib-dcrypt  -I../../../src/lib-fs  -I../../../src/doveadm  -I../../../src/plugins/acl -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-crypt-acl-plugin.lo -MD -MP -MF .deps/mail-crypt-acl-plugin.Tpo -c -o mail-crypt-acl-plugin.lo mail-crypt-acl-plugin.c
--- test_mail_key-mail-crypt-key.o ---
mv -f .deps/test_mail_key-mail-crypt-key.Tpo .deps/test_mail_key-mail-crypt-key.Po
--- mail-crypt-acl-plugin.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-mail -I../../../src/lib-dict -I../../../src/lib-index -I../../../src/lib-storage/index -I../../../src/lib-storage -I../../../src/lib-dcrypt -I../../../src/lib-fs -I../../../src/doveadm -I../../../src/plugins/acl -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-crypt-acl-plugin.lo -MD -MP -MF .deps/mail-crypt-acl-plugin.Tpo -c mail-crypt-acl-plugin.c  -fPIC -DPIC -o .libs/mail-crypt-acl-plugin.o
--- fs-crypt.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-mail  -I../../../src/lib-dict  -I../../../src/lib-index  -I../../../src/lib-storage/index  -I../../../src/lib-storage  -I../../../src/lib-dcrypt  -I../../../src/lib-fs  -I../../../src/doveadm  -I../../../src/plugins/acl -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-crypt.lo -MD -MP -MF .deps/fs-crypt.Tpo -c -o fs-crypt.lo fs-crypt.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-mail -I../../../src/lib-dict -I../../../src/lib-index -I../../../src/lib-storage/index -I../../../src/lib-storage -I../../../src/lib-dcrypt -I../../../src/lib-fs -I../../../src/doveadm -I../../../src/plugins/acl -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-crypt.lo -MD -MP -MF .deps/fs-crypt.Tpo -c fs-crypt.c  -fPIC -DPIC -o .libs/fs-crypt.o
--- mail-crypt-plugin.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-mail -I../../../src/lib-dict -I../../../src/lib-index -I../../../src/lib-storage/index -I../../../src/lib-storage -I../../../src/lib-dcrypt -I../../../src/lib-fs -I../../../src/doveadm -I../../../src/plugins/acl -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-crypt-plugin.lo -MD -MP -MF .deps/mail-crypt-plugin.Tpo -c mail-crypt-plugin.c -o mail-crypt-plugin.o >/dev/null 2>&1
--- doveadm-mail-crypt.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-mail -I../../../src/lib-dict -I../../../src/lib-index -I../../../src/lib-storage/index -I../../../src/lib-storage -I../../../src/lib-dcrypt -I../../../src/lib-fs -I../../../src/doveadm -I../../../src/plugins/acl -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT doveadm-mail-crypt.lo -MD -MP -MF .deps/doveadm-mail-crypt.Tpo -c doveadm-mail-crypt.c -o doveadm-mail-crypt.o >/dev/null 2>&1
--- fs-crypt.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-mail -I../../../src/lib-dict -I../../../src/lib-index -I../../../src/lib-storage/index -I../../../src/lib-storage -I../../../src/lib-dcrypt -I../../../src/lib-fs -I../../../src/doveadm -I../../../src/plugins/acl -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-crypt.lo -MD -MP -MF .deps/fs-crypt.Tpo -c fs-crypt.c -o fs-crypt.o >/dev/null 2>&1
--- mail-crypt-acl-plugin.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-mail -I../../../src/lib-dict -I../../../src/lib-index -I../../../src/lib-storage/index -I../../../src/lib-storage -I../../../src/lib-dcrypt -I../../../src/lib-fs -I../../../src/doveadm -I../../../src/plugins/acl -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-crypt-acl-plugin.lo -MD -MP -MF .deps/mail-crypt-acl-plugin.Tpo -c mail-crypt-acl-plugin.c -o mail-crypt-acl-plugin.o >/dev/null 2>&1
--- mail-crypt-plugin.lo ---
mv -f .deps/mail-crypt-plugin.Tpo .deps/mail-crypt-plugin.Plo
--- mail-crypt-pluginenv.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-mail  -I../../../src/lib-dict  -I../../../src/lib-index  -I../../../src/lib-storage/index  -I../../../src/lib-storage  -I../../../src/lib-dcrypt  -I../../../src/lib-fs  -I../../../src/doveadm  -I../../../src/plugins/acl -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-crypt-pluginenv.lo -MD -MP -MF .deps/mail-crypt-pluginenv.Tpo -c -o mail-crypt-pluginenv.lo mail-crypt-pluginenv.c
--- fs-crypt.lo ---
mv -f .deps/fs-crypt.Tpo .deps/fs-crypt.Plo
--- fs-mail-crypt.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-mail  -I../../../src/lib-dict  -I../../../src/lib-index  -I../../../src/lib-storage/index  -I../../../src/lib-storage  -I../../../src/lib-dcrypt  -I../../../src/lib-fs  -I../../../src/doveadm  -I../../../src/plugins/acl -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-mail-crypt.lo -MD -MP -MF .deps/fs-mail-crypt.Tpo -c -o fs-mail-crypt.lo fs-mail-crypt.c
--- mail-crypt-pluginenv.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-mail -I../../../src/lib-dict -I../../../src/lib-index -I../../../src/lib-storage/index -I../../../src/lib-storage -I../../../src/lib-dcrypt -I../../../src/lib-fs -I../../../src/doveadm -I../../../src/plugins/acl -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-crypt-pluginenv.lo -MD -MP -MF .deps/mail-crypt-pluginenv.Tpo -c mail-crypt-pluginenv.c  -fPIC -DPIC -o .libs/mail-crypt-pluginenv.o
--- mail-crypt-acl-plugin.lo ---
mv -f .deps/mail-crypt-acl-plugin.Tpo .deps/mail-crypt-acl-plugin.Plo
--- fs-mail-crypt.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-mail -I../../../src/lib-dict -I../../../src/lib-index -I../../../src/lib-storage/index -I../../../src/lib-storage -I../../../src/lib-dcrypt -I../../../src/lib-fs -I../../../src/doveadm -I../../../src/plugins/acl -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-mail-crypt.lo -MD -MP -MF .deps/fs-mail-crypt.Tpo -c fs-mail-crypt.c  -fPIC -DPIC -o .libs/fs-mail-crypt.o
--- test-mail-global-key ---
/bin/sh ../../../libtool  --tag=CC    --mode=link cc  -I../../../src/lib  -I../../../src/lib-test  -I../../../src/lib-settings  -I../../../src/lib-master  -I../../../src/lib-mail  -I../../../src/lib-dict  -I../../../src/lib-index  -I../../../src/lib-storage/index  -I../../../src/lib-storage  -I../../../src/lib-dcrypt  -I../../../src/lib-fs  -I../../../src/doveadm  -I../../../src/plugins/acl  -Dtop_builddir=\"../../..\" -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -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-mail-global-key test_mail_global_key-test-mail-global-key.o  test_mail_global_key-fs-crypt-settings.o  test_mail_global_key-mail-crypt-global-key.o ../../../src/lib-dovecot/libdovecot.la -export-dynamic 
--- doveadm-mail-crypt.lo ---
mv -f .deps/doveadm-mail-crypt.Tpo .deps/doveadm-mail-crypt.Plo
--- test-mail-key ---
/bin/sh ../../../libtool  --tag=CC    --mode=link cc -I../../../src/lib  -I../../../src/lib-test  -I../../../src/lib-settings  -I../../../src/lib-master  -I../../../src/lib-mail  -I../../../src/lib-dict  -I../../../src/lib-index  -I../../../src/lib-storage/index  -I../../../src/lib-storage  -I../../../src/lib-dcrypt  -I../../../src/lib-fs  -I../../../src/doveadm  -I../../../src/plugins/acl  -Dtop_builddir=\"../../..\"  -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -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-mail-key test_mail_key-test-mail-key.o  test_mail_key-mail-crypt-key.o  test_mail_key-mail-crypt-global-key.o  test_mail_key-mail-crypt-userenv.o ../../../src/lib-storage/libdovecot-storage.la ../../../src/lib-imap-storage/libimap-storage.la ../../../src/lib-dovecot/libdovecot.la -export-dynamic 
--- test-mail-global-key ---
libtool: link: cc -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-settings -I../../../src/lib-master -I../../../src/lib-mail -I../../../src/lib-dict -I../../../src/lib-index -I../../../src/lib-storage/index -I../../../src/lib-storage -I../../../src/lib-dcrypt -I../../../src/lib-fs -I../../../src/doveadm -I../../../src/plugins/acl -Dtop_builddir=\"../../..\" -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -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-mail-global-key test_mail_global_key-test-mail-global-key.o test_mail_global_key-fs-crypt-settings.o test_mail_global_key-mail-crypt-global-key.o -Wl,--export-dynamic  -L/usr/local/lib ../../../src/lib-dovecot/.libs/libdovecot.so -Wl,-rpath -Wl,/usr/local/lib/dovecot
--- mail-crypt-pluginenv.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-mail -I../../../src/lib-dict -I../../../src/lib-index -I../../../src/lib-storage/index -I../../../src/lib-storage -I../../../src/lib-dcrypt -I../../../src/lib-fs -I../../../src/doveadm -I../../../src/plugins/acl -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-crypt-pluginenv.lo -MD -MP -MF .deps/mail-crypt-pluginenv.Tpo -c mail-crypt-pluginenv.c -o mail-crypt-pluginenv.o >/dev/null 2>&1
--- lib10_mail_crypt_plugin.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 -mfunction-return=keep -Wall -W -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 lib10_mail_crypt_plugin.la -rpath /usr/local/lib/dovecot mail-crypt-global-key.lo  mail-crypt-userenv.lo mail-crypt-key.lo mail-crypt-plugin.lo   ../../../src/lib-dovecot/libdovecot.la -export-dynamic 
--- fs-mail-crypt.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-mail -I../../../src/lib-dict -I../../../src/lib-index -I../../../src/lib-storage/index -I../../../src/lib-storage -I../../../src/lib-dcrypt -I../../../src/lib-fs -I../../../src/doveadm -I../../../src/plugins/acl -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-mail-crypt.lo -MD -MP -MF .deps/fs-mail-crypt.Tpo -c fs-mail-crypt.c -o fs-mail-crypt.o >/dev/null 2>&1
--- lib10_mail_crypt_plugin.la ---
libtool: link: cc -shared  -fPIC -DPIC  .libs/mail-crypt-global-key.o .libs/mail-crypt-userenv.o .libs/mail-crypt-key.o .libs/mail-crypt-plugin.o   -Wl,-rpath -Wl,/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-dovecot/.libs -Wl,-rpath -Wl,/usr/local/lib/dovecot -L/usr/local/lib ../../../src/lib-dovecot/.libs/libdovecot.so  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,lib10_mail_crypt_plugin.so -o .libs/lib10_mail_crypt_plugin.so
--- test-mail-key ---
libtool: link: cc -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-settings -I../../../src/lib-master -I../../../src/lib-mail -I../../../src/lib-dict -I../../../src/lib-index -I../../../src/lib-storage/index -I../../../src/lib-storage -I../../../src/lib-dcrypt -I../../../src/lib-fs -I../../../src/doveadm -I../../../src/plugins/acl -Dtop_builddir=\"../../..\" -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -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-mail-key test_mail_key-test-mail-key.o test_mail_key-mail-crypt-key.o test_mail_key-mail-crypt-global-key.o test_mail_key-mail-crypt-userenv.o -Wl,--export-dynamic  -L/usr/local/lib ../../../src/lib-storage/.libs/libdovecot-storage.so ../../../src/lib-imap-storage/.libs/libimap-storage.a ../../../src/lib-dovecot/.libs/libdovecot.so -Wl,-rpath -Wl,/usr/local/lib/dovecot
--- mail-crypt-pluginenv.lo ---
mv -f .deps/mail-crypt-pluginenv.Tpo .deps/mail-crypt-pluginenv.Plo
--- libdoveadm_mail_crypt_plugin.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 -mfunction-return=keep -Wall -W -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 libdoveadm_mail_crypt_plugin.la -rpath /usr/local/lib/dovecot/doveadm doveadm-mail-crypt.lo ../../../src/lib-dovecot/libdovecot.la -export-dynamic 
--- lib10_mail_crypt_plugin.la ---
libtool: link: ar cr .libs/lib10_mail_crypt_plugin.a  mail-crypt-global-key.o mail-crypt-userenv.o mail-crypt-key.o mail-crypt-plugin.o
libtool: link: ranlib .libs/lib10_mail_crypt_plugin.a
--- libfs_crypt.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 -mfunction-return=keep -Wall -W -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  libfs_crypt.la -rpath /usr/local/lib/dovecot fs-crypt.lo mail-crypt-global-key.lo  mail-crypt-pluginenv.lo fs-crypt-settings.lo ../../../src/lib-dovecot/libdovecot.la -export-dynamic 
--- lib10_mail_crypt_plugin.la ---
libtool: link: ( cd ".libs" && rm -f "lib10_mail_crypt_plugin.la" && ln -s "../lib10_mail_crypt_plugin.la" "lib10_mail_crypt_plugin.la" )
--- lib05_mail_crypt_acl_plugin.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 -mfunction-return=keep -Wall -W -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 lib05_mail_crypt_acl_plugin.la -rpath /usr/local/lib/dovecot mail-crypt-acl-plugin.lo   lib10_mail_crypt_plugin.la 
--- libdoveadm_mail_crypt_plugin.la ---
libtool: link: cc -shared  -fPIC -DPIC  .libs/doveadm-mail-crypt.o   -Wl,-rpath -Wl,/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-dovecot/.libs -Wl,-rpath -Wl,/usr/local/lib/dovecot -L/usr/local/lib ../../../src/lib-dovecot/.libs/libdovecot.so  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,libdoveadm_mail_crypt_plugin.so -o .libs/libdoveadm_mail_crypt_plugin.so
--- fs-mail-crypt.lo ---
mv -f .deps/fs-mail-crypt.Tpo .deps/fs-mail-crypt.Plo
--- libfs_mail_crypt.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 -mfunction-return=keep -Wall -W -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 libfs_mail_crypt.la -rpath /usr/local/lib/dovecot fs-mail-crypt.lo  mail-crypt-global-key.lo mail-crypt-userenv.lo ../../../src/lib-dovecot/libdovecot.la -export-dynamic 
--- lib05_mail_crypt_acl_plugin.la ---
*** Warning: Linking the shared library lib05_mail_crypt_acl_plugin.la against the loadable module
*** lib10_mail_crypt_plugin.so is not portable!
--- libdoveadm_mail_crypt_plugin.la ---
libtool: link: ar cr .libs/libdoveadm_mail_crypt_plugin.a  doveadm-mail-crypt.o
--- libfs_crypt.la ---
libtool: link: cc -shared  -fPIC -DPIC  .libs/fs-crypt.o .libs/mail-crypt-global-key.o .libs/mail-crypt-pluginenv.o .libs/fs-crypt-settings.o   -Wl,-rpath -Wl,/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-dovecot/.libs -Wl,-rpath -Wl,/usr/local/lib/dovecot -L/usr/local/lib ../../../src/lib-dovecot/.libs/libdovecot.so  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,libfs_crypt.so -o .libs/libfs_crypt.so
--- libdoveadm_mail_crypt_plugin.la ---
libtool: link: ranlib .libs/libdoveadm_mail_crypt_plugin.a
--- lib05_mail_crypt_acl_plugin.la ---
libtool: link: cc -shared  -fPIC -DPIC  .libs/mail-crypt-acl-plugin.o   -Wl,-rpath -Wl,/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/plugins/mail-crypt/.libs -Wl,-rpath -Wl,/usr/local/lib/dovecot -L/usr/local/lib ./.libs/lib10_mail_crypt_plugin.so  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,lib05_mail_crypt_acl_plugin.so -o .libs/lib05_mail_crypt_acl_plugin.so
--- libdoveadm_mail_crypt_plugin.la ---
libtool: link: ( cd ".libs" && rm -f "libdoveadm_mail_crypt_plugin.la" && ln -s "../libdoveadm_mail_crypt_plugin.la" "libdoveadm_mail_crypt_plugin.la" )
--- lib05_mail_crypt_acl_plugin.la ---
libtool: link: ar cr .libs/lib05_mail_crypt_acl_plugin.a  mail-crypt-acl-plugin.o
--- libfs_crypt.la ---
libtool: link: ar cr .libs/libfs_crypt.a  fs-crypt.o mail-crypt-global-key.o mail-crypt-pluginenv.o fs-crypt-settings.o
--- lib05_mail_crypt_acl_plugin.la ---
libtool: link: ranlib .libs/lib05_mail_crypt_acl_plugin.a
--- libfs_crypt.la ---
libtool: link: ranlib .libs/libfs_crypt.a
--- libfs_mail_crypt.la ---
libtool: link: cc -shared  -fPIC -DPIC  .libs/fs-mail-crypt.o .libs/mail-crypt-global-key.o .libs/mail-crypt-userenv.o   -Wl,-rpath -Wl,/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-dovecot/.libs -Wl,-rpath -Wl,/usr/local/lib/dovecot -L/usr/local/lib ../../../src/lib-dovecot/.libs/libdovecot.so  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,libfs_mail_crypt.so -o .libs/libfs_mail_crypt.so
--- libfs_crypt.la ---
libtool: link: ( cd ".libs" && rm -f "libfs_crypt.la" && ln -s "../libfs_crypt.la" "libfs_crypt.la" )
--- lib05_mail_crypt_acl_plugin.la ---
libtool: link: ( cd ".libs" && rm -f "lib05_mail_crypt_acl_plugin.la" && ln -s "../lib05_mail_crypt_acl_plugin.la" "lib05_mail_crypt_acl_plugin.la" )
--- libfs_mail_crypt.la ---
libtool: link: ar cr .libs/libfs_mail_crypt.a  fs-mail-crypt.o mail-crypt-global-key.o mail-crypt-userenv.o
libtool: link: ranlib .libs/libfs_mail_crypt.a
libtool: link: ( cd ".libs" && rm -f "libfs_mail_crypt.la" && ln -s "../libfs_mail_crypt.la" "libfs_mail_crypt.la" )
Making all in trash
--- trash-plugin.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-mail  -I../../../src/lib-index  -I../../../src/lib-storage  -I../../../src/plugins/quota -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT trash-plugin.lo -MD -MP -MF .deps/trash-plugin.Tpo -c -o trash-plugin.lo trash-plugin.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-mail -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/plugins/quota -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT trash-plugin.lo -MD -MP -MF .deps/trash-plugin.Tpo -c trash-plugin.c  -fPIC -DPIC -o .libs/trash-plugin.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-mail -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/plugins/quota -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT trash-plugin.lo -MD -MP -MF .deps/trash-plugin.Tpo -c trash-plugin.c -o trash-plugin.o >/dev/null 2>&1
mv -f .deps/trash-plugin.Tpo .deps/trash-plugin.Plo
--- lib11_trash_plugin.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 -mfunction-return=keep -Wall -W -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 lib11_trash_plugin.la -rpath /usr/local/lib/dovecot trash-plugin.lo ../quota/lib10_quota_plugin.la 
*** Warning: Linking the shared library lib11_trash_plugin.la against the loadable module
*** lib10_quota_plugin.so is not portable!
libtool: link: cc -shared  -fPIC -DPIC  .libs/trash-plugin.o   -Wl,-rpath -Wl,/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/plugins/quota/.libs -Wl,-rpath -Wl,/usr/local/lib/dovecot -L/usr/local/lib ../quota/.libs/lib10_quota_plugin.so  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,lib11_trash_plugin.so -o .libs/lib11_trash_plugin.so
libtool: link: ar cr .libs/lib11_trash_plugin.a  trash-plugin.o
libtool: link: ranlib .libs/lib11_trash_plugin.a
libtool: link: ( cd ".libs" && rm -f "lib11_trash_plugin.la" && ln -s "../lib11_trash_plugin.la" "lib11_trash_plugin.la" )
Making all in virtual
--- virtual-config.lo ---
--- virtual-mail.lo ---
--- virtual-plugin.lo ---
--- virtual-search.lo ---
--- virtual-config.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage  -I../../../src/lib-storage/index  -I../../../src/lib-imap-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT virtual-config.lo -MD -MP -MF .deps/virtual-config.Tpo -c -o virtual-config.lo virtual-config.c
--- virtual-mail.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage  -I../../../src/lib-storage/index  -I../../../src/lib-imap-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT virtual-mail.lo -MD -MP -MF .deps/virtual-mail.Tpo -c -o virtual-mail.lo virtual-mail.c
--- virtual-plugin.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage  -I../../../src/lib-storage/index  -I../../../src/lib-imap-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT virtual-plugin.lo -MD -MP -MF .deps/virtual-plugin.Tpo -c -o virtual-plugin.lo virtual-plugin.c
--- virtual-search.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage  -I../../../src/lib-storage/index  -I../../../src/lib-imap-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT virtual-search.lo -MD -MP -MF .deps/virtual-search.Tpo -c -o virtual-search.lo virtual-search.c
--- virtual-mail.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/lib-imap-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT virtual-mail.lo -MD -MP -MF .deps/virtual-mail.Tpo -c virtual-mail.c  -fPIC -DPIC -o .libs/virtual-mail.o
--- virtual-config.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/lib-imap-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT virtual-config.lo -MD -MP -MF .deps/virtual-config.Tpo -c virtual-config.c  -fPIC -DPIC -o .libs/virtual-config.o
--- virtual-search.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/lib-imap-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT virtual-search.lo -MD -MP -MF .deps/virtual-search.Tpo -c virtual-search.c  -fPIC -DPIC -o .libs/virtual-search.o
--- virtual-plugin.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/lib-imap-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT virtual-plugin.lo -MD -MP -MF .deps/virtual-plugin.Tpo -c virtual-plugin.c  -fPIC -DPIC -o .libs/virtual-plugin.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/lib-imap-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT virtual-plugin.lo -MD -MP -MF .deps/virtual-plugin.Tpo -c virtual-plugin.c -o virtual-plugin.o >/dev/null 2>&1
--- virtual-search.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/lib-imap-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT virtual-search.lo -MD -MP -MF .deps/virtual-search.Tpo -c virtual-search.c -o virtual-search.o >/dev/null 2>&1
--- virtual-plugin.lo ---
mv -f .deps/virtual-plugin.Tpo .deps/virtual-plugin.Plo
--- virtual-storage.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage  -I../../../src/lib-storage/index  -I../../../src/lib-imap-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT virtual-storage.lo -MD -MP -MF .deps/virtual-storage.Tpo -c -o virtual-storage.lo virtual-storage.c
--- virtual-mail.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/lib-imap-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT virtual-mail.lo -MD -MP -MF .deps/virtual-mail.Tpo -c virtual-mail.c -o virtual-mail.o >/dev/null 2>&1
--- virtual-storage.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/lib-imap-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT virtual-storage.lo -MD -MP -MF .deps/virtual-storage.Tpo -c virtual-storage.c  -fPIC -DPIC -o .libs/virtual-storage.o
--- virtual-config.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/lib-imap-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT virtual-config.lo -MD -MP -MF .deps/virtual-config.Tpo -c virtual-config.c -o virtual-config.o >/dev/null 2>&1
--- virtual-search.lo ---
mv -f .deps/virtual-search.Tpo .deps/virtual-search.Plo
--- virtual-save.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage  -I../../../src/lib-storage/index  -I../../../src/lib-imap-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT virtual-save.lo -MD -MP -MF .deps/virtual-save.Tpo -c -o virtual-save.lo virtual-save.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/lib-imap-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT virtual-save.lo -MD -MP -MF .deps/virtual-save.Tpo -c virtual-save.c  -fPIC -DPIC -o .libs/virtual-save.o
--- virtual-mail.lo ---
mv -f .deps/virtual-mail.Tpo .deps/virtual-mail.Plo
--- virtual-sync.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage  -I../../../src/lib-storage/index  -I../../../src/lib-imap-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT virtual-sync.lo -MD -MP -MF .deps/virtual-sync.Tpo -c -o virtual-sync.lo virtual-sync.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/lib-imap-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT virtual-sync.lo -MD -MP -MF .deps/virtual-sync.Tpo -c virtual-sync.c  -fPIC -DPIC -o .libs/virtual-sync.o
--- virtual-save.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/lib-imap-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT virtual-save.lo -MD -MP -MF .deps/virtual-save.Tpo -c virtual-save.c -o virtual-save.o >/dev/null 2>&1
--- virtual-storage.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/lib-imap-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT virtual-storage.lo -MD -MP -MF .deps/virtual-storage.Tpo -c virtual-storage.c -o virtual-storage.o >/dev/null 2>&1
--- virtual-save.lo ---
mv -f .deps/virtual-save.Tpo .deps/virtual-save.Plo
--- virtual-transaction.lo ---
--- virtual-config.lo ---
mv -f .deps/virtual-config.Tpo .deps/virtual-config.Plo
--- virtual-transaction.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage  -I../../../src/lib-storage/index  -I../../../src/lib-imap-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT virtual-transaction.lo -MD -MP -MF .deps/virtual-transaction.Tpo -c -o virtual-transaction.lo virtual-transaction.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/lib-imap-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT virtual-transaction.lo -MD -MP -MF .deps/virtual-transaction.Tpo -c virtual-transaction.c  -fPIC -DPIC -o .libs/virtual-transaction.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/lib-imap-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT virtual-transaction.lo -MD -MP -MF .deps/virtual-transaction.Tpo -c virtual-transaction.c -o virtual-transaction.o >/dev/null 2>&1
mv -f .deps/virtual-transaction.Tpo .deps/virtual-transaction.Plo
--- virtual-storage.lo ---
mv -f .deps/virtual-storage.Tpo .deps/virtual-storage.Plo
--- virtual-sync.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/lib-imap-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT virtual-sync.lo -MD -MP -MF .deps/virtual-sync.Tpo -c virtual-sync.c -o virtual-sync.o >/dev/null 2>&1
mv -f .deps/virtual-sync.Tpo .deps/virtual-sync.Plo
--- lib20_virtual_plugin.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 -mfunction-return=keep -Wall -W -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 lib20_virtual_plugin.la -rpath /usr/local/lib/dovecot virtual-config.lo virtual-mail.lo  virtual-plugin.lo virtual-search.lo virtual-storage.lo  virtual-save.lo virtual-sync.lo virtual-transaction.lo  
libtool: link: cc -shared  -fPIC -DPIC  .libs/virtual-config.o .libs/virtual-mail.o .libs/virtual-plugin.o .libs/virtual-search.o .libs/virtual-storage.o .libs/virtual-save.o .libs/virtual-sync.o .libs/virtual-transaction.o   -L/usr/local/lib  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,lib20_virtual_plugin.so -o .libs/lib20_virtual_plugin.so
libtool: link: ar cr .libs/lib20_virtual_plugin.a  virtual-config.o virtual-mail.o virtual-plugin.o virtual-search.o virtual-storage.o virtual-save.o virtual-sync.o virtual-transaction.o
libtool: link: ranlib .libs/lib20_virtual_plugin.a
libtool: link: ( cd ".libs" && rm -f "lib20_virtual_plugin.la" && ln -s "../lib20_virtual_plugin.la" "lib20_virtual_plugin.la" )
Making all in welcome
--- welcome-plugin.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-mail  -I../../../src/lib-index  -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT welcome-plugin.lo -MD -MP -MF .deps/welcome-plugin.Tpo -c -o welcome-plugin.lo welcome-plugin.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-mail -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT welcome-plugin.lo -MD -MP -MF .deps/welcome-plugin.Tpo -c welcome-plugin.c  -fPIC -DPIC -o .libs/welcome-plugin.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-mail -I../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT welcome-plugin.lo -MD -MP -MF .deps/welcome-plugin.Tpo -c welcome-plugin.c -o welcome-plugin.o >/dev/null 2>&1
mv -f .deps/welcome-plugin.Tpo .deps/welcome-plugin.Plo
--- lib99_welcome_plugin.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 -mfunction-return=keep -Wall -W -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 lib99_welcome_plugin.la -rpath /usr/local/lib/dovecot welcome-plugin.lo  
libtool: link: cc -shared  -fPIC -DPIC  .libs/welcome-plugin.o   -L/usr/local/lib  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,lib99_welcome_plugin.so -o .libs/lib99_welcome_plugin.so
libtool: link: ar cr .libs/lib99_welcome_plugin.a  welcome-plugin.o
libtool: link: ranlib .libs/lib99_welcome_plugin.a
libtool: link: ( cd ".libs" && rm -f "lib99_welcome_plugin.la" && ln -s "../lib99_welcome_plugin.la" "lib99_welcome_plugin.la" )
Making all in zlib
--- zlib-plugin.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-master  -I../../../src/lib-mail  -I../../../src/lib-compression  -I../../../src/lib-index  -I../../../src/lib-storage  -I../../../src/lib-storage/index  -I../../../src/lib-storage/index/dbox-common -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT zlib-plugin.lo -MD -MP -MF .deps/zlib-plugin.Tpo -c -o zlib-plugin.lo zlib-plugin.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-master -I../../../src/lib-mail -I../../../src/lib-compression -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/lib-storage/index/dbox-common -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT zlib-plugin.lo -MD -MP -MF .deps/zlib-plugin.Tpo -c zlib-plugin.c  -fPIC -DPIC -o .libs/zlib-plugin.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-master -I../../../src/lib-mail -I../../../src/lib-compression -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/lib-storage/index -I../../../src/lib-storage/index/dbox-common -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT zlib-plugin.lo -MD -MP -MF .deps/zlib-plugin.Tpo -c zlib-plugin.c -o zlib-plugin.o >/dev/null 2>&1
mv -f .deps/zlib-plugin.Tpo .deps/zlib-plugin.Plo
--- lib20_zlib_plugin.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 -mfunction-return=keep -Wall -W -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 lib20_zlib_plugin.la -rpath /usr/local/lib/dovecot zlib-plugin.lo ../../lib-compression/libcompression.la 
libtool: link: cc -shared  -fPIC -DPIC  .libs/zlib-plugin.o  -Wl,--whole-archive ../../lib-compression/.libs/libcompression.a -Wl,--no-whole-archive  -L/usr/local/lib -lz -lbz2 -llzma -lzstd  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,lib20_zlib_plugin.so -o .libs/lib20_zlib_plugin.so
libtool: link: (cd .libs/lib20_zlib_plugin.lax/libcompression.a && ar x "/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/plugins/zlib/../../lib-compression/.libs/libcompression.a")
libtool: link: ar cr .libs/lib20_zlib_plugin.a  zlib-plugin.o  .libs/lib20_zlib_plugin.lax/libcompression.a/compression.o .libs/lib20_zlib_plugin.lax/libcompression.a/istream-bzlib.o .libs/lib20_zlib_plugin.lax/libcompression.a/istream-decompress.o .libs/lib20_zlib_plugin.lax/libcompression.a/istream-lz4.o .libs/lib20_zlib_plugin.lax/libcompression.a/istream-lzma.o .libs/lib20_zlib_plugin.lax/libcompression.a/istream-zlib.o .libs/lib20_zlib_plugin.lax/libcompression.a/istream-zstd.o .libs/lib20_zlib_plugin.lax/libcompression.a/ostream-bzlib.o .libs/lib20_zlib_plugin.lax/libcompression.a/ostream-lz4.o .libs/lib20_zlib_plugin.lax/libcompression.a/ostream-zlib.o .libs/lib20_zlib_plugin.lax/libcompression.a/ostream-zstd.o 
libtool: link: ranlib .libs/lib20_zlib_plugin.a
libtool: link: rm -fr .libs/lib20_zlib_plugin.lax
libtool: link: ( cd ".libs" && rm -f "lib20_zlib_plugin.la" && ln -s "../lib20_zlib_plugin.la" "lib20_zlib_plugin.la" )
Making all in imap-zlib
--- imap-zlib-plugin.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-compression  -I../../../src/lib-mail  -I../../../src/lib-imap  -I../../../src/lib-index  -I../../../src/lib-storage  -I../../../src/imap -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-zlib-plugin.lo -MD -MP -MF .deps/imap-zlib-plugin.Tpo -c -o imap-zlib-plugin.lo imap-zlib-plugin.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-compression -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/imap -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-zlib-plugin.lo -MD -MP -MF .deps/imap-zlib-plugin.Tpo -c imap-zlib-plugin.c  -fPIC -DPIC -o .libs/imap-zlib-plugin.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-compression -I../../../src/lib-mail -I../../../src/lib-imap -I../../../src/lib-index -I../../../src/lib-storage -I../../../src/imap -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT imap-zlib-plugin.lo -MD -MP -MF .deps/imap-zlib-plugin.Tpo -c imap-zlib-plugin.c -o imap-zlib-plugin.o >/dev/null 2>&1
mv -f .deps/imap-zlib-plugin.Tpo .deps/imap-zlib-plugin.Plo
--- lib30_imap_zlib_plugin.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 -mfunction-return=keep -Wall -W -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 lib30_imap_zlib_plugin.la -rpath /usr/local/lib/dovecot imap-zlib-plugin.lo ../../lib-compression/libcompression.la 
libtool: link: cc -shared  -fPIC -DPIC  .libs/imap-zlib-plugin.o  -Wl,--whole-archive ../../lib-compression/.libs/libcompression.a -Wl,--no-whole-archive  -L/usr/local/lib -lz -lbz2 -llzma -lzstd  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,lib30_imap_zlib_plugin.so -o .libs/lib30_imap_zlib_plugin.so
libtool: link: (cd .libs/lib30_imap_zlib_plugin.lax/libcompression.a && ar x "/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/plugins/imap-zlib/../../lib-compression/.libs/libcompression.a")
libtool: link: ar cr .libs/lib30_imap_zlib_plugin.a  imap-zlib-plugin.o  .libs/lib30_imap_zlib_plugin.lax/libcompression.a/compression.o .libs/lib30_imap_zlib_plugin.lax/libcompression.a/istream-bzlib.o .libs/lib30_imap_zlib_plugin.lax/libcompression.a/istream-decompress.o .libs/lib30_imap_zlib_plugin.lax/libcompression.a/istream-lz4.o .libs/lib30_imap_zlib_plugin.lax/libcompression.a/istream-lzma.o .libs/lib30_imap_zlib_plugin.lax/libcompression.a/istream-zlib.o .libs/lib30_imap_zlib_plugin.lax/libcompression.a/istream-zstd.o .libs/lib30_imap_zlib_plugin.lax/libcompression.a/ostream-bzlib.o .libs/lib30_imap_zlib_plugin.lax/libcompression.a/ostream-lz4.o .libs/lib30_imap_zlib_plugin.lax/libcompression.a/ostream-zlib.o .libs/lib30_imap_zlib_plugin.lax/libcompression.a/ostream-zstd.o 
libtool: link: ranlib .libs/lib30_imap_zlib_plugin.a
libtool: link: rm -fr .libs/lib30_imap_zlib_plugin.lax
libtool: link: ( cd ".libs" && rm -f "lib30_imap_zlib_plugin.la" && ln -s "../lib30_imap_zlib_plugin.la" "lib30_imap_zlib_plugin.la" )
Making all in fs-compress
--- fs-compress.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-compression  -I../../../src/lib-fs -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-compress.lo -MD -MP -MF .deps/fs-compress.Tpo -c -o fs-compress.lo fs-compress.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-compression -I../../../src/lib-fs -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-compress.lo -MD -MP -MF .deps/fs-compress.Tpo -c fs-compress.c  -fPIC -DPIC -o .libs/fs-compress.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-compression -I../../../src/lib-fs -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-compress.lo -MD -MP -MF .deps/fs-compress.Tpo -c fs-compress.c -o fs-compress.o >/dev/null 2>&1
mv -f .deps/fs-compress.Tpo .deps/fs-compress.Plo
--- libfs_compress.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 -mfunction-return=keep -Wall -W -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 libfs_compress.la -rpath /usr/local/lib/dovecot fs-compress.lo ../../lib-compression/libdovecot-compression.la 
libtool: link: cc -shared  -fPIC -DPIC  .libs/fs-compress.o   -Wl,-rpath -Wl,/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-compression/.libs -Wl,-rpath -Wl,/usr/local/lib/dovecot -L/usr/local/lib ../../lib-compression/.libs/libdovecot-compression.so  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,libfs_compress.so -o .libs/libfs_compress.so
libtool: link: ar cr .libs/libfs_compress.a  fs-compress.o
libtool: link: ranlib .libs/libfs_compress.a
libtool: link: ( cd ".libs" && rm -f "libfs_compress.la" && ln -s "../libfs_compress.la" "libfs_compress.la" )
Making all in var-expand-crypt
--- test_var_expand_crypt-test-var-expand-crypt.o ---
--- var-expand-crypt-plugin.lo ---
--- test_var_expand_crypt-test-var-expand-crypt.o ---
cc -DHAVE_CONFIG_H -I. -I../../..  -I../../../src/lib  -I../../../src/lib-test  -I../../../src/lib-dcrypt -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -DDCRYPT_BUILD_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 -mfunction-return=keep -Wall -W -Wmissing-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_var_expand_crypt-test-var-expand-crypt.o -MD -MP -MF .deps/test_var_expand_crypt-test-var-expand-crypt.Tpo -c -o test_var_expand_crypt-test-var-expand-crypt.o `test -f 'test-var-expand-crypt.c' || echo './'`test-var-expand-crypt.c
--- var-expand-crypt-plugin.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-test  -I../../../src/lib-dcrypt -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-crypt-plugin.lo -MD -MP -MF .deps/var-expand-crypt-plugin.Tpo -c -o var-expand-crypt-plugin.lo var-expand-crypt-plugin.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dcrypt -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-crypt-plugin.lo -MD -MP -MF .deps/var-expand-crypt-plugin.Tpo -c var-expand-crypt-plugin.c  -fPIC -DPIC -o .libs/var-expand-crypt-plugin.o
--- test_var_expand_crypt-test-var-expand-crypt.o ---
mv -f .deps/test_var_expand_crypt-test-var-expand-crypt.Tpo .deps/test_var_expand_crypt-test-var-expand-crypt.Po
--- var-expand-crypt-plugin.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-test -I../../../src/lib-dcrypt -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-crypt-plugin.lo -MD -MP -MF .deps/var-expand-crypt-plugin.Tpo -c var-expand-crypt-plugin.c -o var-expand-crypt-plugin.o >/dev/null 2>&1
mv -f .deps/var-expand-crypt-plugin.Tpo .deps/var-expand-crypt-plugin.Plo
--- lib20_auth_var_expand_crypt.la ---
--- lib20_var_expand_crypt.la ---
--- lib20_auth_var_expand_crypt.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 -mfunction-return=keep -Wall -W -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 lib20_auth_var_expand_crypt.la -rpath /usr/local/lib/dovecot/auth var-expand-crypt-plugin.lo  
--- lib20_var_expand_crypt.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 -mfunction-return=keep -Wall -W -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 lib20_var_expand_crypt.la -rpath /usr/local/lib/dovecot var-expand-crypt-plugin.lo  
libtool: link: cc -shared  -fPIC -DPIC  .libs/var-expand-crypt-plugin.o   -L/usr/local/lib  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,lib20_var_expand_crypt.so -o .libs/lib20_var_expand_crypt.so
--- lib20_auth_var_expand_crypt.la ---
libtool: link: cc -shared  -fPIC -DPIC  .libs/var-expand-crypt-plugin.o   -L/usr/local/lib  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,lib20_auth_var_expand_crypt.so -o .libs/lib20_auth_var_expand_crypt.so
libtool: link: ar cr .libs/lib20_auth_var_expand_crypt.a  var-expand-crypt-plugin.o
--- lib20_var_expand_crypt.la ---
libtool: link: ar cr .libs/lib20_var_expand_crypt.a  var-expand-crypt-plugin.o
--- lib20_auth_var_expand_crypt.la ---
libtool: link: ranlib .libs/lib20_auth_var_expand_crypt.a
--- lib20_var_expand_crypt.la ---
libtool: link: ranlib .libs/lib20_var_expand_crypt.a
--- lib20_auth_var_expand_crypt.la ---
libtool: link: ( cd ".libs" && rm -f "lib20_auth_var_expand_crypt.la" && ln -s "../lib20_auth_var_expand_crypt.la" "lib20_auth_var_expand_crypt.la" )
--- lib20_var_expand_crypt.la ---
libtool: link: ( cd ".libs" && rm -f "lib20_var_expand_crypt.la" && ln -s "../lib20_var_expand_crypt.la" "lib20_var_expand_crypt.la" )
--- test-var-expand-crypt ---
/bin/sh ../../../libtool  --tag=CC    --mode=link cc  -DDCRYPT_BUILD_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 -mfunction-return=keep -Wall -W -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-var-expand-crypt test_var_expand_crypt-test-var-expand-crypt.o ../../lib-dovecot/libdovecot.la  lib20_auth_var_expand_crypt.la 
*** Warning: Linking the executable test-var-expand-crypt against the loadable module
*** lib20_auth_var_expand_crypt.so is not portable!
libtool: link: cc -DDCRYPT_BUILD_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 -mfunction-return=keep -Wall -W -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-var-expand-crypt test_var_expand_crypt-test-var-expand-crypt.o  -L/usr/local/lib ../../lib-dovecot/.libs/libdovecot.so ./.libs/lib20_auth_var_expand_crypt.so -Wl,-rpath -Wl,/usr/local/lib/dovecot -Wl,-rpath -Wl,/usr/local/lib/dovecot/auth
Making all in charset-alias
--- charset-alias-plugin.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib  -I../../../src/lib-master  -I../../../src/lib-mail  -I../../../src/lib-charset  -I../../../src/lib-index  -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG   -std=gnu99 -O2 -pipe  -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-alias-plugin.lo -MD -MP -MF .deps/charset-alias-plugin.Tpo -c -o charset-alias-plugin.lo charset-alias-plugin.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-master -I../../../src/lib-mail -I../../../src/lib-char../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-alias-plugin.lo -MD -MP -MF .deps/charset-alias-plugin.Tpo -c charset-alias-plugin.c  -fPIC -DPIC -o .libs/charset-alias-plugin.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib -I../../../src/lib-master -I../../../src/lib-mail -I../../../src/lib-char../../../src/lib-index -I../../../src/lib-storage -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-alias-plugin.lo -MD -MP -MF .deps/charset-alias-plugin.Tpo -c charset-alias-plugin.c -o charset-alias-plugin.o >/dev/null 2>&1
mv -f .deps/charset-alias-plugin.Tpo .deps/charset-alias-plugin.Plo
--- lib20_charset_alias_plugin.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 -mfunction-return=keep -Wall -W -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 lib20_charset_alias_plugin.la -rpath /usr/local/lib/dovecot charset-alias-plugin.lo  
libtool: link: cc -shared  -fPIC -DPIC  .libs/charset-alias-plugin.o   -L/usr/local/lib  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,lib20_charset_alias_plugin.so -o .libs/lib20_charset_alias_plugin.so
libtool: link: ar cr .libs/lib20_charset_alias_plugin.a  charset-alias-plugin.o
libtool: link: ranlib .libs/lib20_charset_alias_plugin.a
libtool: link: ( cd ".libs" && rm -f "lib20_charset_alias_plugin.la" && ln -s "../lib20_charset_alias_plugin.la" "lib20_charset_alias_plugin.la" )
Making all in doc
--- all-recursive ---
Making all in man
--- doveadm.1 ---
--- doveadm-acl.1 ---
--- doveadm-altmove.1 ---
--- doveadm-auth.1 ---
--- doveadm.1 ---
/bin/sh ./sed.sh . /var/run/dovecot /usr/local/etc/dovecot  /usr/local/libexec/dovecot < doveadm.1.in > doveadm.1
--- doveadm-acl.1 ---
/bin/sh ./sed.sh . /var/run/dovecot /usr/local/etc/dovecot  /usr/local/libexec/dovecot < doveadm-acl.1.in > doveadm-acl.1
--- doveadm-altmove.1 ---
/bin/sh ./sed.sh . /var/run/dovecot /usr/local/etc/dovecot  /usr/local/libexec/dovecot < doveadm-altmove.1.in > doveadm-altmove.1
--- doveadm-auth.1 ---
/bin/sh ./sed.sh . /var/run/dovecot /usr/local/etc/dovecot  /usr/local/libexec/dovecot < doveadm-auth.1.in > doveadm-auth.1
--- doveadm-batch.1 ---
--- doveadm-deduplicate.1 ---
--- doveadm-director.1 ---
--- doveadm-dump.1 ---
--- doveadm-batch.1 ---
/bin/sh ./sed.sh . /var/run/dovecot /usr/local/etc/dovecot  /usr/local/libexec/dovecot < doveadm-batch.1.in > doveadm-batch.1
--- doveadm-deduplicate.1 ---
/bin/sh ./sed.sh . /var/run/dovecot /usr/local/etc/dovecot  /usr/local/libexec/dovecot < doveadm-deduplicate.1.in > doveadm-deduplicate.1
--- doveadm-director.1 ---
/bin/sh ./sed.sh . /var/run/dovecot /usr/local/etc/dovecot  /usr/local/libexec/dovecot < doveadm-director.1.in > doveadm-director.1
--- doveadm-dump.1 ---
/bin/sh ./sed.sh . /var/run/dovecot /usr/local/etc/dovecot  /usr/local/libexec/dovecot < doveadm-dump.1.in > doveadm-dump.1
--- doveadm-exec.1 ---
--- doveadm-expunge.1 ---
--- doveadm-fetch.1 ---
--- doveadm-exec.1 ---
/bin/sh ./sed.sh . /var/run/dovecot /usr/local/etc/dovecot  /usr/local/libexec/dovecot < doveadm-exec.1.in > doveadm-exec.1
--- doveadm-expunge.1 ---
/bin/sh ./sed.sh . /var/run/dovecot /usr/local/etc/dovecot  /usr/local/libexec/dovecot < doveadm-expunge.1.in > doveadm-expunge.1
--- doveadm-flags.1 ---
--- doveadm-fetch.1 ---
/bin/sh ./sed.sh . /var/run/dovecot /usr/local/etc/dovecot  /usr/local/libexec/dovecot < doveadm-fetch.1.in > doveadm-fetch.1
--- doveadm-flags.1 ---
/bin/sh ./sed.sh . /var/run/dovecot /usr/local/etc/dovecot  /usr/local/libexec/dovecot < doveadm-flags.1.in > doveadm-flags.1
--- doveadm-fs.1 ---
--- doveadm-fts.1 ---
--- doveadm-import.1 ---
--- doveadm-fs.1 ---
/bin/sh ./sed.sh . /var/run/dovecot /usr/local/etc/dovecot  /usr/local/libexec/dovecot < doveadm-fs.1.in > doveadm-fs.1
--- doveadm-instance.1 ---
--- doveadm-fts.1 ---
/bin/sh ./sed.sh . /var/run/dovecot /usr/local/etc/dovecot  /usr/local/libexec/dovecot < doveadm-fts.1.in > doveadm-fts.1
--- doveadm-import.1 ---
/bin/sh ./sed.sh . /var/run/dovecot /usr/local/etc/dovecot  /usr/local/libexec/dovecot < doveadm-import.1.in > doveadm-import.1
--- doveadm-instance.1 ---
/bin/sh ./sed.sh . /var/run/dovecot /usr/local/etc/dovecot  /usr/local/libexec/dovecot < doveadm-instance.1.in > doveadm-instance.1
--- doveadm-index.1 ---
--- doveadm-force-resync.1 ---
--- doveadm-help.1 ---
--- doveadm-index.1 ---
/bin/sh ./sed.sh . /var/run/dovecot /usr/local/etc/dovecot  /usr/local/libexec/dovecot < doveadm-index.1.in > doveadm-index.1
--- doveadm-kick.1 ---
--- doveadm-help.1 ---
/bin/sh ./sed.sh . /var/run/dovecot /usr/local/etc/dovecot  /usr/local/libexec/dovecot < doveadm-help.1.in > doveadm-help.1
--- doveadm-force-resync.1 ---
/bin/sh ./sed.sh . /var/run/dovecot /usr/local/etc/dovecot  /usr/local/libexec/dovecot < doveadm-force-resync.1.in > doveadm-force-resync.1
--- doveadm-kick.1 ---
/bin/sh ./sed.sh . /var/run/dovecot /usr/local/etc/dovecot  /usr/local/libexec/dovecot < doveadm-kick.1.in > doveadm-kick.1
--- doveadm-log.1 ---
--- doveadm-mailbox.1 ---
--- doveadm-mailbox-cryptokey.1 ---
--- doveadm-move.1 ---
--- doveadm-log.1 ---
/bin/sh ./sed.sh . /var/run/dovecot /usr/local/etc/dovecot  /usr/local/libexec/dovecot < doveadm-log.1.in > doveadm-log.1
--- doveadm-mailbox-cryptokey.1 ---
/bin/sh ./sed.sh . /var/run/dovecot /usr/local/etc/dovecot  /usr/local/libexec/dovecot < doveadm-mailbox-cryptokey.1.in > doveadm-mailbox-cryptokey.1
--- doveadm-mailbox.1 ---
/bin/sh ./sed.sh . /var/run/dovecot /usr/local/etc/dovecot  /usr/local/libexec/dovecot < doveadm-mailbox.1.in > doveadm-mailbox.1
--- doveadm-move.1 ---
/bin/sh ./sed.sh . /var/run/dovecot /usr/local/etc/dovecot  /usr/local/libexec/dovecot < doveadm-move.1.in > doveadm-move.1
--- doveadm-penalty.1 ---
--- doveadm-proxy.1 ---
--- doveadm-purge.1 ---
--- doveadm-penalty.1 ---
/bin/sh ./sed.sh . /var/run/dovecot /usr/local/etc/dovecot  /usr/local/libexec/dovecot < doveadm-penalty.1.in > doveadm-penalty.1
--- doveadm-pw.1 ---
--- doveadm-proxy.1 ---
/bin/sh ./sed.sh . /var/run/dovecot /usr/local/etc/dovecot  /usr/local/libexec/dovecot < doveadm-proxy.1.in > doveadm-proxy.1
--- doveadm-purge.1 ---
/bin/sh ./sed.sh . /var/run/dovecot /usr/local/etc/dovecot  /usr/local/libexec/dovecot < doveadm-purge.1.in > doveadm-purge.1
--- doveadm-pw.1 ---
/bin/sh ./sed.sh . /var/run/dovecot /usr/local/etc/dovecot  /usr/local/libexec/dovecot < doveadm-pw.1.in > doveadm-pw.1
--- doveadm-quota.1 ---
--- doveadm-rebuild.1 ---
--- doveadm-quota.1 ---
/bin/sh ./sed.sh . /var/run/dovecot /usr/local/etc/dovecot  /usr/local/libexec/dovecot < doveadm-quota.1.in > doveadm-quota.1
--- doveadm-rebuild.1 ---
/bin/sh ./sed.sh . /var/run/dovecot /usr/local/etc/dovecot  /usr/local/libexec/dovecot < doveadm-rebuild.1.in > doveadm-rebuild.1
--- doveadm-replicator.1 ---
--- doveadm-save.1 ---
--- doveadm-replicator.1 ---
/bin/sh ./sed.sh . /var/run/dovecot /usr/local/etc/dovecot  /usr/local/libexec/dovecot < doveadm-replicator.1.in > doveadm-replicator.1
--- doveadm-save.1 ---
/bin/sh ./sed.sh . /var/run/dovecot /usr/local/etc/dovecot  /usr/local/libexec/dovecot < doveadm-save.1.in > doveadm-save.1
--- doveadm-search.1 ---
--- doveadm-stats.1 ---
--- doveadm-search.1 ---
/bin/sh ./sed.sh . /var/run/dovecot /usr/local/etc/dovecot  /usr/local/libexec/dovecot < doveadm-search.1.in > doveadm-search.1
--- doveadm-stats.1 ---
/bin/sh ./sed.sh . /var/run/dovecot /usr/local/etc/dovecot  /usr/local/libexec/dovecot < doveadm-stats.1.in > doveadm-stats.1
--- doveadm-sync.1 ---
--- doveadm-user.1 ---
--- doveadm-sync.1 ---
/bin/sh ./sed.sh . /var/run/dovecot /usr/local/etc/dovecot  /usr/local/libexec/dovecot < doveadm-sync.1.in > doveadm-sync.1
--- doveadm-user.1 ---
/bin/sh ./sed.sh . /var/run/dovecot /usr/local/etc/dovecot  /usr/local/libexec/dovecot < doveadm-user.1.in > doveadm-user.1
--- doveadm-who.1 ---
--- doveconf.1 ---
/bin/sh ./sed.sh . /var/run/dovecot /usr/local/etc/dovecot  /usr/local/libexec/dovecot < doveconf.1.in > doveconf.1
--- doveadm-who.1 ---
/bin/sh ./sed.sh . /var/run/dovecot /usr/local/etc/dovecot  /usr/local/libexec/dovecot < doveadm-who.1.in > doveadm-who.1
--- dovecot.1 ---
--- dovecot-lda.1 ---
--- dovecot.1 ---
/bin/sh ./sed.sh . /var/run/dovecot /usr/local/etc/dovecot  /usr/local/libexec/dovecot < dovecot.1.in > dovecot.1
--- dovecot-lda.1 ---
/bin/sh ./sed.sh . /var/run/dovecot /usr/local/etc/dovecot  /usr/local/libexec/dovecot < dovecot-lda.1.in > dovecot-lda.1
--- dovecot-sysreport.1 ---
/bin/sh ./sed.sh . /var/run/dovecot /usr/local/etc/dovecot  /usr/local/libexec/dovecot < dovecot-sysreport.1.in > dovecot-sysreport.1
Making all in wiki
Making all in example-config
--- all-recursive ---
Making all in conf.d
--- README ---
cat ./README.in | sed "s|@exampledir@|/usr/local/etc/dovecot/example-config|" > README
===>  Staging for dovecot-2.3.21_4
===>   dovecot-2.3.21_4 depends on file: /usr/local/lib/libcrypto.so.12 - found
===>   Generating temporary packing list
===> Creating groups.
===> Creating users
if test -z 'strip'; then  /usr/bin/make  INSTALL_PROGRAM="/bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s"  install_sh_PROGRAM="/bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s" INSTALL_STRIP_FLAG=-s  install;  else  /usr/bin/make  INSTALL_PROGRAM="/bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s"  install_sh_PROGRAM="/bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s" INSTALL_STRIP_FLAG=-s  "INSTALL_PROGRAM_ENV=STRIPPROG='strip'" install;  fi
Making install in .
/bin/sh ./update-version.sh . .
/usr/bin/make  install-exec-hook
/bin/mkdir -p /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot;  grep -v '^LIBDOVECOT_.*_INCLUDE' dovecot-config |  grep -v '^LIBDOVECOT.*_DEPS' | sed  -e "s|^\(DOVECOT_INSTALLED\)=.*$|\1=yes|"  -e "s|^\(LIBDOVECOT\)=.*$|\1='-L/usr/local/lib/dovecot -ldovecot'|"  -e "s|^\(LIBDOVECOT_LOGIN\)=.*$|\1='-ldovecot-login -L/usr/local/lib -lssl -lcrypto'|"  -e "s|^\(LIBDOVECOT_SQL\)=.*$|\1=-ldovecot-sql|"  -e "s|^\(LIBDOVECOT_COMPRESS\)=.*$|\1=-ldovecot-compression|"  -e "s|^\(LIBDOVECOT_DSYNC\)=.*$|\1=-ldovecot-dsync|"  -e "s|^\(LIBDOVECOT_LDA\)=.*$|\1=-ldovecot-lda|"  -e "s|^\(LIBDOVECOT_LIBFTS\)=.*$|\1=-ldovecot-fts|"  -e "s|^\(LIBDOVECOT_LUA\)=.*$|\1=-ldovecot-lua|"  -e "s|^\(LIBDOVECOT_STORAGE\)=.*$|\1='-ldovecot-storage '|"  -e "s|^\(LIBDOVECOT_INCLUDE\)=.*$|\1=-I/usr/local/include/dovecot|"  > /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/dovecot-config
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/share/aclocal'
 install  -m 0644 m4/dovecot.m4 '/usr/ports/mail/dovecot/work/stage/usr/local/share/aclocal'
/bin/sh ./update-version.sh . .
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 install  -m 0644 dovecot-version.h '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 install  -m 0644 config.h '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
Making install in src
Making install in lib-test
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 install  -m 0644 fuzzer.h ostream-final-trickle.h test-common.h test-subprocess.h '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
Making install in lib
/usr/bin/make  install-am
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 install  -m 0644 aqueue.h array.h array-decl.h askpass.h backtrace-string.h base32.h base64.h bits.h bsearch-insert-pos.h buffer.h byteorder.h child-wait.h compat.h connection.h cpu-limit.h crc32.h data-stack.h eacces-error.h env-util.h event-filter.h event-filter-parser.h event-filter-private.h event-log.h execv-const.h failures.h failures-private.h fd-util.h fdatasync-path.h fdpass.h file-cache.h file-create-locked.h file-copy.h file-dotlock.h file-lock.h file-set-size.h fsync-mode.h guid.h hash.h hash-decl.h hash-format.h '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 install  -m 0644 hash-method.h hash2.h hex-binary.h hex-dec.h hmac.h hmac-cram-md5.h home-expand.h hook-build.h hostpid.h imem.h ipwd.h iostream.h iostream-private.h iostream-pump.h iostream-proxy.h iostream-rawlog.h iostream-rawlog-private.h iostream-temp.h iso8601-date.h istream.h istream-base64.h istream-callback.h istream-chain.h istream-concat.h istream-crlf.h istream-failure-at.h istream-file-private.h istream-hash.h istream-jsonstr.h istream-multiplex.h istream-private.h istream-rawlog.h istream-seekable.h istream-sized.h istream-tee.h istream-try.h istream-timeout.h istream-unix.h ioloop.h ioloop-iolist.h '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 install  -m 0644 ioloop-private.h ioloop-notify-fd.h json-parser.h json-tree.h lib.h lib-event.h lib-event-private.h lib-signals.h llist.h log-throttle.h macros.h md4.h md5.h malloc-overflow.h memarea.h mempool.h mkdir-parents.h mmap-util.h module-context.h module-dir.h mountpoint.h net.h nfs-workarounds.h numpack.h ostream.h ostream-failure-at.h ostream-file-private.h ostream-hash.h ostream-multiplex.h ostream-private.h ostream-null.h ostream-rawlog.h ostream-unix.h ostream-wrapper.h path-util.h pkcs5.h primes.h printf-format-fix.h process-stat.h process-title.h '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 install  -m 0644 priorityq.h randgen.h read-full.h restrict-access.h restrict-process-size.h safe-memset.h safe-mkdir.h safe-mkstemp.h sendfile-util.h seq-range-array.h seq-set-builder.h sha-common.h sha1.h sha2.h sha3.h sleep.h sort.h stats-dist.h str.h str-find.h str-sanitize.h str-table.h strescape.h strfuncs.h strnum.h time-util.h unix-socket-create.h unlink-directory.h unlink-old-files.h unichar.h uri-util.h utc-offset.h utc-mktime.h var-expand.h var-expand-private.h wildcard-match.h write-full.h '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
Making install in lib-settings
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 install  -m 0644 settings.h settings-parser.h '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
Making install in lib-auth
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 install  -m 0644 auth-client.h auth-client-interface.h auth-client-private.h auth-master.h '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
Making install in lib-dns
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 install  -m 0644 dns-lookup.h dns-util.h '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
Making install in lib-master
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 install  -m 0644 anvil-client.h ipc-client.h ipc-server.h master-auth.h master-instance.h master-interface.h master-login.h master-login-auth.h master-service.h master-service-private.h master-service-settings.h master-service-settings-cache.h master-service-ssl.h master-service-ssl-settings.h service-settings.h stats-client.h syslog-util.h '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
Making install in lib-charset
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 install  -m 0644 charset-utf8.h charset-utf8-private.h '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
Making install in lib-ssl-iostream
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
 /bin/sh ../../libtool   --mode=install /usr/bin/install -c -s  libssl_iostream_openssl.la '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
libtool: install: /usr/bin/install -c .libs/libssl_iostream_openssl.so /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libssl_iostream_openssl.so
libtool: install: strip --strip-unneeded /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libssl_iostream_openssl.so
libtool: install: /usr/bin/install -c .libs/libssl_iostream_openssl.lai /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libssl_iostream_openssl.la
libtool: install: /usr/bin/install -c .libs/libssl_iostream_openssl.a /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libssl_iostream_openssl.a
libtool: install: strip --strip-debug /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libssl_iostream_openssl.a
libtool: install: chmod 644 /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libssl_iostream_openssl.a
libtool: install: ranlib /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libssl_iostream_openssl.a
libtool: warning: remember to run 'libtool --finish /usr/local/lib/dovecot'
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 install  -m 0644 iostream-openssl.h iostream-ssl.h iostream-ssl-private.h iostream-ssl-test.h '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
Making install in lib-dcrypt
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
 /bin/sh ../../libtool   --mode=install /usr/bin/install -c -s  libdcrypt_openssl.la '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
libtool: warning: relinking 'libdcrypt_openssl.la'
libtool: install: (cd /usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-dcrypt; /bin/sh "/usr/ports/mail/dovecot/work/dovecot-2.3.21/libtool"  --tag CC --mode=relink 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 -mfunction-return=keep -Wall -W -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 -inst-prefix-dir /usr/ports/mail/dovecot/work/stage)

*** Warning: Linking the shared library libdcrypt_openssl.la against the loadable module
*** libssl_iostream_openssl.so is not portable!
libtool: relink: cc -shared  -fPIC -DPIC  .libs/libdcrypt_openssl_la-dcrypt-openssl.o   -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 -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,libdcrypt_openssl.so -o .libs/libdcrypt_openssl.so
libtool: install: /usr/bin/install -c .libs/libdcrypt_openssl.soT /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdcrypt_openssl.so
libtool: install: strip --strip-unneeded /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdcrypt_openssl.so
libtool: install: /usr/bin/install -c .libs/libdcrypt_openssl.lai /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdcrypt_openssl.la
libtool: install: /usr/bin/install -c .libs/libdcrypt_openssl.a /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdcrypt_openssl.a
libtool: install: strip --strip-debug /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdcrypt_openssl.a
libtool: install: chmod 644 /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdcrypt_openssl.a
libtool: install: ranlib /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdcrypt_openssl.a
libtool: warning: remember to run 'libtool --finish /usr/local/lib/dovecot'
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 install  -m 0644 dcrypt.h dcrypt-iostream.h dcrypt-private.h ostream-encrypt.h istream-decrypt.h '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
Making install in lib-dict
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 install  -m 0644 dict.h dict-client.h dict-private.h dict-transaction-memory.h '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
Making install in lib-sasl
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 install  -m 0644 dsasl-client.h dsasl-client-private.h '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
Making install in lib-old-stats
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 install  -m 0644 stats.h stats-connection.h stats-parser.h '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
Making install in lib-http
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 install  -m 0644 http-common.h http-date.h http-url.h http-parser.h http-header.h http-header-parser.h http-transfer.h http-auth.h http-message-parser.h http-request.h http-request-parser.h http-response.h http-response-parser.h http-client-private.h http-client.h http-server-private.h http-server.h '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
Making install in lib-fs
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 install  -m 0644 fs-api.h fs-api-private.h fs-sis-common.h fs-wrapper.h fs-test.h istream-fs-file.h istream-fs-stats.h istream-metawrap.h ostream-metawrap.h ostream-cmp.h '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
Making install in lib-mail
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 install  -m 0644 istream-attachment-connector.h istream-attachment-extractor.h istream-binary-converter.h istream-dot.h istream-header-filter.h istream-nonuls.h istream-qp.h mail-user-hash.h mbox-from.h mail-html2text.h mail-types.h message-address.h message-binary-part.h message-date.h message-decoder.h message-header-decode.h message-header-encode.h message-header-hash.h message-header-parser.h message-id.h message-parser.h message-part.h message-part-data.h message-part-serialize.h message-search.h message-size.h message-snippet.h ostream-dot.h qp-decoder.h qp-encoder.h quoted-printable.h rfc2231-parser.h rfc822-parser.h '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
Making install in lib-program-client
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 install  -m 0644 program-client.h '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
Making install in lib-smtp
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 install  -m 0644 smtp-parser.h smtp-syntax.h smtp-address.h smtp-common.h smtp-params.h smtp-reply.h smtp-reply-parser.h smtp-command.h smtp-command-parser.h smtp-client-command.h smtp-client-transaction.h smtp-client-connection.h smtp-client-private.h smtp-client.h smtp-server-private.h smtp-server.h smtp-submit-settings.h smtp-submit.h '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
Making install in lib-imap
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 install  -m 0644 imap-arg.h imap-base-subject.h imap-bodystructure.h imap-date.h imap-envelope.h imap-id.h imap-keepalive.h imap-match.h imap-parser.h imap-resp-code.h imap-quote.h imap-url.h imap-seqset.h imap-utf7.h imap-util.h '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
Making install in lib-imap-storage
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 install  -m 0644 imap-msgpart.h imap-msgpart-url.h imap-metadata.h '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
Making install in lib-oauth2
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 install  -m 0644 oauth2.h '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
Making install in lib-dict-extra
Making install in lib-dovecot
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
 /bin/sh ../../libtool   --mode=install /usr/bin/install -c -s  libdovecot.la '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
libtool: install: /usr/bin/install -c .libs/libdovecot.so.0.0.0 /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot.so.0.0.0
libtool: install: strip --strip-unneeded /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot.so.0.0.0
libtool: install: (cd /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot && { ln -s -f libdovecot.so.0.0.0 libdovecot.so.0 || { rm -f libdovecot.so.0 && ln -s libdovecot.so.0.0.0 libdovecot.so.0; }; })
libtool: install: (cd /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot && { ln -s -f libdovecot.so.0.0.0 libdovecot.so || { rm -f libdovecot.so && ln -s libdovecot.so.0.0.0 libdovecot.so; }; })
libtool: install: /usr/bin/install -c .libs/libdovecot.lai /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot.la
libtool: install: /usr/bin/install -c .libs/libdovecot.a /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot.a
libtool: install: strip --strip-debug /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot.a
libtool: install: chmod 644 /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot.a
libtool: install: ranlib /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot.a
ranlib: warning: can't find .strtab section
ranlib: warning: can't find .strtab section
ranlib: warning: can't find .strtab section
ranlib: warning: can't find .strtab section
ranlib: warning: can't find .strtab section
ranlib: warning: can't find .strtab section
ranlib: warning: can't find .strtab section
libtool: warning: remember to run 'libtool --finish /usr/local/lib/dovecot'
Making install in lib-ldap
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
 /bin/sh ../../libtool   --mode=install /usr/bin/install -c -s  libdovecot-ldap.la '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
libtool: warning: relinking 'libdovecot-ldap.la'
libtool: install: (cd /usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-ldap; /bin/sh "/usr/ports/mail/dovecot/work/dovecot-2.3.21/libtool"  --tag CC --mode=relink 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 -mfunction-return=keep -Wall -W -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 libdovecot-ldap.la -rpath /usr/local/lib/dovecot ldap-client.lo ldap-connection.lo ldap-connection-pool.lo ldap-iterator.lo ldap-search.lo ldap-compare.lo ldap-entry.lo ../lib-dovecot/libdovecot.la -lldap -llber -inst-prefix-dir /usr/ports/mail/dovecot/work/stage)
libtool: relink: cc -shared  -fPIC -DPIC  .libs/ldap-client.o .libs/ldap-connection.o .libs/ldap-connection-pool.o .libs/ldap-iterator.o .libs/ldap-search.o .libs/ldap-compare.o .libs/ldap-entry.o   -Wl,-rpath -Wl,/usr/local/lib/dovecot -Wl,-rpath -Wl,/usr/local/lib -L/usr/local/lib ../lib-dovecot/.libs/libdovecot.so /usr/local/lib/libldap.so /usr/local/lib/liblber.so  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -pthread -Wl,-soname -Wl,libdovecot-ldap.so.0 -o .libs/libdovecot-ldap.so.0.0.0
libtool: install: /usr/bin/install -c .libs/libdovecot-ldap.so.0.0.0T /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot-ldap.so.0.0.0
libtool: install: strip --strip-unneeded /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot-ldap.so.0.0.0
libtool: install: (cd /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot && { ln -s -f libdovecot-ldap.so.0.0.0 libdovecot-ldap.so.0 || { rm -f libdovecot-ldap.so.0 && ln -s libdovecot-ldap.so.0.0.0 libdovecot-ldap.so.0; }; })
libtool: install: (cd /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot && { ln -s -f libdovecot-ldap.so.0.0.0 libdovecot-ldap.so || { rm -f libdovecot-ldap.so && ln -s libdovecot-ldap.so.0.0.0 libdovecot-ldap.so; }; })
libtool: install: /usr/bin/install -c .libs/libdovecot-ldap.lai /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot-ldap.la
libtool: install: /usr/bin/install -c .libs/libdovecot-ldap.a /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot-ldap.a
libtool: install: strip --strip-debug /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot-ldap.a
libtool: install: chmod 644 /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot-ldap.a
libtool: install: ranlib /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot-ldap.a
libtool: warning: remember to run 'libtool --finish /usr/local/lib/dovecot'
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 install  -m 0644 ldap-client.h '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
Making install in lib-fts
/usr/bin/make  install-am
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
 /bin/sh ../../libtool   --mode=install /usr/bin/install -c -s  libdovecot-fts.la '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
libtool: warning: relinking 'libdovecot-fts.la'
libtool: install: (cd /usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-fts; /bin/sh "/usr/ports/mail/dovecot/work/dovecot-2.3.21/libtool"  --tag CC --mode=relink 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 -mfunction-return=keep -Wall -W -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 libdovecot-fts.la -rpath /usr/local/lib/dovecot libfts.la ../lib-dovecot/libdovecot.la -inst-prefix-dir /usr/ports/mail/dovecot/work/stage)
libtool: relink: cc -shared  -fPIC -DPIC  -Wl,--whole-archive ./.libs/libfts.a -Wl,--no-whole-archive  -Wl,-rpath -Wl,/usr/local/lib/dovecot -L/usr/local/lib ../lib-dovecot/.libs/libdovecot.so  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,libdovecot-fts.so.0 -o .libs/libdovecot-fts.so.0.0.0
libtool: install: /usr/bin/install -c .libs/libdovecot-fts.so.0.0.0T /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot-fts.so.0.0.0
libtool: install: strip --strip-unneeded /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot-fts.so.0.0.0
libtool: install: (cd /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot && { ln -s -f libdovecot-fts.so.0.0.0 libdovecot-fts.so.0 || { rm -f libdovecot-fts.so.0 && ln -s libdovecot-fts.so.0.0.0 libdovecot-fts.so.0; }; })
libtool: install: (cd /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot && { ln -s -f libdovecot-fts.so.0.0.0 libdovecot-fts.so || { rm -f libdovecot-fts.so && ln -s libdovecot-fts.so.0.0.0 libdovecot-fts.so; }; })
libtool: install: /usr/bin/install -c .libs/libdovecot-fts.lai /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot-fts.la
libtool: install: /usr/bin/install -c .libs/libdovecot-fts.a /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot-fts.a
libtool: install: strip --strip-debug /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot-fts.a
libtool: install: chmod 644 /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot-fts.a
libtool: install: ranlib /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot-fts.a
libtool: warning: remember to run 'libtool --finish /usr/local/lib/dovecot'
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/share/dovecot/stopwords'
 install  -m 0644 stopwords/stopwords_da.txt stopwords/stopwords_de.txt stopwords/stopwords_en.txt stopwords/stopwords_es.txt stopwords/stopwords_fi.txt stopwords/stopwords_fr.txt stopwords/stopwords_it.txt stopwords/stopwords_nl.txt stopwords/stopwords_no.txt stopwords/stopwords_pt.txt stopwords/stopwords_ro.txt stopwords/stopwords_ru.txt stopwords/stopwords_sv.txt stopwords/stopwords_tr.txt '/usr/ports/mail/dovecot/work/stage/usr/local/share/dovecot/stopwords'
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 install  -m 0644 fts-common.h fts-filter.h fts-filter-common.h fts-filter-private.h fts-icu.h fts-language.h fts-library.h fts-tokenizer.h fts-tokenizer-common.h fts-tokenizer-private.h fts-tokenizer-generic-private.h '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
Making install in lib-imap-client
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 install  -m 0644 imapc-client.h imapc-client-private.h imapc-connection.h imapc-msgmap.h '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
Making install in lib-imap-urlauth
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 install  -m 0644 imap-urlauth.h imap-urlauth-private.h imap-urlauth-fetch.h imap-urlauth-backend.h imap-urlauth-connection.h '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
Making install in lib-compression
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
 /bin/sh ../../libtool   --mode=install /usr/bin/install -c -s  libdovecot-compression.la '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
libtool: warning: relinking 'libdovecot-compression.la'
libtool: install: (cd /usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-compression; /bin/sh "/usr/ports/mail/dovecot/work/dovecot-2.3.21/libtool"  --tag CC --mode=relink 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 -mfunction-return=keep -Wall -W -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 libdovecot-compression.la -rpath /usr/local/lib/dovecot libcompression.la ../lib-dovecot/libdovecot.la -lz -lbz2 -llzma -L/usr/local/lib -lzstd -inst-prefix-dir /usr/ports/mail/dovecot/work/stage)
libtool: relink: cc -shared  -fPIC -DPIC  -Wl,--whole-archive ./.libs/libcompression.a -Wl,--no-whole-archive  -Wl,-rpath -Wl,/usr/local/lib/dovecot -L/usr/local/lib ../lib-dovecot/.libs/libdovecot.so -lz -lbz2 -llzma -lzstd  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,libdovecot-compression.so.0 -o .libs/libdovecot-compression.so.0.0.0
libtool: install: /usr/bin/install -c .libs/libdovecot-compression.so.0.0.0T /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot-compression.so.0.0.0
libtool: install: strip --strip-unneeded /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot-compression.so.0.0.0
libtool: install: (cd /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot && { ln -s -f libdovecot-compression.so.0.0.0 libdovecot-compression.so.0 || { rm -f libdovecot-compression.so.0 && ln -s libdovecot-compression.so.0.0.0 libdovecot-compression.so.0; }; })
libtool: install: (cd /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot && { ln -s -f libdovecot-compression.so.0.0.0 libdovecot-compression.so || { rm -f libdovecot-compression.so && ln -s libdovecot-compression.so.0.0.0 libdovecot-compression.so; }; })
libtool: install: /usr/bin/install -c .libs/libdovecot-compression.lai /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot-compression.la
libtool: install: /usr/bin/install -c .libs/libdovecot-compression.a /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot-compression.a
libtool: install: strip --strip-debug /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot-compression.a
libtool: install: chmod 644 /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot-compression.a
libtool: install: ranlib /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot-compression.a
ranlib: warning: can't find .strtab section
ranlib: warning: can't find .strtab section
libtool: warning: remember to run 'libtool --finish /usr/local/lib/dovecot'
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 install  -m 0644 compression.h iostream-lz4.h istream-zlib.h ostream-zlib.h '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
Making install in lib-index
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 install  -m 0644 mail-cache.h mail-cache-private.h mail-index.h mail-index-alloc-cache.h mail-index-modseq.h mail-index-private.h mail-index-strmap.h mail-index-sync-private.h mail-index-transaction-private.h mail-index-util.h mail-index-view-private.h mail-transaction-log.h mail-transaction-log-private.h mail-transaction-log-view-private.h mailbox-log.h '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
Making install in lib-storage
Making install in list
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 install  -m 0644 mailbox-list-delete.h mailbox-list-fs.h mailbox-list-index.h mailbox-list-index-storage.h mailbox-list-index-sync.h mailbox-list-iter-private.h mailbox-list-maildir.h mailbox-list-notify-tree.h mailbox-list-subscriptions.h subscription-file.h '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
Making install in index
Making install in maildir
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 install  -m 0644 maildir-filename.h maildir-filename-flags.h maildir-keywords.h maildir-storage.h maildir-settings.h maildir-sync.h maildir-uidlist.h '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
Making install in mbox
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 install  -m 0644 istream-raw-mbox.h mbox-file.h mbox-lock.h mbox-md5.h mbox-settings.h mbox-storage.h mbox-sync-private.h '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
Making install in dbox-common
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 install  -m 0644 dbox-attachment.h dbox-file.h dbox-mail.h dbox-save.h dbox-storage.h '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
Making install in dbox-multi
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 install  -m 0644 mdbox-file.h mdbox-map.h mdbox-map-private.h mdbox-settings.h mdbox-storage.h mdbox-storage-rebuild.h mdbox-sync.h '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
Making install in dbox-single
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 install  -m 0644 sdbox-file.h sdbox-storage.h sdbox-sync.h '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
Making install in imapc
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 install  -m 0644 imapc-list.h imapc-mail.h imapc-search.h imapc-settings.h imapc-storage.h imapc-sync.h '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
Making install in pop3c
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 install  -m 0644 pop3c-client.h pop3c-settings.h pop3c-storage.h pop3c-sync.h '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
Making install in raw
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 install  -m 0644 raw-storage.h raw-sync.h '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
Making install in shared
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 install  -m 0644 shared-storage.h '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 install  -m 0644 istream-mail.h index-attachment.h index-mail.h index-mailbox-size.h index-pop3-uidl.h index-rebuild.h index-search-private.h index-search-result.h index-sort.h index-sort-private.h index-storage.h index-sync-changes.h index-sync-private.h index-thread-private.h '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
 /bin/sh ../../libtool   --mode=install /usr/bin/install -c -s  libdovecot-storage.la '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
libtool: warning: relinking 'libdovecot-storage.la'
libtool: install: (cd /usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-storage; /bin/sh "/usr/ports/mail/dovecot/work/dovecot-2.3.21/libtool"  --tag CC --mode=relink 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 -mfunction-return=keep -Wall -W -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 libdovecot-storage.la -rpath /usr/local/lib/dovecot libstorage.la ../lib-dovecot/libdovecot.la -inst-prefix-dir /usr/ports/mail/dovecot/work/stage)
libtool: relink: cc -shared  -fPIC -DPIC  -Wl,--whole-archive ./.libs/libstorage.a -Wl,--no-whole-archive  -Wl,-rpath -Wl,/usr/local/lib/dovecot -L/usr/local/lib ../lib-dovecot/.libs/libdovecot.so  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,libdovecot-storage.so.0 -o .libs/libdovecot-storage.so.0.0.0
libtool: install: /usr/bin/install -c .libs/libdovecot-storage.so.0.0.0T /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot-storage.so.0.0.0
libtool: install: strip --strip-unneeded /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot-storage.so.0.0.0
libtool: install: (cd /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot && { ln -s -f libdovecot-storage.so.0.0.0 libdovecot-storage.so.0 || { rm -f libdovecot-storage.so.0 && ln -s libdovecot-storage.so.0.0.0 libdovecot-storage.so.0; }; })
libtool: install: (cd /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot && { ln -s -f libdovecot-storage.so.0.0.0 libdovecot-storage.so || { rm -f libdovecot-storage.so && ln -s libdovecot-storage.so.0.0.0 libdovecot-storage.so; }; })
libtool: install: /usr/bin/install -c .libs/libdovecot-storage.lai /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot-storage.la
libtool: install: /usr/bin/install -c .libs/libdovecot-storage.a /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot-storage.a
libtool: install: strip --strip-debug /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot-storage.a
libtool: install: chmod 644 /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot-storage.a
libtool: install: ranlib /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot-storage.a
libtool: warning: remember to run 'libtool --finish /usr/local/lib/dovecot'
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 install  -m 0644 fail-mail-storage.h mail-autoexpunge.h mail-copy.h mail-duplicate.h mail-error.h mail-namespace.h mail-search.h mail-search-build.h mail-search-mime.h mail-search-mime-build.h mail-search-mime-register.h mail-search-register.h mail-thread.h mail-storage.h mail-search-parser.h mail-search-parser-private.h mail-storage-private.h mail-storage-hooks.h mail-storage-service.h mail-storage-settings.h mail-user.h mailbox-attribute.h mailbox-attribute-internal.h mailbox-attribute-private.h mailbox-guid-cache.h mailbox-list.h mailbox-list-iter.h mailbox-list-private.h mailbox-list-notify.h mailbox-match-plugin.h mailbox-recent-flags.h mailbox-search-result-private.h mailbox-tree.h mailbox-uidvalidity.h mailbox-watch.h test-mail-storage-common.h '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
Making install in lib-sql
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
 /bin/sh ../../libtool   --mode=install /usr/bin/install -c -s  libdovecot-sql.la '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
libtool: warning: relinking 'libdovecot-sql.la'
libtool: install: (cd /usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-sql; /bin/sh "/usr/ports/mail/dovecot/work/dovecot-2.3.21/libtool"  --tag CC --mode=relink 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 -mfunction-return=keep -Wall -W -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 -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o libdovecot-sql.la -rpath /usr/local/lib/dovecot libsql.la ../lib-dovecot/libdovecot.la -inst-prefix-dir /usr/ports/mail/dovecot/work/stage)
libtool: relink: cc -shared  -fPIC -DPIC  -Wl,--whole-archive ./.libs/libsql.a -Wl,--no-whole-archive  -Wl,-rpath -Wl,/usr/local/lib/dovecot -L/usr/local/lib -L/usr/local/lib/mysql -lmysqlclient -lpthread -lssl -lcrypto -lm -lrt -lexecinfo -lunwind ../lib-dovecot/.libs/libdovecot.so  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,libdovecot-sql.so.0 -o .libs/libdovecot-sql.so.0.0.0
libtool: install: /usr/bin/install -c .libs/libdovecot-sql.so.0.0.0T /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot-sql.so.0.0.0
libtool: install: strip --strip-unneeded /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot-sql.so.0.0.0
libtool: install: (cd /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot && { ln -s -f libdovecot-sql.so.0.0.0 libdovecot-sql.so.0 || { rm -f libdovecot-sql.so.0 && ln -s libdovecot-sql.so.0.0.0 libdovecot-sql.so.0; }; })
libtool: install: (cd /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot && { ln -s -f libdovecot-sql.so.0.0.0 libdovecot-sql.so || { rm -f libdovecot-sql.so && ln -s libdovecot-sql.so.0.0.0 libdovecot-sql.so; }; })
libtool: install: /usr/bin/install -c .libs/libdovecot-sql.lai /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot-sql.la
libtool: install: /usr/bin/install -c .libs/libdovecot-sql.a /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot-sql.a
libtool: install: strip --strip-debug /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot-sql.a
libtool: install: chmod 644 /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot-sql.a
libtool: install: ranlib /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot-sql.a
ranlib: warning: can't find .strtab section
ranlib: warning: can't find .strtab section
ranlib: warning: can't find .strtab section
libtool: warning: remember to run 'libtool --finish /usr/local/lib/dovecot'
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 install  -m 0644 sql-api.h sql-api-private.h sql-db-cache.h '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
Making install in lib-otp
Making install in lib-lda
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
 /bin/sh ../../libtool   --mode=install /usr/bin/install -c -s  libdovecot-lda.la '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
libtool: warning: relinking 'libdovecot-lda.la'
libtool: install: (cd /usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-lda; /bin/sh "/usr/ports/mail/dovecot/work/dovecot-2.3.21/libtool"  --tag CC --mode=relink 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 -mfunction-return=keep -Wall -W -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 libdovecot-lda.la -rpath /usr/local/lib/dovecot liblda.la ../lib-storage/libdovecot-storage.la ../lib-dovecot/libdovecot.la -inst-prefix-dir /usr/ports/mail/dovecot/work/stage)
libtool: relink: cc -shared  -fPIC -DPIC  -Wl,--whole-archive ./.libs/liblda.a -Wl,--no-whole-archive  -Wl,-rpath -Wl,/usr/local/lib/dovecot -L/usr/local/lib ../lib-storage/.libs/libdovecot-storage.so ../lib-dovecot/.libs/libdovecot.so  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,libdovecot-lda.so.0 -o .libs/libdovecot-lda.so.0.0.0
libtool: install: /usr/bin/install -c .libs/libdovecot-lda.so.0.0.0T /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot-lda.so.0.0.0
libtool: install: strip --strip-unneeded /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot-lda.so.0.0.0
libtool: install: (cd /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot && { ln -s -f libdovecot-lda.so.0.0.0 libdovecot-lda.so.0 || { rm -f libdovecot-lda.so.0 && ln -s libdovecot-lda.so.0.0.0 libdovecot-lda.so.0; }; })
libtool: install: (cd /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot && { ln -s -f libdovecot-lda.so.0.0.0 libdovecot-lda.so || { rm -f libdovecot-lda.so && ln -s libdovecot-lda.so.0.0.0 libdovecot-lda.so; }; })
libtool: install: /usr/bin/install -c .libs/libdovecot-lda.lai /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot-lda.la
libtool: install: /usr/bin/install -c .libs/libdovecot-lda.a /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot-lda.a
libtool: install: strip --strip-debug /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot-lda.a
libtool: install: chmod 644 /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot-lda.a
libtool: install: ranlib /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot-lda.a
libtool: warning: remember to run 'libtool --finish /usr/local/lib/dovecot'
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 install  -m 0644 lda-settings.h mail-deliver.h mail-send.h '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
Making install in lib-dict-backend
Making install in anvil
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot'
 STRIPPROG='strip' /bin/sh ../../libtool   --mode=install /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s anvil '/usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot'
libtool: warning: '../../src/lib-dovecot/libdovecot.la' has not been installed in '/usr/local/lib/dovecot'
libtool: install: /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s .libs/anvil /usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot/anvil
Making install in auth
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot'
 STRIPPROG='strip' /bin/sh ../../libtool   --mode=install /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s auth checkpassword-reply '/usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot'
libtool: warning: 'libstats_auth.la' has not been installed in '/usr/local/lib/dovecot/old-stats'
libtool: warning: '../../src/lib-dovecot/libdovecot.la' has not been installed in '/usr/local/lib/dovecot'
libtool: install: /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s .libs/auth /usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot/auth
libtool: warning: '../../src/lib-dovecot/libdovecot.la' has not been installed in '/usr/local/lib/dovecot'
libtool: install: /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s .libs/checkpassword-reply /usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot/checkpassword-reply
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/auth'
 /bin/sh ../../libtool   --mode=install /usr/bin/install -c -s  libauthdb_imap.la '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/auth'
libtool: warning: relinking 'libauthdb_imap.la'
libtool: install: (cd /usr/ports/mail/dovecot/work/dovecot-2.3.21/src/auth; /bin/sh "/usr/ports/mail/dovecot/work/dovecot-2.3.21/libtool"  --tag CC --mode=relink 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 -mfunction-return=keep -Wall -W -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 libauthdb_imap.la -rpath /usr/local/lib/dovecot/auth libauthdb_imap_la-passdb-imap.lo ../lib-imap-client/libimap_client.la ../../src/lib-dovecot/libdovecot.la -export-dynamic -inst-prefix-dir /usr/ports/mail/dovecot/work/stage)
libtool: relink: cc -shared  -fPIC -DPIC  .libs/libauthdb_imap_la-passdb-imap.o  -Wl,--whole-archive ../lib-imap-client/.libs/libimap_client.a -Wl,--no-whole-archive  -Wl,-rpath -Wl,/usr/local/lib/dovecot -L/usr/local/lib ../../src/lib-dovecot/.libs/libdovecot.so  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,libauthdb_imap.so -o .libs/libauthdb_imap.so
libtool: install: /usr/bin/install -c .libs/libauthdb_imap.soT /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/auth/libauthdb_imap.so
libtool: install: strip --strip-unneeded /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/auth/libauthdb_imap.so
libtool: install: /usr/bin/install -c .libs/libauthdb_imap.lai /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/auth/libauthdb_imap.la
libtool: install: /usr/bin/install -c .libs/libauthdb_imap.a /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/auth/libauthdb_imap.a
libtool: install: strip --strip-debug /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/auth/libauthdb_imap.a
libtool: install: chmod 644 /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/auth/libauthdb_imap.a
libtool: install: ranlib /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/auth/libauthdb_imap.a
libtool: warning: remember to run 'libtool --finish /usr/local/lib/dovecot/auth'
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 install  -m 0644 auth.h auth-cache.h auth-client-connection.h auth-common.h auth-master-connection.h mech-otp-common.h mech-plain-common.h mech-digest-md5-private.h mech-scram.h auth-penalty.h auth-policy.h auth-request.h auth-request-handler.h auth-request-handler-private.h auth-request-stats.h auth-request-var-expand.h auth-settings.h auth-stats.h auth-fields.h auth-token.h auth-worker-client.h auth-worker-server.h db-dict.h db-ldap.h db-sql.h db-passwd-file.h db-checkpassword.h db-oauth2.h mech.h mycrypt.h passdb.h passdb-blocking.h passdb-cache.h passdb-template.h password-scheme.h userdb.h userdb-blocking.h userdb-template.h '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/old-stats'
 /bin/sh ../../libtool   --mode=install /usr/bin/install -c -s  libstats_auth.la '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/old-stats'
libtool: warning: relinking 'libstats_auth.la'
libtool: install: (cd /usr/ports/mail/dovecot/work/dovecot-2.3.21/src/auth; /bin/sh "/usr/ports/mail/dovecot/work/dovecot-2.3.21/libtool"  --tag CC --mode=relink 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 -mfunction-return=keep -Wall -W -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 libstats_auth.la -rpath /usr/local/lib/dovecot/old-stats auth-stats.lo ../../src/lib-dovecot/libdovecot.la -export-dynamic -inst-prefix-dir /usr/ports/mail/dovecot/work/stage)
libtool: relink: cc -shared  -fPIC -DPIC  .libs/auth-stats.o   -Wl,-rpath -Wl,/usr/local/lib/dovecot -L/usr/local/lib ../../src/lib-dovecot/.libs/libdovecot.so  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,libstats_auth.so -o .libs/libstats_auth.so
libtool: install: /usr/bin/install -c .libs/libstats_auth.soT /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/old-stats/libstats_auth.so
libtool: install: strip --strip-unneeded /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/old-stats/libstats_auth.so
libtool: install: /usr/bin/install -c .libs/libstats_auth.lai /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/old-stats/libstats_auth.la
libtool: install: /usr/bin/install -c .libs/libstats_auth.a /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/old-stats/libstats_auth.a
libtool: install: strip --strip-debug /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/old-stats/libstats_auth.a
libtool: install: chmod 644 /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/old-stats/libstats_auth.a
libtool: install: ranlib /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/old-stats/libstats_auth.a
libtool: warning: remember to run 'libtool --finish /usr/local/lib/dovecot/old-stats'
Making install in dict
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot'
 STRIPPROG='strip' /bin/sh ../../libtool   --mode=install /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s dict '/usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot'
libtool: warning: '/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-ldap/libdovecot-ldap.la' has not been installed in '/usr/local/lib/dovecot'
libtool: warning: '/usr/ports/mail/dovecot/work/dovecot-2.3.21/src/lib-dovecot/libdovecot.la' has not been installed in '/usr/local/lib/dovecot'
libtool: warning: '../../src/lib-dovecot/libdovecot.la' has not been installed in '/usr/local/lib/dovecot'
libtool: install: /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s .libs/dict /usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot/dict
Making install in dns
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot'
 STRIPPROG='strip' /bin/sh ../../libtool   --mode=install /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s dns-client '/usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot'
libtool: warning: '../../src/lib-dovecot/libdovecot.la' has not been installed in '/usr/local/lib/dovecot'
libtool: install: /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s .libs/dns-client /usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot/dns-client
Making install in indexer
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot'
 STRIPPROG='strip' /bin/sh ../../libtool   --mode=install /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s indexer indexer-worker '/usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot'
libtool: warning: '../../src/lib-dovecot/libdovecot.la' has not been installed in '/usr/local/lib/dovecot'
libtool: install: /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s .libs/indexer /usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot/indexer
libtool: warning: '../../src/lib-storage/libdovecot-storage.la' has not been installed in '/usr/local/lib/dovecot'
libtool: warning: '../../src/lib-dovecot/libdovecot.la' has not been installed in '/usr/local/lib/dovecot'
libtool: install: /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s .libs/indexer-worker /usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot/indexer-worker
Making install in ipc
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot'
 STRIPPROG='strip' /bin/sh ../../libtool   --mode=install /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s ipc '/usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot'
libtool: warning: '../../src/lib-dovecot/libdovecot.la' has not been installed in '/usr/local/lib/dovecot'
libtool: install: /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s .libs/ipc /usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot/ipc
Making install in master
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/sbin'
 STRIPPROG='strip' /bin/sh ../../libtool   --mode=install /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s dovecot '/usr/ports/mail/dovecot/work/stage/usr/local/sbin'
libtool: warning: '../../src/lib-dovecot/libdovecot.la' has not been installed in '/usr/local/lib/dovecot'
libtool: install: /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s .libs/dovecot /usr/ports/mail/dovecot/work/stage/usr/local/sbin/dovecot
Making install in login-common
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
 /bin/sh ../../libtool   --mode=install /usr/bin/install -c -s  libdovecot-login.la '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
libtool: warning: relinking 'libdovecot-login.la'
libtool: install: (cd /usr/ports/mail/dovecot/work/dovecot-2.3.21/src/login-common; /bin/sh "/usr/ports/mail/dovecot/work/dovecot-2.3.21/libtool"  --tag CC --mode=relink 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 -mfunction-return=keep -Wall -W -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 libdovecot-login.la -rpath /usr/local/lib/dovecot liblogin.la ../lib-dovecot/libdovecot.la -L/usr/local/lib -lssl -lcrypto -inst-prefix-dir /usr/ports/mail/dovecot/work/stage)
libtool: relink: cc -shared  -fPIC -DPIC  -Wl,--whole-archive ./.libs/liblogin.a -Wl,--no-whole-archive  -Wl,-rpath -Wl,/usr/local/lib/dovecot -L/usr/local/lib ../lib-dovecot/.libs/libdovecot.so -lssl -lcrypto  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,libdovecot-login.so.0 -o .libs/libdovecot-login.so.0.0.0
libtool: install: /usr/bin/install -c .libs/libdovecot-login.so.0.0.0T /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot-login.so.0.0.0
libtool: install: strip --strip-unneeded /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot-login.so.0.0.0
libtool: install: (cd /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot && { ln -s -f libdovecot-login.so.0.0.0 libdovecot-login.so.0 || { rm -f libdovecot-login.so.0 && ln -s libdovecot-login.so.0.0.0 libdovecot-login.so.0; }; })
libtool: install: (cd /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot && { ln -s -f libdovecot-login.so.0.0.0 libdovecot-login.so || { rm -f libdovecot-login.so && ln -s libdovecot-login.so.0.0.0 libdovecot-login.so; }; })
libtool: install: /usr/bin/install -c .libs/libdovecot-login.lai /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot-login.la
libtool: install: /usr/bin/install -c .libs/libdovecot-login.a /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot-login.a
libtool: install: strip --strip-debug /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot-login.a
libtool: install: chmod 644 /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot-login.a
libtool: install: ranlib /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot-login.a
libtool: warning: remember to run 'libtool --finish /usr/local/lib/dovecot'
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 install  -m 0644 access-lookup.h client-common.h login-common.h login-proxy.h login-proxy-state.h login-settings.h sasl-server.h '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
Making install in imap-hibernate
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot'
 STRIPPROG='strip' /bin/sh ../../libtool   --mode=install /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s imap-hibernate '/usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot'
libtool: warning: '../../src/lib-dovecot/libdovecot.la' has not been installed in '/usr/local/lib/dovecot'
libtool: install: /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s .libs/imap-hibernate /usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot/imap-hibernate
Making install in imap-login
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot'
 STRIPPROG='strip' /bin/sh ../../libtool   --mode=install /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s imap-login '/usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot'
libtool: warning: '../../src/login-common/libdovecot-login.la' has not been installed in '/usr/local/lib/dovecot'
libtool: warning: '../../src/lib-dovecot/libdovecot.la' has not been installed in '/usr/local/lib/dovecot'
libtool: install: /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s .libs/imap-login /usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot/imap-login
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 install  -m 0644 imap-login-client.h imap-login-commands.h imap-login-settings.h '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
Making install in imap
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot'
 STRIPPROG='strip' /bin/sh ../../libtool   --mode=install /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s imap '/usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot'
libtool: warning: '../../src/lib-storage/libdovecot-storage.la' has not been installed in '/usr/local/lib/dovecot'
libtool: warning: '../../src/lib-dovecot/libdovecot.la' has not been installed in '/usr/local/lib/dovecot'
libtool: install: /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s .libs/imap /usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot/imap
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 install  -m 0644 imap-client.h imap-commands.h imap-commands-util.h imap-common.h imap-expunge.h imap-feature.h imap-fetch.h imap-list.h imap-master-client.h imap-notify.h imap-search.h imap-search-args.h imap-settings.h imap-status.h imap-state.h imap-sync.h imap-sync-private.h '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
Making install in imap-urlauth
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot'
 STRIPPROG='strip' /bin/sh ../../libtool   --mode=install /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s imap-urlauth-login imap-urlauth imap-urlauth-worker '/usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot'
libtool: warning: '../../src/login-common/libdovecot-login.la' has not been installed in '/usr/local/lib/dovecot'
libtool: warning: '../../src/lib-dovecot/libdovecot.la' has not been installed in '/usr/local/lib/dovecot'
libtool: install: /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s .libs/imap-urlauth-login /usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot/imap-urlauth-login
libtool: warning: '../../src/lib-dovecot/libdovecot.la' has not been installed in '/usr/local/lib/dovecot'
libtool: install: /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s .libs/imap-urlauth /usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot/imap-urlauth
libtool: warning: '../../src/lib-storage/libdovecot-storage.la' has not been installed in '/usr/local/lib/dovecot'
libtool: warning: '../../src/lib-dovecot/libdovecot.la' has not been installed in '/usr/local/lib/dovecot'
libtool: install: /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s .libs/imap-urlauth-worker /usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot/imap-urlauth-worker
Making install in pop3-login
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot'
 STRIPPROG='strip' /bin/sh ../../libtool   --mode=install /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s pop3-login '/usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot'
libtool: warning: '../../src/login-common/libdovecot-login.la' has not been installed in '/usr/local/lib/dovecot'
libtool: warning: '../../src/lib-dovecot/libdovecot.la' has not been installed in '/usr/local/lib/dovecot'
libtool: install: /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s .libs/pop3-login /usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot/pop3-login
Making install in pop3
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot'
 STRIPPROG='strip' /bin/sh ../../libtool   --mode=install /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s pop3 '/usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot'
libtool: warning: '../../src/lib-storage/libdovecot-storage.la' has not been installed in '/usr/local/lib/dovecot'
libtool: warning: '../../src/lib-dovecot/libdovecot.la' has not been installed in '/usr/local/lib/dovecot'
libtool: install: /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s .libs/pop3 /usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot/pop3
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 install  -m 0644 pop3-capability.h pop3-client.h pop3-commands.h pop3-common.h pop3-settings.h '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
Making install in submission-login
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot'
 STRIPPROG='strip' /bin/sh ../../libtool   --mode=install /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s submission-login '/usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot'
libtool: warning: '../../src/login-common/libdovecot-login.la' has not been installed in '/usr/local/lib/dovecot'
libtool: warning: '../../src/lib-dovecot/libdovecot.la' has not been installed in '/usr/local/lib/dovecot'
libtool: install: /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s .libs/submission-login /usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot/submission-login
Making install in submission
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot'
 STRIPPROG='strip' /bin/sh ../../libtool   --mode=install /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s submission '/usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot'
libtool: warning: '../../src/lib-storage/libdovecot-storage.la' has not been installed in '/usr/local/lib/dovecot'
libtool: warning: '../../src/lib-dovecot/libdovecot.la' has not been installed in '/usr/local/lib/dovecot'
libtool: install: /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s .libs/submission /usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot/submission
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 install  -m 0644 submission-common.h submission-backend.h submission-backend-relay.h submission-commands.h submission-recipient.h submission-client.h submission-settings.h '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
Making install in lda
rm -f /usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot/deliver
ln -s dovecot-lda /usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot/deliver
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot'
 STRIPPROG='strip' /bin/sh ../../libtool   --mode=install /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s dovecot-lda '/usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot'
libtool: warning: '../../src/lib-lda/libdovecot-lda.la' has not been installed in '/usr/local/lib/dovecot'
libtool: warning: '../../src/lib-storage/libdovecot-storage.la' has not been installed in '/usr/local/lib/dovecot'
libtool: warning: '../../src/lib-dovecot/libdovecot.la' has not been installed in '/usr/local/lib/dovecot'
libtool: install: /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s .libs/dovecot-lda /usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot/dovecot-lda
Making install in lmtp
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot'
 STRIPPROG='strip' /bin/sh ../../libtool   --mode=install /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s lmtp '/usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot'
libtool: warning: '../../src/lib-lda/libdovecot-lda.la' has not been installed in '/usr/local/lib/dovecot'
libtool: warning: '../../src/lib-storage/libdovecot-storage.la' has not been installed in '/usr/local/lib/dovecot'
libtool: warning: '../../src/lib-dovecot/libdovecot.la' has not been installed in '/usr/local/lib/dovecot'
libtool: install: /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s .libs/lmtp /usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot/lmtp
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 install  -m 0644 lmtp-common.h lmtp-commands.h lmtp-recipient.h lmtp-client.h lmtp-settings.h '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
Making install in log
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot'
 STRIPPROG='strip' /bin/sh ../../libtool   --mode=install /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s log '/usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot'
libtool: warning: '../../src/lib-dovecot/libdovecot.la' has not been installed in '/usr/local/lib/dovecot'
libtool: install: /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s .libs/log /usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot/log
Making install in config
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/bin'
 STRIPPROG='strip' /bin/sh ../../libtool   --mode=install /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s doveconf '/usr/ports/mail/dovecot/work/stage/usr/local/bin'
libtool: warning: '../../src/lib-dovecot/libdovecot.la' has not been installed in '/usr/local/lib/dovecot'
libtool: install: /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s .libs/doveconf /usr/ports/mail/dovecot/work/stage/usr/local/bin/doveconf
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot'
 STRIPPROG='strip' /bin/sh ../../libtool   --mode=install /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s config '/usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot'
libtool: warning: '../../src/lib-dovecot/libdovecot.la' has not been installed in '/usr/local/lib/dovecot'
libtool: install: /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s .libs/config /usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot/config
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 install  -m 0644 config-filter.h config-parser.h config-parser-private.h config-request.h '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
Making install in director
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot'
 STRIPPROG='strip' /bin/sh ../../libtool   --mode=install /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s director '/usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot'
libtool: warning: '../../src/lib-dovecot/libdovecot.la' has not been installed in '/usr/local/lib/dovecot'
libtool: install: /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s .libs/director /usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot/director
Making install in replication
Making install in aggregator
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot'
 STRIPPROG='strip' /bin/sh ../../../libtool   --mode=install /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s aggregator '/usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot'
libtool: warning: '../../../src/lib-dovecot/libdovecot.la' has not been installed in '/usr/local/lib/dovecot'
libtool: install: /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s .libs/aggregator /usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot/aggregator
Making install in replicator
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot'
 STRIPPROG='strip' /bin/sh ../../../libtool   --mode=install /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s replicator '/usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot'
libtool: warning: '../../../src/lib-dovecot/libdovecot.la' has not been installed in '/usr/local/lib/dovecot'
libtool: install: /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s .libs/replicator /usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot/replicator
Making install in util
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/bin'
 install  -m 555 dovecot-sysreport '/usr/ports/mail/dovecot/work/stage/usr/local/bin'
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot'
 STRIPPROG='strip' /bin/sh ../../libtool   --mode=install /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s rawlog script script-login tcpwrap gdbhelper maildirlock '/usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot'
libtool: warning: '../../src/lib-dovecot/libdovecot.la' has not been installed in '/usr/local/lib/dovecot'
libtool: install: /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s .libs/rawlog /usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot/rawlog
libtool: warning: '../../src/lib-dovecot/libdovecot.la' has not been installed in '/usr/local/lib/dovecot'
libtool: install: /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s .libs/script /usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot/script
libtool: warning: '../../src/lib-storage/libdovecot-storage.la' has not been installed in '/usr/local/lib/dovecot'
libtool: warning: '../../src/lib-dovecot/libdovecot.la' has not been installed in '/usr/local/lib/dovecot'
libtool: install: /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s .libs/script-login /usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot/script-login
libtool: warning: '../../src/lib-dovecot/libdovecot.la' has not been installed in '/usr/local/lib/dovecot'
libtool: install: /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s .libs/tcpwrap /usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot/tcpwrap
libtool: warning: '../../src/lib-dovecot/libdovecot.la' has not been installed in '/usr/local/lib/dovecot'
libtool: install: /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s .libs/gdbhelper /usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot/gdbhelper
libtool: warning: '../../src/lib-dovecot/libdovecot.la' has not been installed in '/usr/local/lib/dovecot'
libtool: install: /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s .libs/maildirlock /usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot/maildirlock
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot'
 install  -m 555 health-check.sh '/usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot'
Making install in doveadm
Making install in dsync
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
 /bin/sh ../../../libtool   --mode=install /usr/bin/install -c -s  libdovecot-dsync.la '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
libtool: warning: relinking 'libdovecot-dsync.la'
libtool: install: (cd /usr/ports/mail/dovecot/work/dovecot-2.3.21/src/doveadm/dsync; /bin/sh "/usr/ports/mail/dovecot/work/dovecot-2.3.21/libtool"  --tag CC --mode=relink 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 -mfunction-return=keep -Wall -W -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 libdovecot-dsync.la -rpath /usr/local/lib/dovecot libdsync.la ../../lib-storage/libdovecot-storage.la ../../lib-dovecot/libdovecot.la -inst-prefix-dir /usr/ports/mail/dovecot/work/stage)
libtool: relink: cc -shared  -fPIC -DPIC  -Wl,--whole-archive ./.libs/libdsync.a -Wl,--no-whole-archive  -Wl,-rpath -Wl,/usr/local/lib/dovecot -L/usr/local/lib ../../lib-storage/.libs/libdovecot-storage.so ../../lib-dovecot/.libs/libdovecot.so  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,libdovecot-dsync.so.0 -o .libs/libdovecot-dsync.so.0.0.0
libtool: install: /usr/bin/install -c .libs/libdovecot-dsync.so.0.0.0T /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot-dsync.so.0.0.0
libtool: install: strip --strip-unneeded /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot-dsync.so.0.0.0
libtool: install: (cd /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot && { ln -s -f libdovecot-dsync.so.0.0.0 libdovecot-dsync.so.0 || { rm -f libdovecot-dsync.so.0 && ln -s libdovecot-dsync.so.0.0.0 libdovecot-dsync.so.0; }; })
libtool: install: (cd /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot && { ln -s -f libdovecot-dsync.so.0.0.0 libdovecot-dsync.so || { rm -f libdovecot-dsync.so && ln -s libdovecot-dsync.so.0.0.0 libdovecot-dsync.so; }; })
libtool: install: /usr/bin/install -c .libs/libdovecot-dsync.lai /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot-dsync.la
libtool: install: /usr/bin/install -c .libs/libdovecot-dsync.a /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot-dsync.a
libtool: install: strip --strip-debug /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot-dsync.a
libtool: install: chmod 644 /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot-dsync.a
libtool: install: ranlib /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libdovecot-dsync.a
libtool: warning: remember to run 'libtool --finish /usr/local/lib/dovecot'
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 install  -m 0644 dsync-brain.h dsync-ibc.h '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/bin'
 STRIPPROG='strip' /bin/sh ../../libtool   --mode=install /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s doveadm '/usr/ports/mail/dovecot/work/stage/usr/local/bin'
libtool: warning: '../../src/lib-storage/libdovecot-storage.la' has not been installed in '/usr/local/lib/dovecot'
libtool: warning: '../../src/lib-dovecot/libdovecot.la' has not been installed in '/usr/local/lib/dovecot'
libtool: install: /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s .libs/doveadm /usr/ports/mail/dovecot/work/stage/usr/local/bin/doveadm
rm -f /usr/ports/mail/dovecot/work/stage/usr/local/bin/dsync
ln -s doveadm /usr/ports/mail/dovecot/work/stage/usr/local/bin/dsync
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot'
 STRIPPROG='strip' /bin/sh ../../libtool   --mode=install /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s doveadm-server '/usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot'
libtool: warning: '../../src/lib-storage/libdovecot-storage.la' has not been installed in '/usr/local/lib/dovecot'
libtool: warning: '../../src/lib-dovecot/libdovecot.la' has not been installed in '/usr/local/lib/dovecot'
libtool: install: /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s .libs/doveadm-server /usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot/doveadm-server
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 install  -m 0644 doveadm.h doveadm-cmd.h doveadm-dsync.h doveadm-dump.h doveadm-mail.h doveadm-mail-iter.h doveadm-mailbox-list-iter.h doveadm-print.h doveadm-print-private.h doveadm-settings.h doveadm-util.h '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
Making install in stats
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot'
 STRIPPROG='strip' /bin/sh ../../libtool   --mode=install /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s stats '/usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot'
libtool: warning: '../../src/lib-dovecot/libdovecot.la' has not been installed in '/usr/local/lib/dovecot'
libtool: install: /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s .libs/stats /usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot/stats
Making install in old-stats
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot'
 STRIPPROG='strip' /bin/sh ../../libtool   --mode=install /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s old-stats '/usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot'
libtool: warning: '../../src/lib-dovecot/libdovecot.la' has not been installed in '/usr/local/lib/dovecot'
libtool: install: /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s .libs/old-stats /usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot/old-stats
Making install in plugins
Making install in acl
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/doveadm'
 /bin/sh ../../../libtool   --mode=install /usr/bin/install -c -s  lib10_doveadm_acl_plugin.la '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/doveadm'
libtool: install: /usr/bin/install -c .libs/lib10_doveadm_acl_plugin.so /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/doveadm/lib10_doveadm_acl_plugin.so
libtool: install: strip --strip-unneeded /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/doveadm/lib10_doveadm_acl_plugin.so
libtool: install: /usr/bin/install -c .libs/lib10_doveadm_acl_plugin.lai /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/doveadm/lib10_doveadm_acl_plugin.la
libtool: install: /usr/bin/install -c .libs/lib10_doveadm_acl_plugin.a /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/doveadm/lib10_doveadm_acl_plugin.a
libtool: install: strip --strip-debug /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/doveadm/lib10_doveadm_acl_plugin.a
libtool: install: chmod 644 /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/doveadm/lib10_doveadm_acl_plugin.a
libtool: install: ranlib /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/doveadm/lib10_doveadm_acl_plugin.a
libtool: warning: remember to run 'libtool --finish /usr/local/lib/dovecot/doveadm'
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
 /bin/sh ../../../libtool   --mode=install /usr/bin/install -c -s  lib01_acl_plugin.la '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
libtool: install: /usr/bin/install -c .libs/lib01_acl_plugin.so /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib01_acl_plugin.so
libtool: install: strip --strip-unneeded /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib01_acl_plugin.so
libtool: install: /usr/bin/install -c .libs/lib01_acl_plugin.lai /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib01_acl_plugin.la
libtool: install: /usr/bin/install -c .libs/lib01_acl_plugin.a /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib01_acl_plugin.a
libtool: install: strip --strip-debug /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib01_acl_plugin.a
libtool: install: chmod 644 /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib01_acl_plugin.a
libtool: install: ranlib /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib01_acl_plugin.a
libtool: warning: remember to run 'libtool --finish /usr/local/lib/dovecot'
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 install  -m 0644 acl-api.h acl-api-private.h acl-cache.h acl-global-file.h acl-lookup-dict.h acl-plugin.h acl-storage.h '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
Making install in imap-acl
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
 /bin/sh ../../../libtool   --mode=install /usr/bin/install -c -s  lib02_imap_acl_plugin.la '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
libtool: warning: relinking 'lib02_imap_acl_plugin.la'
libtool: install: (cd /usr/ports/mail/dovecot/work/dovecot-2.3.21/src/plugins/imap-acl; /bin/sh "/usr/ports/mail/dovecot/work/dovecot-2.3.21/libtool"  --tag CC --mode=relink 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 -mfunction-return=keep -Wall -W -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 lib02_imap_acl_plugin.la -rpath /usr/local/lib/dovecot imap-acl-plugin.lo ../acl/lib01_acl_plugin.la -inst-prefix-dir /usr/ports/mail/dovecot/work/stage)

*** Warning: Linking the shared library lib02_imap_acl_plugin.la against the loadable module
*** lib01_acl_plugin.so is not portable!
libtool: relink: cc -shared  -fPIC -DPIC  .libs/imap-acl-plugin.o   -Wl,-rpath -Wl,/usr/local/lib/dovecot -L/usr/local/lib ../acl/.libs/lib01_acl_plugin.so  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,lib02_imap_acl_plugin.so -o .libs/lib02_imap_acl_plugin.so
libtool: install: /usr/bin/install -c .libs/lib02_imap_acl_plugin.soT /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib02_imap_acl_plugin.so
libtool: install: strip --strip-unneeded /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib02_imap_acl_plugin.so
libtool: install: /usr/bin/install -c .libs/lib02_imap_acl_plugin.lai /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib02_imap_acl_plugin.la
libtool: install: /usr/bin/install -c .libs/lib02_imap_acl_plugin.a /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib02_imap_acl_plugin.a
libtool: install: strip --strip-debug /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib02_imap_acl_plugin.a
libtool: install: chmod 644 /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib02_imap_acl_plugin.a
libtool: install: ranlib /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib02_imap_acl_plugin.a
libtool: warning: remember to run 'libtool --finish /usr/local/lib/dovecot'
Making install in fts
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot'
 STRIPPROG='strip' /bin/sh ../../../libtool   --mode=install /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s xml2text '/usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot'
libtool: warning: '../../../src/lib-dovecot/libdovecot.la' has not been installed in '/usr/local/lib/dovecot'
libtool: install: /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s .libs/xml2text /usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot/xml2text
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot'
 install  -m 555 decode2text.sh '/usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot'
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/doveadm'
 /bin/sh ../../../libtool   --mode=install /usr/bin/install -c -s  lib20_doveadm_fts_plugin.la '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/doveadm'
libtool: install: /usr/bin/install -c .libs/lib20_doveadm_fts_plugin.so /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/doveadm/lib20_doveadm_fts_plugin.so
libtool: install: strip --strip-unneeded /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/doveadm/lib20_doveadm_fts_plugin.so
libtool: install: /usr/bin/install -c .libs/lib20_doveadm_fts_plugin.lai /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/doveadm/lib20_doveadm_fts_plugin.la
libtool: install: /usr/bin/install -c .libs/lib20_doveadm_fts_plugin.a /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/doveadm/lib20_doveadm_fts_plugin.a
libtool: install: strip --strip-debug /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/doveadm/lib20_doveadm_fts_plugin.a
libtool: install: chmod 644 /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/doveadm/lib20_doveadm_fts_plugin.a
libtool: install: ranlib /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/doveadm/lib20_doveadm_fts_plugin.a
libtool: warning: remember to run 'libtool --finish /usr/local/lib/dovecot/doveadm'
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
 /bin/sh ../../../libtool   --mode=install /usr/bin/install -c -s  lib20_fts_plugin.la '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
libtool: install: /usr/bin/install -c .libs/lib20_fts_plugin.so /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_fts_plugin.so
libtool: install: strip --strip-unneeded /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_fts_plugin.so
libtool: install: /usr/bin/install -c .libs/lib20_fts_plugin.lai /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_fts_plugin.la
libtool: install: /usr/bin/install -c .libs/lib20_fts_plugin.a /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_fts_plugin.a
libtool: install: strip --strip-debug /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_fts_plugin.a
libtool: install: chmod 644 /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_fts_plugin.a
libtool: install: ranlib /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_fts_plugin.a
libtool: warning: remember to run 'libtool --finish /usr/local/lib/dovecot'
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 install  -m 0644 fts-api.h fts-api-private.h fts-expunge-log.h fts-indexer.h fts-parser.h fts-storage.h fts-user.h '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
Making install in fts-squat
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
 /bin/sh ../../../libtool   --mode=install /usr/bin/install -c -s  lib21_fts_squat_plugin.la '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
libtool: warning: relinking 'lib21_fts_squat_plugin.la'
libtool: install: (cd /usr/ports/mail/dovecot/work/dovecot-2.3.21/src/plugins/fts-squat; /bin/sh "/usr/ports/mail/dovecot/work/dovecot-2.3.21/libtool"  --tag CC --mode=relink 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 -mfunction-return=keep -Wall -W -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 lib21_fts_squat_plugin.la -rpath /usr/local/lib/dovecot fts-squat-plugin.lo fts-backend-squat.lo squat-trie.lo squat-uidlist.lo ../fts/lib20_fts_plugin.la -inst-prefix-dir /usr/ports/mail/dovecot/work/stage)

*** Warning: Linking the shared library lib21_fts_squat_plugin.la against the loadable module
*** lib20_fts_plugin.so is not portable!
libtool: relink: cc -shared  -fPIC -DPIC  .libs/fts-squat-plugin.o .libs/fts-backend-squat.o .libs/squat-trie.o .libs/squat-uidlist.o   -Wl,-rpath -Wl,/usr/local/lib/dovecot -L/usr/local/lib ../fts/.libs/lib20_fts_plugin.so  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,lib21_fts_squat_plugin.so -o .libs/lib21_fts_squat_plugin.so
libtool: install: /usr/bin/install -c .libs/lib21_fts_squat_plugin.soT /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib21_fts_squat_plugin.so
libtool: install: strip --strip-unneeded /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib21_fts_squat_plugin.so
libtool: install: /usr/bin/install -c .libs/lib21_fts_squat_plugin.lai /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib21_fts_squat_plugin.la
libtool: install: /usr/bin/install -c .libs/lib21_fts_squat_plugin.a /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib21_fts_squat_plugin.a
libtool: install: strip --strip-debug /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib21_fts_squat_plugin.a
libtool: install: chmod 644 /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib21_fts_squat_plugin.a
libtool: install: ranlib /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib21_fts_squat_plugin.a
libtool: warning: remember to run 'libtool --finish /usr/local/lib/dovecot'
Making install in last-login
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
 /bin/sh ../../../libtool   --mode=install /usr/bin/install -c -s  lib10_last_login_plugin.la '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
libtool: install: /usr/bin/install -c .libs/lib10_last_login_plugin.so /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib10_last_login_plugin.so
libtool: install: strip --strip-unneeded /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib10_last_login_plugin.so
libtool: install: /usr/bin/install -c .libs/lib10_last_login_plugin.lai /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib10_last_login_plugin.la
libtool: install: /usr/bin/install -c .libs/lib10_last_login_plugin.a /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib10_last_login_plugin.a
libtool: install: strip --strip-debug /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib10_last_login_plugin.a
libtool: install: chmod 644 /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib10_last_login_plugin.a
libtool: install: ranlib /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib10_last_login_plugin.a
libtool: warning: remember to run 'libtool --finish /usr/local/lib/dovecot'
Making install in lazy-expunge
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
 /bin/sh ../../../libtool   --mode=install /usr/bin/install -c -s  lib02_lazy_expunge_plugin.la '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
libtool: install: /usr/bin/install -c .libs/lib02_lazy_expunge_plugin.so /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib02_lazy_expunge_plugin.so
libtool: install: strip --strip-unneeded /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib02_lazy_expunge_plugin.so
libtool: install: /usr/bin/install -c .libs/lib02_lazy_expunge_plugin.lai /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib02_lazy_expunge_plugin.la
libtool: install: /usr/bin/install -c .libs/lib02_lazy_expunge_plugin.a /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib02_lazy_expunge_plugin.a
libtool: install: strip --strip-debug /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib02_lazy_expunge_plugin.a
libtool: install: chmod 644 /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib02_lazy_expunge_plugin.a
libtool: install: ranlib /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib02_lazy_expunge_plugin.a
libtool: warning: remember to run 'libtool --finish /usr/local/lib/dovecot'
Making install in listescape
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
 /bin/sh ../../../libtool   --mode=install /usr/bin/install -c -s  lib20_listescape_plugin.la '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
libtool: install: /usr/bin/install -c .libs/lib20_listescape_plugin.so /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_listescape_plugin.so
libtool: install: strip --strip-unneeded /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_listescape_plugin.so
libtool: install: /usr/bin/install -c .libs/lib20_listescape_plugin.lai /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_listescape_plugin.la
libtool: install: /usr/bin/install -c .libs/lib20_listescape_plugin.a /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_listescape_plugin.a
libtool: install: strip --strip-debug /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_listescape_plugin.a
libtool: install: chmod 644 /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_listescape_plugin.a
libtool: install: ranlib /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_listescape_plugin.a
libtool: warning: remember to run 'libtool --finish /usr/local/lib/dovecot'
Making install in notify
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
 /bin/sh ../../../libtool   --mode=install /usr/bin/install -c -s  lib15_notify_plugin.la '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
libtool: install: /usr/bin/install -c .libs/lib15_notify_plugin.so /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib15_notify_plugin.so
libtool: install: strip --strip-unneeded /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib15_notify_plugin.so
libtool: install: /usr/bin/install -c .libs/lib15_notify_plugin.lai /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib15_notify_plugin.la
libtool: install: /usr/bin/install -c .libs/lib15_notify_plugin.a /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib15_notify_plugin.a
libtool: install: strip --strip-debug /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib15_notify_plugin.a
libtool: install: chmod 644 /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib15_notify_plugin.a
libtool: install: ranlib /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib15_notify_plugin.a
libtool: warning: remember to run 'libtool --finish /usr/local/lib/dovecot'
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 install  -m 0644 notify-plugin.h notify-plugin-private.h '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
Making install in notify-status
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
 /bin/sh ../../../libtool   --mode=install /usr/bin/install -c -s  lib20_notify_status_plugin.la '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
libtool: install: /usr/bin/install -c .libs/lib20_notify_status_plugin.so /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_notify_status_plugin.so
libtool: install: strip --strip-unneeded /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_notify_status_plugin.so
libtool: install: /usr/bin/install -c .libs/lib20_notify_status_plugin.lai /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_notify_status_plugin.la
libtool: install: /usr/bin/install -c .libs/lib20_notify_status_plugin.a /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_notify_status_plugin.a
libtool: install: strip --strip-debug /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_notify_status_plugin.a
libtool: install: chmod 644 /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_notify_status_plugin.a
libtool: install: ranlib /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_notify_status_plugin.a
libtool: warning: remember to run 'libtool --finish /usr/local/lib/dovecot'
Making install in push-notification
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
 /bin/sh ../../../libtool   --mode=install /usr/bin/install -c -s  lib20_push_notification_plugin.la '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
libtool: warning: relinking 'lib20_push_notification_plugin.la'
libtool: install: (cd /usr/ports/mail/dovecot/work/dovecot-2.3.21/src/plugins/push-notification; /bin/sh "/usr/ports/mail/dovecot/work/dovecot-2.3.21/libtool"  --tag CC --mode=relink 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 -mfunction-return=keep -Wall -W -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 lib20_push_notification_plugin.la -rpath /usr/local/lib/dovecot push-notification-driver-dlog.lo push-notification-driver-ox.lo push-notification-drivers.lo push-notification-event-flagsclear.lo push-notification-event-flagsset.lo push-notification-event-mailboxcreate.lo push-notification-event-mailboxdelete.lo push-notification-event-mailboxrename.lo push-notification-event-mailboxsubscribe.lo push-notification-event-mailboxunsubscribe.lo push-notification-event-messageappend.lo push-notification-event-messageexpunge.lo push-notification-event-messagenew.lo push-notification-event-messageread.lo push-notification-event-messagetrash.lo push-notification-event-message-common.lo push-notification-events.lo push-notification-events-rfc5423.lo push-notification-plugin.lo push-notification-triggers.lo push-notification-txn-mbox.lo push-notification-txn-msg.lo ../notify/lib15_notify_plugin.la -inst-prefix-dir /usr/ports/mail/dovecot/work/stage)

*** Warning: Linking the shared library lib20_push_notification_plugin.la against the loadable module
*** lib15_notify_plugin.so is not portable!
libtool: relink: cc -shared  -fPIC -DPIC  .libs/push-notification-driver-dlog.o .libs/push-notification-driver-ox.o .libs/push-notification-drivers.o .libs/push-notification-event-flagsclear.o .libs/push-notification-event-flagsset.o .libs/push-notification-event-mailboxcreate.o .libs/push-notification-event-mailboxdelete.o .libs/push-notification-event-mailboxrename.o .libs/push-notification-event-mailboxsubscribe.o .libs/push-notification-event-mailboxunsubscribe.o .libs/push-notification-event-messageappend.o .libs/push-notification-event-messageexpunge.o .libs/push-notification-event-messagenew.o .libs/push-notification-event-messageread.o .libs/push-notification-event-messagetrash.o .libs/push-notification-event-message-common.o .libs/push-notification-events.o .libs/push-notification-events-rfc5423.o .libs/push-notification-plugin.o .libs/push-notification-triggers.o .libs/push-notification-txn-mbox.o .libs/push-notification-txn-msg.o   -Wl,-rpath -Wl,/usr/local/lib/dovecot -L/usr/local/lib ../notify/.libs/lib15_notify_plugin.so  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,lib20_push_notification_plugin.so -o .libs/lib20_push_notification_plugin.so
libtool: install: /usr/bin/install -c .libs/lib20_push_notification_plugin.soT /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_push_notification_plugin.so
libtool: install: strip --strip-unneeded /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_push_notification_plugin.so
libtool: install: /usr/bin/install -c .libs/lib20_push_notification_plugin.lai /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_push_notification_plugin.la
libtool: install: /usr/bin/install -c .libs/lib20_push_notification_plugin.a /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_push_notification_plugin.a
libtool: install: strip --strip-debug /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_push_notification_plugin.a
libtool: install: chmod 644 /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_push_notification_plugin.a
libtool: install: ranlib /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_push_notification_plugin.a
libtool: warning: remember to run 'libtool --finish /usr/local/lib/dovecot'
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 install  -m 0644 push-notification-drivers.h push-notification-event-flagsclear.h push-notification-event-flagsset.h push-notification-event-mailboxcreate.h push-notification-event-mailboxdelete.h push-notification-event-mailboxrename.h push-notification-event-mailboxsubscribe.h push-notification-event-mailboxunsubscribe.h push-notification-event-message-common.h push-notification-event-messageappend.h push-notification-event-messageexpunge.h push-notification-event-messagenew.h push-notification-event-messageread.h push-notification-event-messagetrash.h push-notification-events.h push-notification-events-rfc5423.h push-notification-plugin.h push-notification-triggers.h push-notification-txn-mbox.h push-notification-txn-msg.h '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
Making install in mail-log
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
 /bin/sh ../../../libtool   --mode=install /usr/bin/install -c -s  lib20_mail_log_plugin.la '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
libtool: warning: relinking 'lib20_mail_log_plugin.la'
libtool: install: (cd /usr/ports/mail/dovecot/work/dovecot-2.3.21/src/plugins/mail-log; /bin/sh "/usr/ports/mail/dovecot/work/dovecot-2.3.21/libtool"  --tag CC --mode=relink 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 -mfunction-return=keep -Wall -W -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 lib20_mail_log_plugin.la -rpath /usr/local/lib/dovecot mail-log-plugin.lo ../notify/lib15_notify_plugin.la -inst-prefix-dir /usr/ports/mail/dovecot/work/stage)

*** Warning: Linking the shared library lib20_mail_log_plugin.la against the loadable module
*** lib15_notify_plugin.so is not portable!
libtool: relink: cc -shared  -fPIC -DPIC  .libs/mail-log-plugin.o   -Wl,-rpath -Wl,/usr/local/lib/dovecot -L/usr/local/lib ../notify/.libs/lib15_notify_plugin.so  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,lib20_mail_log_plugin.so -o .libs/lib20_mail_log_plugin.so
libtool: install: /usr/bin/install -c .libs/lib20_mail_log_plugin.soT /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_mail_log_plugin.so
libtool: install: strip --strip-unneeded /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_mail_log_plugin.so
libtool: install: /usr/bin/install -c .libs/lib20_mail_log_plugin.lai /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_mail_log_plugin.la
libtool: install: /usr/bin/install -c .libs/lib20_mail_log_plugin.a /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_mail_log_plugin.a
libtool: install: strip --strip-debug /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_mail_log_plugin.a
libtool: install: chmod 644 /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_mail_log_plugin.a
libtool: install: ranlib /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_mail_log_plugin.a
libtool: warning: remember to run 'libtool --finish /usr/local/lib/dovecot'
Making install in mailbox-alias
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
 /bin/sh ../../../libtool   --mode=install /usr/bin/install -c -s  lib20_mailbox_alias_plugin.la '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
libtool: install: /usr/bin/install -c .libs/lib20_mailbox_alias_plugin.so /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_mailbox_alias_plugin.so
libtool: install: strip --strip-unneeded /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_mailbox_alias_plugin.so
libtool: install: /usr/bin/install -c .libs/lib20_mailbox_alias_plugin.lai /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_mailbox_alias_plugin.la
libtool: install: /usr/bin/install -c .libs/lib20_mailbox_alias_plugin.a /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_mailbox_alias_plugin.a
libtool: install: strip --strip-debug /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_mailbox_alias_plugin.a
libtool: install: chmod 644 /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_mailbox_alias_plugin.a
libtool: install: ranlib /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_mailbox_alias_plugin.a
libtool: warning: remember to run 'libtool --finish /usr/local/lib/dovecot'
Making install in quota
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot'
 STRIPPROG='strip' /bin/sh ../../../libtool   --mode=install /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s quota-status '/usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot'
libtool: warning: '../../../src/lib-storage/libdovecot-storage.la' has not been installed in '/usr/local/lib/dovecot'
libtool: warning: '../../../src/lib-dovecot/libdovecot.la' has not been installed in '/usr/local/lib/dovecot'
libtool: install: /bin/sh /usr/ports/mail/dovecot/work/dovecot-2.3.21/install-sh -c -s .libs/quota-status /usr/ports/mail/dovecot/work/stage/usr/local/libexec/dovecot/quota-status
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/doveadm'
 /bin/sh ../../../libtool   --mode=install /usr/bin/install -c -s  lib10_doveadm_quota_plugin.la '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/doveadm'
libtool: install: /usr/bin/install -c .libs/lib10_doveadm_quota_plugin.so /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/doveadm/lib10_doveadm_quota_plugin.so
libtool: install: strip --strip-unneeded /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/doveadm/lib10_doveadm_quota_plugin.so
libtool: install: /usr/bin/install -c .libs/lib10_doveadm_quota_plugin.lai /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/doveadm/lib10_doveadm_quota_plugin.la
libtool: install: /usr/bin/install -c .libs/lib10_doveadm_quota_plugin.a /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/doveadm/lib10_doveadm_quota_plugin.a
libtool: install: strip --strip-debug /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/doveadm/lib10_doveadm_quota_plugin.a
libtool: install: chmod 644 /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/doveadm/lib10_doveadm_quota_plugin.a
libtool: install: ranlib /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/doveadm/lib10_doveadm_quota_plugin.a
libtool: warning: remember to run 'libtool --finish /usr/local/lib/dovecot/doveadm'
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
 /bin/sh ../../../libtool   --mode=install /usr/bin/install -c -s  lib10_quota_plugin.la '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
libtool: install: /usr/bin/install -c .libs/lib10_quota_plugin.so /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib10_quota_plugin.so
libtool: install: strip --strip-unneeded /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib10_quota_plugin.so
libtool: install: /usr/bin/install -c .libs/lib10_quota_plugin.lai /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib10_quota_plugin.la
libtool: install: /usr/bin/install -c .libs/lib10_quota_plugin.a /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib10_quota_plugin.a
libtool: install: strip --strip-debug /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib10_quota_plugin.a
libtool: install: chmod 644 /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib10_quota_plugin.a
libtool: install: ranlib /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib10_quota_plugin.a
libtool: warning: remember to run 'libtool --finish /usr/local/lib/dovecot'
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
 install  -m 0644 quota.h quota-fs.h quota-plugin.h quota-private.h '/usr/ports/mail/dovecot/work/stage/usr/local/include/dovecot'
Making install in quota-clone
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
 /bin/sh ../../../libtool   --mode=install /usr/bin/install -c -s  lib20_quota_clone_plugin.la '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
libtool: install: /usr/bin/install -c .libs/lib20_quota_clone_plugin.so /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_quota_clone_plugin.so
libtool: install: strip --strip-unneeded /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_quota_clone_plugin.so
libtool: install: /usr/bin/install -c .libs/lib20_quota_clone_plugin.lai /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_quota_clone_plugin.la
libtool: install: /usr/bin/install -c .libs/lib20_quota_clone_plugin.a /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_quota_clone_plugin.a
libtool: install: strip --strip-debug /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_quota_clone_plugin.a
libtool: install: chmod 644 /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_quota_clone_plugin.a
libtool: install: ranlib /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_quota_clone_plugin.a
libtool: warning: remember to run 'libtool --finish /usr/local/lib/dovecot'
Making install in imap-quota
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
 /bin/sh ../../../libtool   --mode=install /usr/bin/install -c -s  lib11_imap_quota_plugin.la '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
libtool: warning: relinking 'lib11_imap_quota_plugin.la'
libtool: install: (cd /usr/ports/mail/dovecot/work/dovecot-2.3.21/src/plugins/imap-quota; /bin/sh "/usr/ports/mail/dovecot/work/dovecot-2.3.21/libtool"  --tag CC --mode=relink 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 -mfunction-return=keep -Wall -W -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 lib11_imap_quota_plugin.la -rpath /usr/local/lib/dovecot imap-quota-plugin.lo ../quota/lib10_quota_plugin.la -inst-prefix-dir /usr/ports/mail/dovecot/work/stage)

*** Warning: Linking the shared library lib11_imap_quota_plugin.la against the loadable module
*** lib10_quota_plugin.so is not portable!
libtool: relink: cc -shared  -fPIC -DPIC  .libs/imap-quota-plugin.o   -Wl,-rpath -Wl,/usr/local/lib/dovecot -L/usr/local/lib ../quota/.libs/lib10_quota_plugin.so  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,lib11_imap_quota_plugin.so -o .libs/lib11_imap_quota_plugin.so
libtool: install: /usr/bin/install -c .libs/lib11_imap_quota_plugin.soT /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib11_imap_quota_plugin.so
libtool: install: strip --strip-unneeded /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib11_imap_quota_plugin.so
libtool: install: /usr/bin/install -c .libs/lib11_imap_quota_plugin.lai /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib11_imap_quota_plugin.la
libtool: install: /usr/bin/install -c .libs/lib11_imap_quota_plugin.a /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib11_imap_quota_plugin.a
libtool: install: strip --strip-debug /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib11_imap_quota_plugin.a
libtool: install: chmod 644 /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib11_imap_quota_plugin.a
libtool: install: ranlib /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib11_imap_quota_plugin.a
libtool: warning: remember to run 'libtool --finish /usr/local/lib/dovecot'
Making install in pop3-migration
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
 /bin/sh ../../../libtool   --mode=install /usr/bin/install -c -s  lib05_pop3_migration_plugin.la '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
libtool: install: /usr/bin/install -c .libs/lib05_pop3_migration_plugin.so /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib05_pop3_migration_plugin.so
libtool: install: strip --strip-unneeded /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib05_pop3_migration_plugin.so
libtool: install: /usr/bin/install -c .libs/lib05_pop3_migration_plugin.lai /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib05_pop3_migration_plugin.la
libtool: install: /usr/bin/install -c .libs/lib05_pop3_migration_plugin.a /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib05_pop3_migration_plugin.a
libtool: install: strip --strip-debug /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib05_pop3_migration_plugin.a
libtool: install: chmod 644 /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib05_pop3_migration_plugin.a
libtool: install: ranlib /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib05_pop3_migration_plugin.a
libtool: warning: remember to run 'libtool --finish /usr/local/lib/dovecot'
Making install in replication
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
 /bin/sh ../../../libtool   --mode=install /usr/bin/install -c -s  lib20_replication_plugin.la '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
libtool: warning: relinking 'lib20_replication_plugin.la'
libtool: install: (cd /usr/ports/mail/dovecot/work/dovecot-2.3.21/src/plugins/replication; /bin/sh "/usr/ports/mail/dovecot/work/dovecot-2.3.21/libtool"  --tag CC --mode=relink 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 -mfunction-return=keep -Wall -W -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 lib20_replication_plugin.la -rpath /usr/local/lib/dovecot replication-plugin.lo ../notify/lib15_notify_plugin.la -inst-prefix-dir /usr/ports/mail/dovecot/work/stage)

*** Warning: Linking the shared library lib20_replication_plugin.la against the loadable module
*** lib15_notify_plugin.so is not portable!
libtool: relink: cc -shared  -fPIC -DPIC  .libs/replication-plugin.o   -Wl,-rpath -Wl,/usr/local/lib/dovecot -L/usr/local/lib ../notify/.libs/lib15_notify_plugin.so  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,lib20_replication_plugin.so -o .libs/lib20_replication_plugin.so
libtool: install: /usr/bin/install -c .libs/lib20_replication_plugin.soT /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_replication_plugin.so
libtool: install: strip --strip-unneeded /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_replication_plugin.so
libtool: install: /usr/bin/install -c .libs/lib20_replication_plugin.lai /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_replication_plugin.la
libtool: install: /usr/bin/install -c .libs/lib20_replication_plugin.a /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_replication_plugin.a
libtool: install: strip --strip-debug /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_replication_plugin.a
libtool: install: chmod 644 /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_replication_plugin.a
libtool: install: ranlib /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_replication_plugin.a
libtool: warning: remember to run 'libtool --finish /usr/local/lib/dovecot'
Making install in old-stats
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
 /bin/sh ../../../libtool   --mode=install /usr/bin/install -c -s  lib90_old_stats_plugin.la '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
libtool: install: /usr/bin/install -c .libs/lib90_old_stats_plugin.so /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib90_old_stats_plugin.so
libtool: install: strip --strip-unneeded /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib90_old_stats_plugin.so
libtool: install: /usr/bin/install -c .libs/lib90_old_stats_plugin.lai /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib90_old_stats_plugin.la
libtool: install: /usr/bin/install -c .libs/lib90_old_stats_plugin.a /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib90_old_stats_plugin.a
libtool: install: strip --strip-debug /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib90_old_stats_plugin.a
libtool: install: chmod 644 /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib90_old_stats_plugin.a
libtool: install: ranlib /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib90_old_stats_plugin.a
libtool: warning: remember to run 'libtool --finish /usr/local/lib/dovecot'
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/old-stats'
 /bin/sh ../../../libtool   --mode=install /usr/bin/install -c -s  libold_stats_mail.la '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/old-stats'
libtool: warning: relinking 'libold_stats_mail.la'
libtool: install: (cd /usr/ports/mail/dovecot/work/dovecot-2.3.21/src/plugins/old-stats; /bin/sh "/usr/ports/mail/dovecot/work/dovecot-2.3.21/libtool"  --tag CC --mode=relink 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 -mfunction-return=keep -Wall -W -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 libold_stats_mail.la -rpath /usr/local/lib/dovecot/old-stats mail-stats.lo ../../../src/lib-dovecot/libdovecot.la -export-dynamic -inst-prefix-dir /usr/ports/mail/dovecot/work/stage)
libtool: relink: cc -shared  -fPIC -DPIC  .libs/mail-stats.o   -Wl,-rpath -Wl,/usr/local/lib/dovecot -L/usr/local/lib ../../../src/lib-dovecot/.libs/libdovecot.so  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,libold_stats_mail.so -o .libs/libold_stats_mail.so
libtool: install: /usr/bin/install -c .libs/libold_stats_mail.soT /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/old-stats/libold_stats_mail.so
libtool: install: strip --strip-unneeded /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/old-stats/libold_stats_mail.so
libtool: install: /usr/bin/install -c .libs/libold_stats_mail.lai /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/old-stats/libold_stats_mail.la
libtool: install: /usr/bin/install -c .libs/libold_stats_mail.a /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/old-stats/libold_stats_mail.a
libtool: install: strip --strip-debug /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/old-stats/libold_stats_mail.a
libtool: install: chmod 644 /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/old-stats/libold_stats_mail.a
libtool: install: ranlib /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/old-stats/libold_stats_mail.a
libtool: warning: remember to run 'libtool --finish /usr/local/lib/dovecot/old-stats'
Making install in imap-old-stats
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
 /bin/sh ../../../libtool   --mode=install /usr/bin/install -c -s  lib95_imap_old_stats_plugin.la '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
libtool: warning: relinking 'lib95_imap_old_stats_plugin.la'
libtool: install: (cd /usr/ports/mail/dovecot/work/dovecot-2.3.21/src/plugins/imap-old-stats; /bin/sh "/usr/ports/mail/dovecot/work/dovecot-2.3.21/libtool"  --tag CC --mode=relink 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 -mfunction-return=keep -Wall -W -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 lib95_imap_old_stats_plugin.la -rpath /usr/local/lib/dovecot imap-stats-plugin.lo ../old-stats/lib90_old_stats_plugin.la -inst-prefix-dir /usr/ports/mail/dovecot/work/stage)

*** Warning: Linking the shared library lib95_imap_old_stats_plugin.la against the loadable module
*** lib90_old_stats_plugin.so is not portable!
libtool: relink: cc -shared  -fPIC -DPIC  .libs/imap-stats-plugin.o   -Wl,-rpath -Wl,/usr/local/lib/dovecot -L/usr/local/lib ../old-stats/.libs/lib90_old_stats_plugin.so  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,lib95_imap_old_stats_plugin.so -o .libs/lib95_imap_old_stats_plugin.so
libtool: install: /usr/bin/install -c .libs/lib95_imap_old_stats_plugin.soT /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib95_imap_old_stats_plugin.so
libtool: install: strip --strip-unneeded /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib95_imap_old_stats_plugin.so
libtool: install: /usr/bin/install -c .libs/lib95_imap_old_stats_plugin.lai /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib95_imap_old_stats_plugin.la
libtool: install: /usr/bin/install -c .libs/lib95_imap_old_stats_plugin.a /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib95_imap_old_stats_plugin.a
libtool: install: strip --strip-debug /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib95_imap_old_stats_plugin.a
libtool: install: chmod 644 /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib95_imap_old_stats_plugin.a
libtool: install: ranlib /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib95_imap_old_stats_plugin.a
libtool: warning: remember to run 'libtool --finish /usr/local/lib/dovecot'
Making install in mail-crypt
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/doveadm'
 /bin/sh ../../../libtool   --mode=install /usr/bin/install -c -s  libdoveadm_mail_crypt_plugin.la '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/doveadm'
libtool: warning: relinking 'libdoveadm_mail_crypt_plugin.la'
libtool: install: (cd /usr/ports/mail/dovecot/work/dovecot-2.3.21/src/plugins/mail-crypt; /bin/sh "/usr/ports/mail/dovecot/work/dovecot-2.3.21/libtool"  --tag CC --mode=relink 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 -mfunction-return=keep -Wall -W -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 libdoveadm_mail_crypt_plugin.la -rpath /usr/local/lib/dovecot/doveadm doveadm-mail-crypt.lo ../../../src/lib-dovecot/libdovecot.la -export-dynamic -inst-prefix-dir /usr/ports/mail/dovecot/work/stage)
libtool: relink: cc -shared  -fPIC -DPIC  .libs/doveadm-mail-crypt.o   -Wl,-rpath -Wl,/usr/local/lib/dovecot -L/usr/local/lib ../../../src/lib-dovecot/.libs/libdovecot.so  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,libdoveadm_mail_crypt_plugin.so -o .libs/libdoveadm_mail_crypt_plugin.so
libtool: install: /usr/bin/install -c .libs/libdoveadm_mail_crypt_plugin.soT /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/doveadm/libdoveadm_mail_crypt_plugin.so
libtool: install: strip --strip-unneeded /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/doveadm/libdoveadm_mail_crypt_plugin.so
libtool: install: /usr/bin/install -c .libs/libdoveadm_mail_crypt_plugin.lai /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/doveadm/libdoveadm_mail_crypt_plugin.la
libtool: install: /usr/bin/install -c .libs/libdoveadm_mail_crypt_plugin.a /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/doveadm/libdoveadm_mail_crypt_plugin.a
libtool: install: strip --strip-debug /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/doveadm/libdoveadm_mail_crypt_plugin.a
libtool: install: chmod 644 /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/doveadm/libdoveadm_mail_crypt_plugin.a
libtool: install: ranlib /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/doveadm/libdoveadm_mail_crypt_plugin.a
libtool: warning: remember to run 'libtool --finish /usr/local/lib/dovecot/doveadm'
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
 /bin/sh ../../../libtool   --mode=install /usr/bin/install -c -s  lib10_mail_crypt_plugin.la lib05_mail_crypt_acl_plugin.la libfs_crypt.la libfs_mail_crypt.la '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
libtool: warning: relinking 'lib10_mail_crypt_plugin.la'
libtool: install: (cd /usr/ports/mail/dovecot/work/dovecot-2.3.21/src/plugins/mail-crypt; /bin/sh "/usr/ports/mail/dovecot/work/dovecot-2.3.21/libtool"  --tag CC --mode=relink 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 -mfunction-return=keep -Wall -W -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 lib10_mail_crypt_plugin.la -rpath /usr/local/lib/dovecot mail-crypt-global-key.lo mail-crypt-userenv.lo mail-crypt-key.lo mail-crypt-plugin.lo ../../../src/lib-dovecot/libdovecot.la -export-dynamic -inst-prefix-dir /usr/ports/mail/dovecot/work/stage)
libtool: relink: cc -shared  -fPIC -DPIC  .libs/mail-crypt-global-key.o .libs/mail-crypt-userenv.o .libs/mail-crypt-key.o .libs/mail-crypt-plugin.o   -Wl,-rpath -Wl,/usr/local/lib/dovecot -L/usr/local/lib ../../../src/lib-dovecot/.libs/libdovecot.so  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,lib10_mail_crypt_plugin.so -o .libs/lib10_mail_crypt_plugin.so
libtool: install: /usr/bin/install -c .libs/lib10_mail_crypt_plugin.soT /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib10_mail_crypt_plugin.so
libtool: install: strip --strip-unneeded /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib10_mail_crypt_plugin.so
libtool: install: /usr/bin/install -c .libs/lib10_mail_crypt_plugin.lai /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib10_mail_crypt_plugin.la
libtool: warning: relinking 'lib05_mail_crypt_acl_plugin.la'
libtool: install: (cd /usr/ports/mail/dovecot/work/dovecot-2.3.21/src/plugins/mail-crypt; /bin/sh "/usr/ports/mail/dovecot/work/dovecot-2.3.21/libtool"  --tag CC --mode=relink 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 -mfunction-return=keep -Wall -W -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 lib05_mail_crypt_acl_plugin.la -rpath /usr/local/lib/dovecot mail-crypt-acl-plugin.lo lib10_mail_crypt_plugin.la -inst-prefix-dir /usr/ports/mail/dovecot/work/stage)

*** Warning: Linking the shared library lib05_mail_crypt_acl_plugin.la against the loadable module
*** lib10_mail_crypt_plugin.so is not portable!
libtool: relink: cc -shared  -fPIC -DPIC  .libs/mail-crypt-acl-plugin.o   -Wl,-rpath -Wl,/usr/local/lib/dovecot -L/usr/local/lib ./.libs/lib10_mail_crypt_plugin.so  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,lib05_mail_crypt_acl_plugin.so -o .libs/lib05_mail_crypt_acl_plugin.so
libtool: install: /usr/bin/install -c .libs/lib05_mail_crypt_acl_plugin.soT /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib05_mail_crypt_acl_plugin.so
libtool: install: strip --strip-unneeded /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib05_mail_crypt_acl_plugin.so
libtool: install: /usr/bin/install -c .libs/lib05_mail_crypt_acl_plugin.lai /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib05_mail_crypt_acl_plugin.la
libtool: warning: relinking 'libfs_crypt.la'
libtool: install: (cd /usr/ports/mail/dovecot/work/dovecot-2.3.21/src/plugins/mail-crypt; /bin/sh "/usr/ports/mail/dovecot/work/dovecot-2.3.21/libtool"  --tag CC --mode=relink 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 -mfunction-return=keep -Wall -W -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 libfs_crypt.la -rpath /usr/local/lib/dovecot fs-crypt.lo mail-crypt-global-key.lo mail-crypt-pluginenv.lo fs-crypt-settings.lo ../../../src/lib-dovecot/libdovecot.la -export-dynamic -inst-prefix-dir /usr/ports/mail/dovecot/work/stage)
libtool: relink: cc -shared  -fPIC -DPIC  .libs/fs-crypt.o .libs/mail-crypt-global-key.o .libs/mail-crypt-pluginenv.o .libs/fs-crypt-settings.o   -Wl,-rpath -Wl,/usr/local/lib/dovecot -L/usr/local/lib ../../../src/lib-dovecot/.libs/libdovecot.so  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,libfs_crypt.so -o .libs/libfs_crypt.so
libtool: install: /usr/bin/install -c .libs/libfs_crypt.soT /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libfs_crypt.so
libtool: install: strip --strip-unneeded /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libfs_crypt.so
libtool: install: /usr/bin/install -c .libs/libfs_crypt.lai /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libfs_crypt.la
libtool: warning: relinking 'libfs_mail_crypt.la'
libtool: install: (cd /usr/ports/mail/dovecot/work/dovecot-2.3.21/src/plugins/mail-crypt; /bin/sh "/usr/ports/mail/dovecot/work/dovecot-2.3.21/libtool"  --tag CC --mode=relink 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 -mfunction-return=keep -Wall -W -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 libfs_mail_crypt.la -rpath /usr/local/lib/dovecot fs-mail-crypt.lo mail-crypt-global-key.lo mail-crypt-userenv.lo ../../../src/lib-dovecot/libdovecot.la -export-dynamic -inst-prefix-dir /usr/ports/mail/dovecot/work/stage)
libtool: relink: cc -shared  -fPIC -DPIC  .libs/fs-mail-crypt.o .libs/mail-crypt-global-key.o .libs/mail-crypt-userenv.o   -Wl,-rpath -Wl,/usr/local/lib/dovecot -L/usr/local/lib ../../../src/lib-dovecot/.libs/libdovecot.so  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,libfs_mail_crypt.so -o .libs/libfs_mail_crypt.so
libtool: install: /usr/bin/install -c .libs/libfs_mail_crypt.soT /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libfs_mail_crypt.so
libtool: install: strip --strip-unneeded /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libfs_mail_crypt.so
libtool: install: /usr/bin/install -c .libs/libfs_mail_crypt.lai /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libfs_mail_crypt.la
libtool: install: /usr/bin/install -c .libs/lib10_mail_crypt_plugin.a /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib10_mail_crypt_plugin.a
libtool: install: strip --strip-debug /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib10_mail_crypt_plugin.a
libtool: install: chmod 644 /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib10_mail_crypt_plugin.a
libtool: install: ranlib /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib10_mail_crypt_plugin.a
libtool: install: /usr/bin/install -c .libs/lib05_mail_crypt_acl_plugin.a /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib05_mail_crypt_acl_plugin.a
libtool: install: strip --strip-debug /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib05_mail_crypt_acl_plugin.a
libtool: install: chmod 644 /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib05_mail_crypt_acl_plugin.a
libtool: install: ranlib /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib05_mail_crypt_acl_plugin.a
libtool: install: /usr/bin/install -c .libs/libfs_crypt.a /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libfs_crypt.a
libtool: install: strip --strip-debug /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libfs_crypt.a
libtool: install: chmod 644 /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libfs_crypt.a
libtool: install: ranlib /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libfs_crypt.a
libtool: install: /usr/bin/install -c .libs/libfs_mail_crypt.a /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libfs_mail_crypt.a
libtool: install: strip --strip-debug /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libfs_mail_crypt.a
libtool: install: chmod 644 /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libfs_mail_crypt.a
libtool: install: ranlib /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libfs_mail_crypt.a
libtool: warning: remember to run 'libtool --finish /usr/local/lib/dovecot'
Making install in trash
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
 /bin/sh ../../../libtool   --mode=install /usr/bin/install -c -s  lib11_trash_plugin.la '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
libtool: warning: relinking 'lib11_trash_plugin.la'
libtool: install: (cd /usr/ports/mail/dovecot/work/dovecot-2.3.21/src/plugins/trash; /bin/sh "/usr/ports/mail/dovecot/work/dovecot-2.3.21/libtool"  --tag CC --mode=relink 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 -mfunction-return=keep -Wall -W -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 lib11_trash_plugin.la -rpath /usr/local/lib/dovecot trash-plugin.lo ../quota/lib10_quota_plugin.la -inst-prefix-dir /usr/ports/mail/dovecot/work/stage)

*** Warning: Linking the shared library lib11_trash_plugin.la against the loadable module
*** lib10_quota_plugin.so is not portable!
libtool: relink: cc -shared  -fPIC -DPIC  .libs/trash-plugin.o   -Wl,-rpath -Wl,/usr/local/lib/dovecot -L/usr/local/lib ../quota/.libs/lib10_quota_plugin.so  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,lib11_trash_plugin.so -o .libs/lib11_trash_plugin.so
libtool: install: /usr/bin/install -c .libs/lib11_trash_plugin.soT /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib11_trash_plugin.so
libtool: install: strip --strip-unneeded /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib11_trash_plugin.so
libtool: install: /usr/bin/install -c .libs/lib11_trash_plugin.lai /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib11_trash_plugin.la
libtool: install: /usr/bin/install -c .libs/lib11_trash_plugin.a /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib11_trash_plugin.a
libtool: install: strip --strip-debug /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib11_trash_plugin.a
libtool: install: chmod 644 /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib11_trash_plugin.a
libtool: install: ranlib /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib11_trash_plugin.a
libtool: warning: remember to run 'libtool --finish /usr/local/lib/dovecot'
Making install in virtual
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
 /bin/sh ../../../libtool   --mode=install /usr/bin/install -c -s  lib20_virtual_plugin.la '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
libtool: install: /usr/bin/install -c .libs/lib20_virtual_plugin.so /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_virtual_plugin.so
libtool: install: strip --strip-unneeded /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_virtual_plugin.so
libtool: install: /usr/bin/install -c .libs/lib20_virtual_plugin.lai /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_virtual_plugin.la
libtool: install: /usr/bin/install -c .libs/lib20_virtual_plugin.a /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_virtual_plugin.a
libtool: install: strip --strip-debug /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_virtual_plugin.a
libtool: install: chmod 644 /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_virtual_plugin.a
libtool: install: ranlib /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_virtual_plugin.a
libtool: warning: remember to run 'libtool --finish /usr/local/lib/dovecot'
Making install in welcome
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
 /bin/sh ../../../libtool   --mode=install /usr/bin/install -c -s  lib99_welcome_plugin.la '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
libtool: install: /usr/bin/install -c .libs/lib99_welcome_plugin.so /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib99_welcome_plugin.so
libtool: install: strip --strip-unneeded /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib99_welcome_plugin.so
libtool: install: /usr/bin/install -c .libs/lib99_welcome_plugin.lai /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib99_welcome_plugin.la
libtool: install: /usr/bin/install -c .libs/lib99_welcome_plugin.a /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib99_welcome_plugin.a
libtool: install: strip --strip-debug /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib99_welcome_plugin.a
libtool: install: chmod 644 /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib99_welcome_plugin.a
libtool: install: ranlib /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib99_welcome_plugin.a
libtool: warning: remember to run 'libtool --finish /usr/local/lib/dovecot'
Making install in zlib
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
 /bin/sh ../../../libtool   --mode=install /usr/bin/install -c -s  lib20_zlib_plugin.la '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
libtool: install: /usr/bin/install -c .libs/lib20_zlib_plugin.so /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_zlib_plugin.so
libtool: install: strip --strip-unneeded /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_zlib_plugin.so
libtool: install: /usr/bin/install -c .libs/lib20_zlib_plugin.lai /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_zlib_plugin.la
libtool: install: /usr/bin/install -c .libs/lib20_zlib_plugin.a /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_zlib_plugin.a
libtool: install: strip --strip-debug /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_zlib_plugin.a
libtool: install: chmod 644 /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_zlib_plugin.a
libtool: install: ranlib /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_zlib_plugin.a
ranlib: warning: can't find .strtab section
ranlib: warning: can't find .strtab section
libtool: warning: remember to run 'libtool --finish /usr/local/lib/dovecot'
Making install in imap-zlib
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
 /bin/sh ../../../libtool   --mode=install /usr/bin/install -c -s  lib30_imap_zlib_plugin.la '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
libtool: install: /usr/bin/install -c .libs/lib30_imap_zlib_plugin.so /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib30_imap_zlib_plugin.so
libtool: install: strip --strip-unneeded /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib30_imap_zlib_plugin.so
libtool: install: /usr/bin/install -c .libs/lib30_imap_zlib_plugin.lai /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib30_imap_zlib_plugin.la
libtool: install: /usr/bin/install -c .libs/lib30_imap_zlib_plugin.a /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib30_imap_zlib_plugin.a
libtool: install: strip --strip-debug /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib30_imap_zlib_plugin.a
libtool: install: chmod 644 /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib30_imap_zlib_plugin.a
libtool: install: ranlib /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib30_imap_zlib_plugin.a
ranlib: warning: can't find .strtab section
ranlib: warning: can't find .strtab section
libtool: warning: remember to run 'libtool --finish /usr/local/lib/dovecot'
Making install in fs-compress
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
 /bin/sh ../../../libtool   --mode=install /usr/bin/install -c -s  libfs_compress.la '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
libtool: warning: relinking 'libfs_compress.la'
libtool: install: (cd /usr/ports/mail/dovecot/work/dovecot-2.3.21/src/plugins/fs-compress; /bin/sh "/usr/ports/mail/dovecot/work/dovecot-2.3.21/libtool"  --tag CC --mode=relink 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 -mfunction-return=keep -Wall -W -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 libfs_compress.la -rpath /usr/local/lib/dovecot fs-compress.lo ../../lib-compression/libdovecot-compression.la -inst-prefix-dir /usr/ports/mail/dovecot/work/stage)
libtool: relink: cc -shared  -fPIC -DPIC  .libs/fs-compress.o   -Wl,-rpath -Wl,/usr/local/lib/dovecot -L/usr/local/lib ../../lib-compression/.libs/libdovecot-compression.so  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,libfs_compress.so -o .libs/libfs_compress.so
libtool: install: /usr/bin/install -c .libs/libfs_compress.soT /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libfs_compress.so
libtool: install: strip --strip-unneeded /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libfs_compress.so
libtool: install: /usr/bin/install -c .libs/libfs_compress.lai /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libfs_compress.la
libtool: install: /usr/bin/install -c .libs/libfs_compress.a /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libfs_compress.a
libtool: install: strip --strip-debug /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libfs_compress.a
libtool: install: chmod 644 /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libfs_compress.a
libtool: install: ranlib /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/libfs_compress.a
libtool: warning: remember to run 'libtool --finish /usr/local/lib/dovecot'
Making install in var-expand-crypt
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/auth'
 /bin/sh ../../../libtool   --mode=install /usr/bin/install -c -s  lib20_auth_var_expand_crypt.la '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/auth'
libtool: install: /usr/bin/install -c .libs/lib20_auth_var_expand_crypt.so /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/auth/lib20_auth_var_expand_crypt.so
libtool: install: strip --strip-unneeded /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/auth/lib20_auth_var_expand_crypt.so
libtool: install: /usr/bin/install -c .libs/lib20_auth_var_expand_crypt.lai /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/auth/lib20_auth_var_expand_crypt.la
libtool: install: /usr/bin/install -c .libs/lib20_auth_var_expand_crypt.a /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/auth/lib20_auth_var_expand_crypt.a
libtool: install: strip --strip-debug /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/auth/lib20_auth_var_expand_crypt.a
libtool: install: chmod 644 /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/auth/lib20_auth_var_expand_crypt.a
libtool: install: ranlib /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/auth/lib20_auth_var_expand_crypt.a
libtool: warning: remember to run 'libtool --finish /usr/local/lib/dovecot/auth'
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
 /bin/sh ../../../libtool   --mode=install /usr/bin/install -c -s  lib20_var_expand_crypt.la '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
libtool: install: /usr/bin/install -c .libs/lib20_var_expand_crypt.so /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_var_expand_crypt.so
libtool: install: strip --strip-unneeded /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_var_expand_crypt.so
libtool: install: /usr/bin/install -c .libs/lib20_var_expand_crypt.lai /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_var_expand_crypt.la
libtool: install: /usr/bin/install -c .libs/lib20_var_expand_crypt.a /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_var_expand_crypt.a
libtool: install: strip --strip-debug /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_var_expand_crypt.a
libtool: install: chmod 644 /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_var_expand_crypt.a
libtool: install: ranlib /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_var_expand_crypt.a
libtool: warning: remember to run 'libtool --finish /usr/local/lib/dovecot'
Making install in charset-alias
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
 /bin/sh ../../../libtool   --mode=install /usr/bin/install -c -s  lib20_charset_alias_plugin.la '/usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot'
libtool: install: /usr/bin/install -c .libs/lib20_charset_alias_plugin.so /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_charset_alias_plugin.so
libtool: install: strip --strip-unneeded /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_charset_alias_plugin.so
libtool: install: /usr/bin/install -c .libs/lib20_charset_alias_plugin.lai /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_charset_alias_plugin.la
libtool: install: /usr/bin/install -c .libs/lib20_charset_alias_plugin.a /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_charset_alias_plugin.a
libtool: install: strip --strip-debug /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_charset_alias_plugin.a
libtool: install: chmod 644 /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_charset_alias_plugin.a
libtool: install: ranlib /usr/ports/mail/dovecot/work/stage/usr/local/lib/dovecot/lib20_charset_alias_plugin.a
libtool: warning: remember to run 'libtool --finish /usr/local/lib/dovecot'
Making install in doc
Making install in man
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/share/man/man1'
 install  -m 0644 deliver.1 doveadm-backup.1 doveadm-config.1 doveadm-copy.1 doveadm-reload.1 doveadm-stop.1 dsync.1 doveadm.1 doveadm-acl.1 doveadm-altmove.1 doveadm-auth.1 doveadm-batch.1 doveadm-deduplicate.1 doveadm-director.1 doveadm-dump.1 doveadm-exec.1 doveadm-expunge.1 doveadm-fetch.1 doveadm-flags.1 doveadm-fs.1 doveadm-fts.1 doveadm-import.1 doveadm-instance.1 doveadm-index.1 doveadm-force-resync.1 doveadm-help.1 doveadm-kick.1 doveadm-log.1 doveadm-mailbox.1 doveadm-mailbox-cryptokey.1 doveadm-move.1 doveadm-penalty.1 doveadm-proxy.1 doveadm-purge.1 doveadm-pw.1 doveadm-quota.1 doveadm-rebuild.1 doveadm-replicator.1 doveadm-save.1 doveadm-search.1 '/usr/ports/mail/dovecot/work/stage/usr/local/share/man/man1'
 install  -m 0644 doveadm-stats.1 doveadm-sync.1 doveadm-user.1 doveadm-who.1 doveconf.1 dovecot.1 dovecot-lda.1 dovecot-sysreport.1 '/usr/ports/mail/dovecot/work/stage/usr/local/share/man/man1'
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/share/man/man7'
 install  -m 0644 doveadm-search-query.7 '/usr/ports/mail/dovecot/work/stage/usr/local/share/man/man7'
Making install in wiki
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/share/doc/dovecot/wiki'
 install  -m 0644 ACL.txt AixPluginsSupport.txt AttachmentIndicator.txt AuthDatabase.CheckPassword.txt AuthDatabase.Dict.txt AuthDatabase.LDAP.AuthBinds.txt AuthDatabase.LDAP.PasswordLookups.txt AuthDatabase.LDAP.Userdb.txt AuthDatabase.LDAP.txt AuthDatabase.Lua.txt AuthDatabase.Passwd.txt AuthDatabase.PasswdFile.txt AuthDatabase.SQL.txt AuthDatabase.VPopMail.txt AuthDatabase.txt Authentication.Caching.txt Authentication.Kerberos.txt Authentication.MasterUsers.txt Authentication.Mechanisms.DigestMD5.txt Authentication.Mechanisms.NTLM.txt Authentication.Mechanisms.Winbind.txt Authentication.Mechanisms.txt Authentication.MultipleDatabases.txt Authentication.PasswordSchemes.txt Authentication.Penalty.txt Authentication.Policy.txt Authentication.RestrictAccess.txt Authentication.txt BasicConfiguration.txt Chrooting.txt Clients.NegativeUIDs.txt Clients.txt CompilingSource.txt ConfigFile.txt Debugging.Authentication.txt Debugging.ProcessTracing.txt Debugging.Rawlog.txt Debugging.Thunderbird.txt Design.Arrays.txt Design.AuthProcess.txt '/usr/ports/mail/dovecot/work/stage/usr/local/share/doc/dovecot/wiki'
 install  -m 0644 Design.AuthProtocol.txt Design.Buffers.txt Design.Code.txt Design.Dcrypt.txt Design.DoveadmProtocol.HTTP.txt Design.DoveadmProtocol.txt Design.Dsync.txt Design.Events.txt Design.Indexes.Cache.txt Design.Indexes.MailIndexApi.txt Design.Indexes.MainIndex.txt Design.Indexes.TransactionLog.txt Design.Indexes.txt Design.InputStreams.txt Design.Lua.txt Design.MailProcess.txt Design.Memory.txt Design.OutputStreams.txt Design.ParameterForwarding.txt Design.Plugins.txt Design.Processes.txt Design.Storage.ErrorHandling.txt Design.Storage.Mail.txt Design.Storage.MailNamespace.txt Design.Storage.MailStorage.txt Design.Storage.MailUser.txt Design.Storage.Mailbox.Save.txt Design.Storage.Mailbox.Search.txt Design.Storage.Mailbox.Sync.txt Design.Storage.Mailbox.Transaction.txt Design.Storage.Mailbox.txt Design.Storage.MailboxList.txt Design.Storage.Plugins.txt Design.Strings.txt Design.txt Dict.txt Dictionary.txt Director.txt DomainLost.txt Errors.ChgrpNoPerm.txt '/usr/ports/mail/dovecot/work/stage/usr/local/share/doc/dovecot/wiki'
 install  -m 0644 Events.txt FindMailLocation.txt FinishBasicConfiguration.txt HAProxy.txt HowTo.AntispamWithSieve.txt HowTo.EximAndDovecotSASL.txt HowTo.ImapcProxy.txt HowTo.PopBSMTPAndDovecot.txt HowTo.PopRelay.txt HowTo.PostfixAndDovecotSASL.txt HowTo.Rootless.txt HowTo.SimpleVirtualInstall.txt HowTo.WriteConfiguration.txt HowTo.txt IMAPServer.Hibernation.txt IMAPServer.txt ImapMetadata.txt IndexFiles.txt LDA.Exim.txt LDA.Indexing.txt LDA.Postfix.txt LDA.Qmail.txt LDA.Sendmail.txt LDA.txt LMTP.Exim.txt LMTP.txt Logging.txt LoginProcess.txt MDA.txt MTA.txt MailLocation.LocalDisk.txt MailLocation.Maildir.txt MailLocation.SharedDisk.txt MailLocation.dbox.txt MailLocation.mbox.txt MailLocation.txt MailboxFormat.Cydir.txt MailboxFormat.MH.txt MailboxFormat.Maildir.txt MailboxFormat.dbox.txt '/usr/ports/mail/dovecot/work/stage/usr/local/share/doc/dovecot/wiki'
 install  -m 0644 MailboxFormat.imapc.txt MailboxFormat.mailstore.txt MailboxFormat.mbox.txt MailboxFormat.mbx.txt MailboxFormat.txt MailboxSettings.txt MboxChildFolders.txt MboxLocking.txt MboxProblems.txt Migration.BincIMAP.txt Migration.Courier.txt Migration.Cyrus.txt Migration.Dsync.txt Migration.Gmail.txt Migration.Linuxconf.txt Migration.MailFormat.txt Migration.Online.txt Migration.Teapop.txt Migration.UW.txt Migration.Vm-pop3d.txt Migration.txt MissingMailboxes.txt Mountpoints.txt NFS.txt Namespaces.txt OSCompatibility.txt POP3Server.txt PasswordDatabase.BSDAuth.txt PasswordDatabase.ExtraFields.AllowNets.txt PasswordDatabase.ExtraFields.Host.txt PasswordDatabase.ExtraFields.NoDelay.txt PasswordDatabase.ExtraFields.NoLogin.txt PasswordDatabase.ExtraFields.Proxy.txt PasswordDatabase.ExtraFields.User.txt PasswordDatabase.ExtraFields.txt PasswordDatabase.IMAP.txt PasswordDatabase.PAM.txt PasswordDatabase.Shadow.txt PasswordDatabase.Static.txt PasswordDatabase.oauth2.txt '/usr/ports/mail/dovecot/work/stage/usr/local/share/doc/dovecot/wiki'
 install  -m 0644 PasswordDatabase.txt PerformanceTuning.txt Pigeonhole.Installation.txt Pigeonhole.ManageSieve.Clients.txt Pigeonhole.ManageSieve.Configuration.txt Pigeonhole.ManageSieve.Install.txt Pigeonhole.ManageSieve.Troubleshooting.txt Pigeonhole.ManageSieve.txt Pigeonhole.Sieve.Configuration.Dict.txt Pigeonhole.Sieve.Configuration.File.txt Pigeonhole.Sieve.Configuration.LDAP.txt Pigeonhole.Sieve.Configuration.txt Pigeonhole.Sieve.Examples.txt Pigeonhole.Sieve.Extensions.Duplicate.txt Pigeonhole.Sieve.Extensions.Editheader.txt Pigeonhole.Sieve.Extensions.Include.txt Pigeonhole.Sieve.Extensions.SpamtestVirustest.txt Pigeonhole.Sieve.Extensions.Vacation.txt Pigeonhole.Sieve.Extensions.Variables.txt Pigeonhole.Sieve.Extensions.txt Pigeonhole.Sieve.Plugins.Extdata.txt Pigeonhole.Sieve.Plugins.Extprograms.txt Pigeonhole.Sieve.Plugins.IMAPFilterSieve.txt Pigeonhole.Sieve.Plugins.IMAPSieve.txt Pigeonhole.Sieve.Plugins.Pipe.txt Pigeonhole.Sieve.Plugins.txt Pigeonhole.Sieve.Troubleshooting.txt Pigeonhole.Sieve.Usage.txt Pigeonhole.Sieve.txt Pigeonhole.txt Plugins.Apparmor.txt Plugins.Autocreate.txt Plugins.CharsetAlias.txt Plugins.Compress.txt Plugins.Expire.txt Plugins.FTS.Lucene.txt Plugins.FTS.Solr.txt Plugins.FTS.Squat.txt Plugins.FTS.txt Plugins.LastLogin.txt '/usr/ports/mail/dovecot/work/stage/usr/local/share/doc/dovecot/wiki'
 install  -m 0644 Plugins.Lazyexpunge.txt Plugins.Listescape.txt Plugins.MailCrypt.txt Plugins.MailFilter.txt Plugins.MailLog.txt Plugins.MailboxAlias.txt Plugins.Notify.txt Plugins.NotifyStatus.txt Plugins.PushNotification.txt Plugins.QuotaClone.txt Plugins.Snarf.txt Plugins.Stats.txt Plugins.Trash.txt Plugins.VarExpandCrypt.txt Plugins.Virtual.txt Plugins.Welcome.txt Plugins.Zlib.txt Plugins.txt PostLoginScripting.txt PreAuth.txt QuickConfiguration.txt Quota.Configuration.txt Quota.Count.txt Quota.Dict.txt Quota.Dirsize.txt Quota.FS.txt Quota.Maildir.txt Quota.txt Replication.txt RunningDovecot.txt SSL.CertificateClientImporting.txt SSL.CertificateCreation.txt SSL.DovecotConfiguration.txt SSL.SNIClientSupport.txt SSL.txt Sasl.txt SecurityTuning.txt Services.txt SharedMailboxes.ClusterSetup.txt SharedMailboxes.Permissions.txt '/usr/ports/mail/dovecot/work/stage/usr/local/share/doc/dovecot/wiki'
 install  -m 0644 SharedMailboxes.Public.txt SharedMailboxes.Shared.txt SharedMailboxes.Symlinks.txt SharedMailboxes.txt SocketUnavailable.txt Statistics.Old.txt Statistics.txt Submission.txt SystemUsers.txt TestInstallation.txt TestPop3Installation.txt TimeMovedBackwards.txt Timeouts.txt Upgrading.1.0.txt Upgrading.1.1.txt Upgrading.1.2.txt Upgrading.2.0.txt Upgrading.2.1.txt Upgrading.2.2.txt Upgrading.2.3.txt Upgrading.txt UserDatabase.ExtraFields.txt UserDatabase.NSS.txt UserDatabase.Prefetch.txt UserDatabase.Static.txt UserDatabase.txt UserIds.txt Variables.txt VirtualUsers.Home.txt VirtualUsers.txt WhyDoesItNotWork.txt maildrop.txt mutt.txt uw2dovecot.sh.txt '/usr/ports/mail/dovecot/work/stage/usr/local/share/doc/dovecot/wiki'
Making install in example-config
Making install in conf.d
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/etc/dovecot/example-config/conf.d'
 install  -m 0644 auth-checkpassword.conf.ext auth-deny.conf.ext auth-dict.conf.ext auth-ldap.conf.ext auth-master.conf.ext auth-passwdfile.conf.ext auth-sql.conf.ext auth-static.conf.ext auth-system.conf.ext 10-auth.conf 10-director.conf 10-logging.conf 10-mail.conf 10-master.conf 10-metrics.conf 10-ssl.conf 15-lda.conf 15-mailboxes.conf 20-imap.conf 20-lmtp.conf 20-pop3.conf 20-submission.conf 90-acl.conf 90-plugin.conf 90-quota.conf '/usr/ports/mail/dovecot/work/stage/usr/local/etc/dovecot/example-config/conf.d'
/bin/mkdir -p /usr/ports/mail/dovecot/work/stage//usr/local/etc/dovecot
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/etc/dovecot/example-config'
 install  -m 0644 dovecot.conf dovecot-dict-auth.conf.ext dovecot-dict-sql.conf.ext dovecot-ldap.conf.ext dovecot-oauth2.conf.ext dovecot-sql.conf.ext '/usr/ports/mail/dovecot/work/stage/usr/local/etc/dovecot/example-config'
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/etc/dovecot'
 install  -m 0644 README '/usr/ports/mail/dovecot/work/stage/usr/local/etc/dovecot'
 /bin/mkdir -p '/usr/ports/mail/dovecot/work/stage/usr/local/share/doc/dovecot'
 install  -m 0644 documentation.txt securecoding.txt thread-refs.txt mkcert.sh dovecot-openssl.cnf solr-schema.xml solr-schema-7.7.0.xml solr-config-7.7.0.xml '/usr/ports/mail/dovecot/work/stage/usr/local/share/doc/dovecot'
/bin/mv /usr/ports/mail/dovecot/work/stage/usr/local/share/doc/dovecot/dovecot-openssl.cnf /usr/ports/mail/dovecot/work/stage/usr/local/share/examples/dovecot
/bin/mv /usr/ports/mail/dovecot/work/stage/usr/local/share/doc/dovecot/mkcert.sh /usr/ports/mail/dovecot/work/stage/usr/local/share/examples/dovecot
(cd /usr/ports/mail/dovecot/work/dovecot-2.3.21 && install  -m 0644 AUTHORS COPYING INSTALL NEWS TODO README /usr/ports/mail/dovecot/work/stage/usr/local/share/doc/dovecot)
====> Compressing man pages (compress-man)
===> Staging rc.d startup script(s)
===>   Installing ldconfig configuration file
===>  Installing for dovecot-2.3.21_4
===>  Checking if dovecot is already installed
===>   Registering installation for dovecot-2.3.21_4
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] Installing dovecot-2.3.21_4...
===> Creating groups.
Creating group 'dovecot' with gid '143'.
Creating group 'dovenull' with gid '144'.
===> Creating users
Creating user 'dovecot' with uid '143'.
Creating user 'dovenull' with uid '144'.
 You must create the configuration files yourself. Copy them over
 to /usr/local/etc/dovecot and edit them as desired:

 	cp -R /usr/local/etc/dovecot/example-config/* \
 		/usr/local/etc/dovecot

 The default configuration includes IMAP and POP3 services, will
 authenticate users agains the system's passwd file, and will use
 the default /var/mail/$USER mbox files.

 Next, enable dovecot in /etc/rc.conf:

 	dovecot_enable="YES"


 To avoid a risk of mailbox corruption, do not set the
 security.bsd.see_other_uids or .see_other_gids sysctls to 0
 if Dovecot is storing mail for multiple concurrent users (PR 218392).

 Similarly, setting sysctls security.bsd.hardlink_check_uid or
 security.bsd.hardlink_check_gid to 1 might result in non-working
 mailboxes, depending on what mailbox locking mechanism is used
 (PR 242223).

 If you want to be able to search within attachments using the
 decode2text plugin, you'll need to install textproc/catdoc, and
 one of graphics/xpdf or graphics/poppler-utils.


 There are some potentially breaking changes in Dovecot 2.3. If you
 are upgrading from Dovecot 2.2:
 
   * Read https://wiki2.dovecot.org/Upgrading/2.3
   * Merge the configuration file changes from
     /usr/local/etc/dovecot/examples-config/

===> SECURITY REPORT: 
      This port has installed the following files which may act as network
      servers and may therefore pose a remote security risk to the system.
/usr/local/lib/dovecot/libdovecot.so.0.0.0
/usr/local/lib/dovecot/libdovecot.a(net.o)

      If there are vulnerabilities in these programs there may be a security
      risk to the system. FreeBSD makes no guarantee about the security of
      ports included in the Ports Collection. Please type 'make deinstall'
      to deinstall the port if this is a concern.

      For more information, and contact details about the security
      status of this software, see the following webpage: 
https://www.dovecot.org/
===>  Cleaning for dovecot-2.3.21_4
Step 57: Port build dovecot-pigeonhole
===>  License LGPL21 accepted by the user
===>   dovecot-pigeonhole-0.5.21_2 depends on file: /usr/local/sbin/pkg - found
=> dovecot-2.3-pigeonhole-0.5.21.tar.gz doesn't seem to exist in /usr/ports/distfiles/.
=> Attempting to fetch http://pigeonhole.dovecot.org/releases/2.3/dovecot-2.3-pigeonhole-0.5.21.tar.gz
dovecot-2.3-pigeonhole-0.5.21.tar.gz                  1910 kB 1561 kBps    01s
===> Fetching all distfiles required by dovecot-pigeonhole-0.5.21_2 for building
===>  Extracting for dovecot-pigeonhole-0.5.21_2
=> SHA256 Checksum OK for dovecot-2.3-pigeonhole-0.5.21.tar.gz.
===>  Patching for dovecot-pigeonhole-0.5.21_2
===>  Applying FreeBSD patches for dovecot-pigeonhole-0.5.21_2 from /usr/ports/mail/dovecot-pigeonhole/files
===>   dovecot-pigeonhole-0.5.21_2 depends on package: dovecot>=2.3.9 - found
===>   dovecot-pigeonhole-0.5.21_2 depends on file: /usr/local/lib/libcrypto.so.12 - found
===>   dovecot-pigeonhole-0.5.21_2 depends on shared library: libldap.so.2 - found (/usr/local/lib/libldap.so.2)
===>  Configuring for dovecot-pigeonhole-0.5.21_2
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 UID '0' is supported by ustar format... yes
checking whether GID '0' is supported by ustar format... yes
checking how to create a ustar tar archive... (cached) /usr/bin/tar
checking whether to enable maintainer-specific portions of Makefiles... no
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 whether make supports the include directive... yes (GNU style)
checking dependency style of cc... gcc3
checking how to run the C preprocessor... cpp
checking build system type... amd64-portbld-freebsd14.0
checking host system type... amd64-portbld-freebsd14.0
checking how to print strings... printf
checking for a sed that does not truncate output... (cached) /usr/bin/sed
checking for grep that handles long lines and -e... (cached) /usr/bin/grep
checking for egrep... (cached) /usr/bin/egrep
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-freebsd14.0 file names to amd64-portbld-freebsd14.0 format... func_convert_file_noop
checking how to convert amd64-portbld-freebsd14.0 file names to toolchain format... func_convert_file_noop
checking for /usr/bin/ld option to reload object files... -r
checking for objdump... objdump
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 ANSI C header files... (cached) yes
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... freebsd14.0 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 whether C compiler handles -Werror -Wunknown-warning-option... yes
checking for "/usr/local/lib/dovecot/dovecot-config"... /usr/local/lib/dovecot/dovecot-config
checking whether cc is clang 3.3+... yes
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... yes
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 whether OS supports plugin dependencies... yes
checking for valgrind... reject
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 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/example-config/Makefile
config.status: creating doc/example-config/conf.d/Makefile
config.status: creating doc/rfc/Makefile
config.status: creating doc/extensions/Makefile
config.status: creating doc/locations/Makefile
config.status: creating doc/plugins/Makefile
config.status: creating src/Makefile
config.status: creating src/lib-sieve/Makefile
config.status: creating src/lib-sieve/util/Makefile
config.status: creating src/lib-sieve/storage/Makefile
config.status: creating src/lib-sieve/storage/data/Makefile
config.status: creating src/lib-sieve/storage/file/Makefile
config.status: creating src/lib-sieve/storage/dict/Makefile
config.status: creating src/lib-sieve/storage/ldap/Makefile
config.status: creating src/lib-sieve/plugins/Makefile
config.status: creating src/lib-sieve/plugins/vacation/Makefile
config.status: creating src/lib-sieve/plugins/subaddress/Makefile
config.status: creating src/lib-sieve/plugins/comparator-i-ascii-numeric/Makefile
config.status: creating src/lib-sieve/plugins/relational/Makefile
config.status: creating src/lib-sieve/plugins/regex/Makefile
config.status: creating src/lib-sieve/plugins/imap4flags/Makefile
config.status: creating src/lib-sieve/plugins/copy/Makefile
config.status: creating src/lib-sieve/plugins/include/Makefile
config.status: creating src/lib-sieve/plugins/body/Makefile
config.status: creating src/lib-sieve/plugins/variables/Makefile
config.status: creating src/lib-sieve/plugins/enotify/Makefile
config.status: creating src/lib-sieve/plugins/enotify/mailto/Makefile
config.status: creating src/lib-sieve/plugins/notify/Makefile
config.status: creating src/lib-sieve/plugins/environment/Makefile
config.status: creating src/lib-sieve/plugins/mailbox/Makefile
config.status: creating src/lib-sieve/plugins/date/Makefile
config.status: creating src/lib-sieve/plugins/spamvirustest/Makefile
config.status: creating src/lib-sieve/plugins/ihave/Makefile
config.status: creating src/lib-sieve/plugins/editheader/Makefile
config.status: creating src/lib-sieve/plugins/metadata/Makefile
config.status: creating src/lib-sieve/plugins/duplicate/Makefile
config.status: creating src/lib-sieve/plugins/index/Makefile
config.status: creating src/lib-sieve/plugins/mime/Makefile
config.status: creating src/lib-sieve/plugins/special-use/Makefile
config.status: creating src/lib-sieve/plugins/vnd.dovecot/Makefile
config.status: creating src/lib-sieve/plugins/vnd.dovecot/debug/Makefile
config.status: creating src/lib-sieve/plugins/vnd.dovecot/environment/Makefile
config.status: creating src/lib-sieve/plugins/vnd.dovecot/report/Makefile
config.status: creating src/lib-sieve-tool/Makefile
config.status: creating src/lib-managesieve/Makefile
config.status: creating src/plugins/Makefile
config.status: creating src/plugins/doveadm-sieve/Makefile
config.status: creating src/plugins/lda-sieve/Makefile
config.status: creating src/plugins/sieve-extprograms/Makefile
config.status: creating src/plugins/imapsieve/Makefile
config.status: creating src/plugins/imap-filter-sieve/Makefile
config.status: creating src/plugins/settings/Makefile
config.status: creating src/sieve-tools/Makefile
config.status: creating src/managesieve/Makefile
config.status: creating src/managesieve-login/Makefile
config.status: creating src/testsuite/Makefile
config.status: creating stamp.h
config.status: creating dummy-config.h
config.status: creating pigeonhole-config.h
config.status: executing depfiles commands
config.status: executing libtool commands

Install prefix . : /usr/local
script drivers . : file dict ldap
===>  Building for dovecot-pigeonhole-0.5.21_2
--- all ---
/usr/bin/make  all-recursive
--- all-recursive ---
Making all in .
--- pigeonhole-version.h ---
/bin/sh ./update-version.sh . .
Making all in src
--- all-recursive ---
Making all in lib-sieve
--- all-recursive ---
Making all in util
--- test-edit-mail.o ---
--- test-rfc2822.o ---
--- mail-raw.lo ---
--- edit-mail.lo ---
--- test-edit-mail.o ---
cc -DHAVE_CONFIG_H -I. -I../../..  -I/usr/local/include/dovecot    -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -I/usr/local/include  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT test-edit-mail.o -MD -MP -MF .deps/test-edit-mail.Tpo -c -o test-edit-mail.o test-edit-mail.c
--- mail-raw.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I/usr/local/include/dovecot    -DMODULEDIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT mail-raw.lo -MD -MP -MF .deps/mail-raw.Tpo -c -o mail-raw.lo mail-raw.c
--- test-rfc2822.o ---
cc -DHAVE_CONFIG_H -I. -I../../..  -I/usr/local/include/dovecot    -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -I/usr/local/include  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT test-rfc2822.o -MD -MP -MF .deps/test-rfc2822.Tpo -c -o test-rfc2822.o test-rfc2822.c
--- edit-mail.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I/usr/local/include/dovecot    -DMODULEDIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT edit-mail.lo -MD -MP -MF .deps/edit-mail.Tpo -c -o edit-mail.lo edit-mail.c
--- mail-raw.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I/usr/local/include/dovecot -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT mail-raw.lo -MD -MP -MF .deps/mail-raw.Tpo -c mail-raw.c  -fPIC -DPIC -o .libs/mail-raw.o
--- edit-mail.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I/usr/local/include/dovecot -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT edit-mail.lo -MD -MP -MF .deps/edit-mail.Tpo -c edit-mail.c  -fPIC -DPIC -o .libs/edit-mail.o
--- test-rfc2822.o ---
mv -f .deps/test-rfc2822.Tpo .deps/test-rfc2822.Po
--- rfc2822.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I/usr/local/include/dovecot    -DMODULEDIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT rfc2822.lo -MD -MP -MF .deps/rfc2822.Tpo -c -o rfc2822.lo rfc2822.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I/usr/local/include/dovecot -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT rfc2822.lo -MD -MP -MF .deps/rfc2822.Tpo -c rfc2822.c  -fPIC -DPIC -o .libs/rfc2822.o
--- mail-raw.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I/usr/local/include/dovecot -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT mail-raw.lo -MD -MP -MF .deps/mail-raw.Tpo -c mail-raw.c -o mail-raw.o >/dev/null 2>&1
--- test-edit-mail.o ---
mv -f .deps/test-edit-mail.Tpo .deps/test-edit-mail.Po
--- rfc2822.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I/usr/local/include/dovecot -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT rfc2822.lo -MD -MP -MF .deps/rfc2822.Tpo -c rfc2822.c -o rfc2822.o >/dev/null 2>&1
--- mail-raw.lo ---
mv -f .deps/mail-raw.Tpo .deps/mail-raw.Plo
--- rfc2822.lo ---
mv -f .deps/rfc2822.Tpo .deps/rfc2822.Plo
--- edit-mail.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I/usr/local/include/dovecot -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT edit-mail.lo -MD -MP -MF .deps/edit-mail.Tpo -c edit-mail.c -o edit-mail.o >/dev/null 2>&1
mv -f .deps/edit-mail.Tpo .deps/edit-mail.Plo
--- libsieve_util.la ---
/bin/sh ../../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../..   -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o libsieve_util.la  mail-raw.lo edit-mail.lo rfc2822.lo  
libtool: link: ar cr .libs/libsieve_util.a .libs/mail-raw.o .libs/edit-mail.o .libs/rfc2822.o 
libtool: link: ranlib .libs/libsieve_util.a
libtool: link: ( cd ".libs" && rm -f "libsieve_util.la" && ln -s "../libsieve_util.la" "libsieve_util.la" )
--- test-edit-mail ---
--- test-rfc2822 ---
--- test-edit-mail ---
/bin/sh ../../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../..   -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o test-edit-mail test-edit-mail.o libsieve_util.la  -ldovecot-storage  -L/usr/local/lib/dovecot -ldovecot 
--- test-rfc2822 ---
/bin/sh ../../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../..   -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o test-rfc2822 test-rfc2822.o libsieve_util.la  -ldovecot-storage  -L/usr/local/lib/dovecot -ldovecot 
--- test-edit-mail ---
libtool: link: cc -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o test-edit-mail test-edit-mail.o  -L/usr/local/lib ./.libs/libsieve_util.a -ldovecot-storage -L/usr/local/lib/dovecot -ldovecot
--- test-rfc2822 ---
libtool: link: cc -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o test-rfc2822 test-rfc2822.o  -L/usr/local/lib ./.libs/libsieve_util.a -ldovecot-storage -L/usr/local/lib/dovecot -ldovecot
Making all in storage
--- all-recursive ---
Making all in data
--- sieve-data-script.lo ---
--- sieve-data-storage.lo ---
--- sieve-data-script.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I/usr/local/include/dovecot  -I../../../..  -I../../../../src/lib-sieve -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT sieve-data-script.lo -MD -MP -MF .deps/sieve-data-script.Tpo -c -o sieve-data-script.lo sieve-data-script.c
--- sieve-data-storage.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I/usr/local/include/dovecot  -I../../../..  -I../../../../src/lib-sieve -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT sieve-data-storage.lo -MD -MP -MF .deps/sieve-data-storage.Tpo -c -o sieve-data-storage.lo sieve-data-storage.c
--- sieve-data-script.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I/usr/local/include/dovecot -I../../../.. -I../../../../src/lib-sieve -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT sieve-data-script.lo -MD -MP -MF .deps/sieve-data-script.Tpo -c sieve-data-script.c  -fPIC -DPIC -o .libs/sieve-data-script.o
--- sieve-data-storage.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I/usr/local/include/dovecot -I../../../.. -I../../../../src/lib-sieve -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT sieve-data-storage.lo -MD -MP -MF .deps/sieve-data-storage.Tpo -c sieve-data-storage.c  -fPIC -DPIC -o .libs/sieve-data-storage.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I/usr/local/include/dovecot -I../../../.. -I../../../../src/lib-sieve -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT sieve-data-storage.lo -MD -MP -MF .deps/sieve-data-storage.Tpo -c sieve-data-storage.c -o sieve-data-storage.o >/dev/null 2>&1
--- sieve-data-script.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I/usr/local/include/dovecot -I../../../.. -I../../../../src/lib-sieve -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT sieve-data-script.lo -MD -MP -MF .deps/sieve-data-script.Tpo -c sieve-data-script.c -o sieve-data-script.o >/dev/null 2>&1
--- sieve-data-storage.lo ---
mv -f .deps/sieve-data-storage.Tpo .deps/sieve-data-storage.Plo
--- sieve-data-script.lo ---
mv -f .deps/sieve-data-script.Tpo .deps/sieve-data-script.Plo
--- libsieve_storage_data.la ---
/bin/sh ../../../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../..   -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o libsieve_storage_data.la  sieve-data-script.lo  sieve-data-storage.lo  
libtool: link: ar cr .libs/libsieve_storage_data.a .libs/sieve-data-script.o .libs/sieve-data-storage.o 
libtool: link: ranlib .libs/libsieve_storage_data.a
libtool: link: ( cd ".libs" && rm -f "libsieve_storage_data.la" && ln -s "../libsieve_storage_data.la" "libsieve_storage_data.la" )
Making all in file
--- sieve-file-script.lo ---
--- sieve-file-script-sequence.lo ---
--- sieve-file-storage-active.lo ---
--- sieve-file-storage-save.lo ---
--- sieve-file-script.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I/usr/local/include/dovecot  -I../../../..  -I../../../../src/lib-sieve  -I../../../../src/lib-sieve/util -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT sieve-file-script.lo -MD -MP -MF .deps/sieve-file-script.Tpo -c -o sieve-file-script.lo sieve-file-script.c
--- sieve-file-script-sequence.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I/usr/local/include/dovecot  -I../../../..  -I../../../../src/lib-sieve  -I../../../../src/lib-sieve/util -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT sieve-file-script-sequence.lo -MD -MP -MF .deps/sieve-file-script-sequence.Tpo -c -o sieve-file-script-sequence.lo sieve-file-script-sequence.c
--- sieve-file-storage-active.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I/usr/local/include/dovecot  -I../../../..  -I../../../../src/lib-sieve  -I../../../../src/lib-sieve/util -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT sieve-file-storage-active.lo -MD -MP -MF .deps/sieve-file-storage-active.Tpo -c -o sieve-file-storage-active.lo sieve-file-storage-active.c
--- sieve-file-storage-save.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I/usr/local/include/dovecot  -I../../../..  -I../../../../src/lib-sieve  -I../../../../src/lib-sieve/util -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT sieve-file-storage-save.lo -MD -MP -MF .deps/sieve-file-storage-save.Tpo -c -o sieve-file-storage-save.lo sieve-file-storage-save.c
--- sieve-file-script.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I/usr/local/include/dovecot -I../../../.. -I../../../../src/lib-sieve -I../../../../src/lib-sieve/util -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT sieve-file-script.lo -MD -MP -MF .deps/sieve-file-script.Tpo -c sieve-file-script.c  -fPIC -DPIC -o .libs/sieve-file-script.o
--- sieve-file-storage-save.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I/usr/local/include/dovecot -I../../../.. -I../../../../src/lib-sieve -I../../../../src/lib-sieve/util -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT sieve-file-storage-save.lo -MD -MP -MF .deps/sieve-file-storage-save.Tpo -c sieve-file-storage-save.c  -fPIC -DPIC -o .libs/sieve-file-storage-save.o
--- sieve-file-storage-active.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I/usr/local/include/dovecot -I../../../.. -I../../../../src/lib-sieve -I../../../../src/lib-sieve/util -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT sieve-file-storage-active.lo -MD -MP -MF .deps/sieve-file-storage-active.Tpo -c sieve-file-storage-active.c  -fPIC -DPIC -o .libs/sieve-file-storage-active.o
--- sieve-file-script-sequence.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I/usr/local/include/dovecot -I../../../.. -I../../../../src/lib-sieve -I../../../../src/lib-sieve/util -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT sieve-file-script-sequence.lo -MD -MP -MF .deps/sieve-file-script-sequence.Tpo -c sieve-file-script-sequence.c  -fPIC -DPIC -o .libs/sieve-file-script-sequence.o
--- sieve-file-storage-active.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I/usr/local/include/dovecot -I../../../.. -I../../../../src/lib-sieve -I../../../../src/lib-sieve/util -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT sieve-file-storage-active.lo -MD -MP -MF .deps/sieve-file-storage-active.Tpo -c sieve-file-storage-active.c -o sieve-file-storage-active.o >/dev/null 2>&1
--- sieve-file-script-sequence.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I/usr/local/include/dovecot -I../../../.. -I../../../../src/lib-sieve -I../../../../src/lib-sieve/util -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT sieve-file-script-sequence.lo -MD -MP -MF .deps/sieve-file-script-sequence.Tpo -c sieve-file-script-sequence.c -o sieve-file-script-sequence.o >/dev/null 2>&1
--- sieve-file-storage-save.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I/usr/local/include/dovecot -I../../../.. -I../../../../src/lib-sieve -I../../../../src/lib-sieve/util -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT sieve-file-storage-save.lo -MD -MP -MF .deps/sieve-file-storage-save.Tpo -c sieve-file-storage-save.c -o sieve-file-storage-save.o >/dev/null 2>&1
--- sieve-file-script.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I/usr/local/include/dovecot -I../../../.. -I../../../../src/lib-sieve -I../../../../src/lib-sieve/util -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT sieve-file-script.lo -MD -MP -MF .deps/sieve-file-script.Tpo -c sieve-file-script.c -o sieve-file-script.o >/dev/null 2>&1
--- sieve-file-storage-active.lo ---
mv -f .deps/sieve-file-storage-active.Tpo .deps/sieve-file-storage-active.Plo
--- sieve-file-storage-list.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I/usr/local/include/dovecot  -I../../../..  -I../../../../src/lib-sieve  -I../../../../src/lib-sieve/util -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT sieve-file-storage-list.lo -MD -MP -MF .deps/sieve-file-storage-list.Tpo -c -o sieve-file-storage-list.lo sieve-file-storage-list.c
--- sieve-file-script-sequence.lo ---
mv -f .deps/sieve-file-script-sequence.Tpo .deps/sieve-file-script-sequence.Plo
--- sieve-file-storage-quota.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I/usr/local/include/dovecot  -I../../../..  -I../../../../src/lib-sieve  -I../../../../src/lib-sieve/util -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT sieve-file-storage-quota.lo -MD -MP -MF .deps/sieve-file-storage-quota.Tpo -c -o sieve-file-storage-quota.lo sieve-file-storage-quota.c
--- sieve-file-storage-list.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I/usr/local/include/dovecot -I../../../.. -I../../../../src/lib-sieve -I../../../../src/lib-sieve/util -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT sieve-file-storage-list.lo -MD -MP -MF .deps/sieve-file-storage-list.Tpo -c sieve-file-storage-list.c  -fPIC -DPIC -o .libs/sieve-file-storage-list.o
--- sieve-file-storage-quota.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I/usr/local/include/dovecot -I../../../.. -I../../../../src/lib-sieve -I../../../../src/lib-sieve/util -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT sieve-file-storage-quota.lo -MD -MP -MF .deps/sieve-file-storage-quota.Tpo -c sieve-file-storage-quota.c  -fPIC -DPIC -o .libs/sieve-file-storage-quota.o
--- sieve-file-storage-save.lo ---
mv -f .deps/sieve-file-storage-save.Tpo .deps/sieve-file-storage-save.Plo
--- sieve-file-storage.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I/usr/local/include/dovecot  -I../../../..  -I../../../../src/lib-sieve  -I../../../../src/lib-sieve/util -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT sieve-file-storage.lo -MD -MP -MF .deps/sieve-file-storage.Tpo -c -o sieve-file-storage.lo sieve-file-storage.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I/usr/local/include/dovecot -I../../../.. -I../../../../src/lib-sieve -I../../../../src/lib-sieve/util -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT sieve-file-storage.lo -MD -MP -MF .deps/sieve-file-storage.Tpo -c sieve-file-storage.c  -fPIC -DPIC -o .libs/sieve-file-storage.o
--- sieve-file-storage-quota.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I/usr/local/include/dovecot -I../../../.. -I../../../../src/lib-sieve -I../../../../src/lib-sieve/util -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT sieve-file-storage-quota.lo -MD -MP -MF .deps/sieve-file-storage-quota.Tpo -c sieve-file-storage-quota.c -o sieve-file-storage-quota.o >/dev/null 2>&1
--- sieve-file-storage-list.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I/usr/local/include/dovecot -I../../../.. -I../../../../src/lib-sieve -I../../../../src/lib-sieve/util -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT sieve-file-storage-list.lo -MD -MP -MF .deps/sieve-file-storage-list.Tpo -c sieve-file-storage-list.c -o sieve-file-storage-list.o >/dev/null 2>&1
--- sieve-file-script.lo ---
mv -f .deps/sieve-file-script.Tpo .deps/sieve-file-script.Plo
--- sieve-file-storage-quota.lo ---
mv -f .deps/sieve-file-storage-quota.Tpo .deps/sieve-file-storage-quota.Plo
--- sieve-file-storage-list.lo ---
mv -f .deps/sieve-file-storage-list.Tpo .deps/sieve-file-storage-list.Plo
--- sieve-file-storage.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I/usr/local/include/dovecot -I../../../.. -I../../../../src/lib-sieve -I../../../../src/lib-sieve/util -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT sieve-file-storage.lo -MD -MP -MF .deps/sieve-file-storage.Tpo -c sieve-file-storage.c -o sieve-file-storage.o >/dev/null 2>&1
mv -f .deps/sieve-file-storage.Tpo .deps/sieve-file-storage.Plo
--- libsieve_storage_file.la ---
/bin/sh ../../../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../..   -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o libsieve_storage_file.la  sieve-file-script.lo  sieve-file-script-sequence.lo sieve-file-storage-active.lo  sieve-file-storage-save.lo sieve-file-storage-list.lo  sieve-file-storage-quota.lo sieve-file-storage.lo  
libtool: link: ar cr .libs/libsieve_storage_file.a .libs/sieve-file-script.o .libs/sieve-file-script-sequence.o .libs/sieve-file-storage-active.o .libs/sieve-file-storage-save.o .libs/sieve-file-storage-list.o .libs/sieve-file-storage-quota.o .libs/sieve-file-storage.o 
libtool: link: ranlib .libs/libsieve_storage_file.a
libtool: link: ( cd ".libs" && rm -f "libsieve_storage_file.la" && ln -s "../libsieve_storage_file.la" "libsieve_storage_file.la" )
Making all in dict
--- sieve-dict-script.lo ---
--- sieve-dict-storage.lo ---
--- sieve-dict-script.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I/usr/local/include/dovecot  -I../../../..  -I../../../../src/lib-sieve -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT sieve-dict-script.lo -MD -MP -MF .deps/sieve-dict-script.Tpo -c -o sieve-dict-script.lo sieve-dict-script.c
--- sieve-dict-storage.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I/usr/local/include/dovecot  -I../../../..  -I../../../../src/lib-sieve -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT sieve-dict-storage.lo -MD -MP -MF .deps/sieve-dict-storage.Tpo -c -o sieve-dict-storage.lo sieve-dict-storage.c
--- sieve-dict-script.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I/usr/local/include/dovecot -I../../../.. -I../../../../src/lib-sieve -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT sieve-dict-script.lo -MD -MP -MF .deps/sieve-dict-script.Tpo -c sieve-dict-script.c  -fPIC -DPIC -o .libs/sieve-dict-script.o
--- sieve-dict-storage.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I/usr/local/include/dovecot -I../../../.. -I../../../../src/lib-sieve -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT sieve-dict-storage.lo -MD -MP -MF .deps/sieve-dict-storage.Tpo -c sieve-dict-storage.c  -fPIC -DPIC -o .libs/sieve-dict-storage.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I/usr/local/include/dovecot -I../../../.. -I../../../../src/lib-sieve -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT sieve-dict-storage.lo -MD -MP -MF .deps/sieve-dict-storage.Tpo -c sieve-dict-storage.c -o sieve-dict-storage.o >/dev/null 2>&1
--- sieve-dict-script.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I/usr/local/include/dovecot -I../../../.. -I../../../../src/lib-sieve -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT sieve-dict-script.lo -MD -MP -MF .deps/sieve-dict-script.Tpo -c sieve-dict-script.c -o sieve-dict-script.o >/dev/null 2>&1
--- sieve-dict-storage.lo ---
mv -f .deps/sieve-dict-storage.Tpo .deps/sieve-dict-storage.Plo
--- sieve-dict-script.lo ---
mv -f .deps/sieve-dict-script.Tpo .deps/sieve-dict-script.Plo
--- libsieve_storage_dict.la ---
/bin/sh ../../../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../..   -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o libsieve_storage_dict.la  sieve-dict-script.lo  sieve-dict-storage.lo  
libtool: link: ar cr .libs/libsieve_storage_dict.a .libs/sieve-dict-script.o .libs/sieve-dict-storage.o 
libtool: link: ranlib .libs/libsieve_storage_dict.a
libtool: link: ( cd ".libs" && rm -f "libsieve_storage_dict.la" && ln -s "../libsieve_storage_dict.la" "libsieve_storage_dict.la" )
Making all in ldap
--- sieve-ldap-db.lo ---
--- sieve-ldap-script.lo ---
--- sieve-ldap-storage.lo ---
--- sieve-ldap-storage-settings.lo ---
--- sieve-ldap-db.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I/usr/local/include/dovecot  -I../../../..  -I../../../../src/lib-sieve -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT sieve-ldap-db.lo -MD -MP -MF .deps/sieve-ldap-db.Tpo -c -o sieve-ldap-db.lo sieve-ldap-db.c
--- sieve-ldap-script.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I/usr/local/include/dovecot  -I../../../..  -I../../../../src/lib-sieve -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT sieve-ldap-script.lo -MD -MP -MF .deps/sieve-ldap-script.Tpo -c -o sieve-ldap-script.lo sieve-ldap-script.c
--- sieve-ldap-storage.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I/usr/local/include/dovecot  -I../../../..  -I../../../../src/lib-sieve -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT sieve-ldap-storage.lo -MD -MP -MF .deps/sieve-ldap-storage.Tpo -c -o sieve-ldap-storage.lo sieve-ldap-storage.c
--- sieve-ldap-storage-settings.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I/usr/local/include/dovecot  -I../../../..  -I../../../../src/lib-sieve -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT sieve-ldap-storage-settings.lo -MD -MP -MF .deps/sieve-ldap-storage-settings.Tpo -c -o sieve-ldap-storage-settings.lo sieve-ldap-storage-settings.c
--- sieve-ldap-db.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I/usr/local/include/dovecot -I../../../.. -I../../../../src/lib-sieve -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT sieve-ldap-db.lo -MD -MP -MF .deps/sieve-ldap-db.Tpo -c sieve-ldap-db.c  -fPIC -DPIC -o .libs/sieve-ldap-db.o
--- sieve-ldap-storage.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I/usr/local/include/dovecot -I../../../.. -I../../../../src/lib-sieve -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT sieve-ldap-storage.lo -MD -MP -MF .deps/sieve-ldap-storage.Tpo -c sieve-ldap-storage.c  -fPIC -DPIC -o .libs/sieve-ldap-storage.o
--- sieve-ldap-storage-settings.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I/usr/local/include/dovecot -I../../../.. -I../../../../src/lib-sieve -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT sieve-ldap-storage-settings.lo -MD -MP -MF .deps/sieve-ldap-storage-settings.Tpo -c sieve-ldap-storage-settings.c  -fPIC -DPIC -o .libs/sieve-ldap-storage-settings.o
--- sieve-ldap-script.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I/usr/local/include/dovecot -I../../../.. -I../../../../src/lib-sieve -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT sieve-ldap-script.lo -MD -MP -MF .deps/sieve-ldap-script.Tpo -c sieve-ldap-script.c  -fPIC -DPIC -o .libs/sieve-ldap-script.o
--- sieve-ldap-storage-settings.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I/usr/local/include/dovecot -I../../../.. -I../../../../src/lib-sieve -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT sieve-ldap-storage-settings.lo -MD -MP -MF .deps/sieve-ldap-storage-settings.Tpo -c sieve-ldap-storage-settings.c -o sieve-ldap-storage-settings.o >/dev/null 2>&1
--- sieve-ldap-storage.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I/usr/local/include/dovecot -I../../../.. -I../../../../src/lib-sieve -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT sieve-ldap-storage.lo -MD -MP -MF .deps/sieve-ldap-storage.Tpo -c sieve-ldap-storage.c -o sieve-ldap-storage.o >/dev/null 2>&1
--- sieve-ldap-script.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I/usr/local/include/dovecot -I../../../.. -I../../../../src/lib-sieve -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT sieve-ldap-script.lo -MD -MP -MF .deps/sieve-ldap-script.Tpo -c sieve-ldap-script.c -o sieve-ldap-script.o >/dev/null 2>&1
--- sieve-ldap-storage-settings.lo ---
mv -f .deps/sieve-ldap-storage-settings.Tpo .deps/sieve-ldap-storage-settings.Plo
--- sieve-ldap-storage.lo ---
mv -f .deps/sieve-ldap-storage.Tpo .deps/sieve-ldap-storage.Plo
--- sieve-ldap-script.lo ---
mv -f .deps/sieve-ldap-script.Tpo .deps/sieve-ldap-script.Plo
--- sieve-ldap-db.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I/usr/local/include/dovecot -I../../../.. -I../../../../src/lib-sieve -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT sieve-ldap-db.lo -MD -MP -MF .deps/sieve-ldap-db.Tpo -c sieve-ldap-db.c -o sieve-ldap-db.o >/dev/null 2>&1
mv -f .deps/sieve-ldap-db.Tpo .deps/sieve-ldap-db.Plo
--- libsieve_storage_ldap.la ---
/bin/sh ../../../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../..   -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o libsieve_storage_ldap.la  sieve-ldap-db.lo sieve-ldap-script.lo  sieve-ldap-storage.lo sieve-ldap-storage-settings.lo -lldap -llber 
libtool: link: ar cr .libs/libsieve_storage_ldap.a .libs/sieve-ldap-db.o .libs/sieve-ldap-script.o .libs/sieve-ldap-storage.o .libs/sieve-ldap-storage-settings.o 
libtool: link: ranlib .libs/libsieve_storage_ldap.a
libtool: link: ( cd ".libs" && rm -f "libsieve_storage_ldap.la" && ln -s "../libsieve_storage_ldap.la" "libsieve_storage_ldap.la" )
Making all in plugins
--- all-recursive ---
Making all in vacation
--- cmd-vacation.lo ---
--- ext-vacation-common.lo ---
--- ext-vacation.lo ---
--- ext-vacation-seconds.lo ---
--- cmd-vacation.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I./../../util  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT cmd-vacation.lo -MD -MP -MF .deps/cmd-vacation.Tpo -c -o cmd-vacation.lo cmd-vacation.c
--- ext-vacation-common.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I./../../util  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-vacation-common.lo -MD -MP -MF .deps/ext-vacation-common.Tpo -c -o ext-vacation-common.lo ext-vacation-common.c
--- ext-vacation.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I./../../util  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-vacation.lo -MD -MP -MF .deps/ext-vacation.Tpo -c -o ext-vacation.lo ext-vacation.c
--- ext-vacation-seconds.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I./../../util  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-vacation-seconds.lo -MD -MP -MF .deps/ext-vacation-seconds.Tpo -c -o ext-vacation-seconds.lo ext-vacation-seconds.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../../util -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-vacation-seconds.lo -MD -MP -MF .deps/ext-vacation-seconds.Tpo -c ext-vacation-seconds.c  -fPIC -DPIC -o .libs/ext-vacation-seconds.o
--- ext-vacation.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../../util -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-vacation.lo -MD -MP -MF .deps/ext-vacation.Tpo -c ext-vacation.c  -fPIC -DPIC -o .libs/ext-vacation.o
--- ext-vacation-common.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../../util -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-vacation-common.lo -MD -MP -MF .deps/ext-vacation-common.Tpo -c ext-vacation-common.c  -fPIC -DPIC -o .libs/ext-vacation-common.o
--- cmd-vacation.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../../util -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT cmd-vacation.lo -MD -MP -MF .deps/cmd-vacation.Tpo -c cmd-vacation.c  -fPIC -DPIC -o .libs/cmd-vacation.o
--- ext-vacation-seconds.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../../util -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-vacation-seconds.lo -MD -MP -MF .deps/ext-vacation-seconds.Tpo -c ext-vacation-seconds.c -o ext-vacation-seconds.o >/dev/null 2>&1
--- ext-vacation.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../../util -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-vacation.lo -MD -MP -MF .deps/ext-vacation.Tpo -c ext-vacation.c -o ext-vacation.o >/dev/null 2>&1
--- ext-vacation-common.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../../util -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-vacation-common.lo -MD -MP -MF .deps/ext-vacation-common.Tpo -c ext-vacation-common.c -o ext-vacation-common.o >/dev/null 2>&1
--- ext-vacation-seconds.lo ---
mv -f .deps/ext-vacation-seconds.Tpo .deps/ext-vacation-seconds.Plo
--- ext-vacation.lo ---
mv -f .deps/ext-vacation.Tpo .deps/ext-vacation.Plo
--- ext-vacation-common.lo ---
mv -f .deps/ext-vacation-common.Tpo .deps/ext-vacation-common.Plo
--- cmd-vacation.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../../util -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT cmd-vacation.lo -MD -MP -MF .deps/cmd-vacation.Tpo -c cmd-vacation.c -o cmd-vacation.o >/dev/null 2>&1
mv -f .deps/cmd-vacation.Tpo .deps/cmd-vacation.Plo
--- libsieve_ext_vacation.la ---
/bin/sh ../../../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../..   -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o libsieve_ext_vacation.la  cmd-vacation.lo  ext-vacation-common.lo ext-vacation.lo ext-vacation-seconds.lo  
libtool: link: ar cr .libs/libsieve_ext_vacation.a .libs/cmd-vacation.o .libs/ext-vacation-common.o .libs/ext-vacation.o .libs/ext-vacation-seconds.o 
libtool: link: ranlib .libs/libsieve_ext_vacation.a
libtool: link: ( cd ".libs" && rm -f "libsieve_ext_vacation.la" && ln -s "../libsieve_ext_vacation.la" "libsieve_ext_vacation.la" )
Making all in subaddress
--- ext-subaddress.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-subaddress.lo -MD -MP -MF .deps/ext-subaddress.Tpo -c -o ext-subaddress.lo ext-subaddress.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-subaddress.lo -MD -MP -MF .deps/ext-subaddress.Tpo -c ext-subaddress.c  -fPIC -DPIC -o .libs/ext-subaddress.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-subaddress.lo -MD -MP -MF .deps/ext-subaddress.Tpo -c ext-subaddress.c -o ext-subaddress.o >/dev/null 2>&1
mv -f .deps/ext-subaddress.Tpo .deps/ext-subaddress.Plo
--- libsieve_ext_subaddress.la ---
/bin/sh ../../../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../..   -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o libsieve_ext_subaddress.la  ext-subaddress.lo  
libtool: link: ar cr .libs/libsieve_ext_subaddress.a .libs/ext-subaddress.o 
libtool: link: ranlib .libs/libsieve_ext_subaddress.a
libtool: link: ( cd ".libs" && rm -f "libsieve_ext_subaddress.la" && ln -s "../libsieve_ext_subaddress.la" "libsieve_ext_subaddress.la" )
Making all in comparator-i-ascii-numeric
--- ext-cmp-i-ascii-numeric.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-cmp-i-ascii-numeric.lo -MD -MP -MF .deps/ext-cmp-i-ascii-numeric.Tpo -c -o ext-cmp-i-ascii-numeric.lo ext-cmp-i-ascii-numeric.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-cmp-i-ascii-numeric.lo -MD -MP -MF .deps/ext-cmp-i-ascii-numeric.Tpo -c ext-cmp-i-ascii-numeric.c  -fPIC -DPIC -o .libs/ext-cmp-i-ascii-numeric.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-cmp-i-ascii-numeric.lo -MD -MP -MF .deps/ext-cmp-i-ascii-numeric.Tpo -c ext-cmp-i-ascii-numeric.c -o ext-cmp-i-ascii-numeric.o >/dev/null 2>&1
mv -f .deps/ext-cmp-i-ascii-numeric.Tpo .deps/ext-cmp-i-ascii-numeric.Plo
--- libsieve_ext_comparator-i-ascii-numeric.la ---
/bin/sh ../../../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../..   -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o libsieve_ext_comparator-i-ascii-numeric.la  ext-cmp-i-ascii-numeric.lo  
libtool: link: ar cr .libs/libsieve_ext_comparator-i-ascii-numeric.a .libs/ext-cmp-i-ascii-numeric.o 
libtool: link: ranlib .libs/libsieve_ext_comparator-i-ascii-numeric.a
libtool: link: ( cd ".libs" && rm -f "libsieve_ext_comparator-i-ascii-numeric.la" && ln -s "../libsieve_ext_comparator-i-ascii-numeric.la" "libsieve_ext_comparator-i-ascii-numeric.la" )
Making all in relational
--- ext-relational-common.lo ---
--- mcht-value.lo ---
--- mcht-count.lo ---
--- ext-relational.lo ---
--- ext-relational-common.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-relational-common.lo -MD -MP -MF .deps/ext-relational-common.Tpo -c -o ext-relational-common.lo ext-relational-common.c
--- mcht-value.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT mcht-value.lo -MD -MP -MF .deps/mcht-value.Tpo -c -o mcht-value.lo mcht-value.c
--- ext-relational.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-relational.lo -MD -MP -MF .deps/ext-relational.Tpo -c -o ext-relational.lo ext-relational.c
--- mcht-count.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT mcht-count.lo -MD -MP -MF .deps/mcht-count.Tpo -c -o mcht-count.lo mcht-count.c
--- ext-relational-common.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-relational-common.lo -MD -MP -MF .deps/ext-relational-common.Tpo -c ext-relational-common.c  -fPIC -DPIC -o .libs/ext-relational-common.o
--- mcht-count.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT mcht-count.lo -MD -MP -MF .deps/mcht-count.Tpo -c mcht-count.c  -fPIC -DPIC -o .libs/mcht-count.o
--- ext-relational.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-relational.lo -MD -MP -MF .deps/ext-relational.Tpo -c ext-relational.c  -fPIC -DPIC -o .libs/ext-relational.o
--- mcht-value.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT mcht-value.lo -MD -MP -MF .deps/mcht-value.Tpo -c mcht-value.c  -fPIC -DPIC -o .libs/mcht-value.o
--- ext-relational.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-relational.lo -MD -MP -MF .deps/ext-relational.Tpo -c ext-relational.c -o ext-relational.o >/dev/null 2>&1
--- mcht-value.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT mcht-value.lo -MD -MP -MF .deps/mcht-value.Tpo -c mcht-value.c -o mcht-value.o >/dev/null 2>&1
--- ext-relational-common.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-relational-common.lo -MD -MP -MF .deps/ext-relational-common.Tpo -c ext-relational-common.c -o ext-relational-common.o >/dev/null 2>&1
--- mcht-count.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT mcht-count.lo -MD -MP -MF .deps/mcht-count.Tpo -c mcht-count.c -o mcht-count.o >/dev/null 2>&1
--- ext-relational.lo ---
mv -f .deps/ext-relational.Tpo .deps/ext-relational.Plo
--- mcht-value.lo ---
mv -f .deps/mcht-value.Tpo .deps/mcht-value.Plo
--- ext-relational-common.lo ---
mv -f .deps/ext-relational-common.Tpo .deps/ext-relational-common.Plo
--- mcht-count.lo ---
mv -f .deps/mcht-count.Tpo .deps/mcht-count.Plo
--- libsieve_ext_relational.la ---
/bin/sh ../../../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../..   -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o libsieve_ext_relational.la  ext-relational-common.lo  mcht-value.lo mcht-count.lo ext-relational.lo  
libtool: link: ar cr .libs/libsieve_ext_relational.a .libs/ext-relational-common.o .libs/mcht-value.o .libs/mcht-count.o .libs/ext-relational.o 
libtool: link: ranlib .libs/libsieve_ext_relational.a
libtool: link: ( cd ".libs" && rm -f "libsieve_ext_relational.la" && ln -s "../libsieve_ext_relational.la" "libsieve_ext_relational.la" )
Making all in regex
--- mcht-regex.lo ---
--- ext-regex-common.lo ---
--- ext-regex.lo ---
--- mcht-regex.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT mcht-regex.lo -MD -MP -MF .deps/mcht-regex.Tpo -c -o mcht-regex.lo mcht-regex.c
--- ext-regex-common.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-regex-common.lo -MD -MP -MF .deps/ext-regex-common.Tpo -c -o ext-regex-common.lo ext-regex-common.c
--- ext-regex.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-regex.lo -MD -MP -MF .deps/ext-regex.Tpo -c -o ext-regex.lo ext-regex.c
--- mcht-regex.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT mcht-regex.lo -MD -MP -MF .deps/mcht-regex.Tpo -c mcht-regex.c  -fPIC -DPIC -o .libs/mcht-regex.o
--- ext-regex-common.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-regex-common.lo -MD -MP -MF .deps/ext-regex-common.Tpo -c ext-regex-common.c  -fPIC -DPIC -o .libs/ext-regex-common.o
--- ext-regex.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-regex.lo -MD -MP -MF .deps/ext-regex.Tpo -c ext-regex.c  -fPIC -DPIC -o .libs/ext-regex.o
--- ext-regex-common.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-regex-common.lo -MD -MP -MF .deps/ext-regex-common.Tpo -c ext-regex-common.c -o ext-regex-common.o >/dev/null 2>&1
--- ext-regex.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-regex.lo -MD -MP -MF .deps/ext-regex.Tpo -c ext-regex.c -o ext-regex.o >/dev/null 2>&1
--- ext-regex-common.lo ---
mv -f .deps/ext-regex-common.Tpo .deps/ext-regex-common.Plo
--- ext-regex.lo ---
mv -f .deps/ext-regex.Tpo .deps/ext-regex.Plo
--- mcht-regex.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT mcht-regex.lo -MD -MP -MF .deps/mcht-regex.Tpo -c mcht-regex.c -o mcht-regex.o >/dev/null 2>&1
mv -f .deps/mcht-regex.Tpo .deps/mcht-regex.Plo
--- libsieve_ext_regex.la ---
/bin/sh ../../../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../..   -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o libsieve_ext_regex.la  mcht-regex.lo ext-regex-common.lo  ext-regex.lo  
libtool: link: ar cr .libs/libsieve_ext_regex.a .libs/mcht-regex.o .libs/ext-regex-common.o .libs/ext-regex.o 
libtool: link: ranlib .libs/libsieve_ext_regex.a
libtool: link: ( cd ".libs" && rm -f "libsieve_ext_regex.la" && ln -s "../libsieve_ext_regex.la" "libsieve_ext_regex.la" )
Making all in imap4flags
--- ext-imap4flags-common.lo ---
--- cmd-flag.lo ---
--- tst-hasflag.lo ---
--- tag-flags.lo ---
--- ext-imap4flags-common.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I./../variables   -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-imap4flags-common.lo -MD -MP -MF .deps/ext-imap4flags-common.Tpo -c -o ext-imap4flags-common.lo ext-imap4flags-common.c
--- cmd-flag.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I./../variables   -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT cmd-flag.lo -MD -MP -MF .deps/cmd-flag.Tpo -c -o cmd-flag.lo cmd-flag.c
--- tst-hasflag.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I./../variables   -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT tst-hasflag.lo -MD -MP -MF .deps/tst-hasflag.Tpo -c -o tst-hasflag.lo tst-hasflag.c
--- tag-flags.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I./../variables   -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT tag-flags.lo -MD -MP -MF .deps/tag-flags.Tpo -c -o tag-flags.lo tag-flags.c
--- ext-imap4flags-common.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-imap4flags-common.lo -MD -MP -MF .deps/ext-imap4flags-common.Tpo -c ext-imap4flags-common.c  -fPIC -DPIC -o .libs/ext-imap4flags-common.o
--- tst-hasflag.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT tst-hasflag.lo -MD -MP -MF .deps/tst-hasflag.Tpo -c tst-hasflag.c  -fPIC -DPIC -o .libs/tst-hasflag.o
--- cmd-flag.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT cmd-flag.lo -MD -MP -MF .deps/cmd-flag.Tpo -c cmd-flag.c  -fPIC -DPIC -o .libs/cmd-flag.o
--- tag-flags.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT tag-flags.lo -MD -MP -MF .deps/tag-flags.Tpo -c tag-flags.c  -fPIC -DPIC -o .libs/tag-flags.o
--- cmd-flag.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT cmd-flag.lo -MD -MP -MF .deps/cmd-flag.Tpo -c cmd-flag.c -o cmd-flag.o >/dev/null 2>&1
--- tst-hasflag.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT tst-hasflag.lo -MD -MP -MF .deps/tst-hasflag.Tpo -c tst-hasflag.c -o tst-hasflag.o >/dev/null 2>&1
--- tag-flags.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT tag-flags.lo -MD -MP -MF .deps/tag-flags.Tpo -c tag-flags.c -o tag-flags.o >/dev/null 2>&1
--- cmd-flag.lo ---
mv -f .deps/cmd-flag.Tpo .deps/cmd-flag.Plo
--- ext-imap4flags.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I./../variables   -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-imap4flags.lo -MD -MP -MF .deps/ext-imap4flags.Tpo -c -o ext-imap4flags.lo ext-imap4flags.c
--- tst-hasflag.lo ---
mv -f .deps/tst-hasflag.Tpo .deps/tst-hasflag.Plo
--- ext-imapflags.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I./../variables   -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-imapflags.lo -MD -MP -MF .deps/ext-imapflags.Tpo -c -o ext-imapflags.lo ext-imapflags.c
--- ext-imap4flags.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-imap4flags.lo -MD -MP -MF .deps/ext-imap4flags.Tpo -c ext-imap4flags.c  -fPIC -DPIC -o .libs/ext-imap4flags.o
--- ext-imapflags.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-imapflags.lo -MD -MP -MF .deps/ext-imapflags.Tpo -c ext-imapflags.c  -fPIC -DPIC -o .libs/ext-imapflags.o
--- ext-imap4flags-common.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-imap4flags-common.lo -MD -MP -MF .deps/ext-imap4flags-common.Tpo -c ext-imap4flags-common.c -o ext-imap4flags-common.o >/dev/null 2>&1
--- ext-imap4flags.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-imap4flags.lo -MD -MP -MF .deps/ext-imap4flags.Tpo -c ext-imap4flags.c -o ext-imap4flags.o >/dev/null 2>&1
--- ext-imapflags.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-imapflags.lo -MD -MP -MF .deps/ext-imapflags.Tpo -c ext-imapflags.c -o ext-imapflags.o >/dev/null 2>&1
--- tag-flags.lo ---
mv -f .deps/tag-flags.Tpo .deps/tag-flags.Plo
--- ext-imap4flags.lo ---
mv -f .deps/ext-imap4flags.Tpo .deps/ext-imap4flags.Plo
--- ext-imapflags.lo ---
mv -f .deps/ext-imapflags.Tpo .deps/ext-imapflags.Plo
--- ext-imap4flags-common.lo ---
mv -f .deps/ext-imap4flags-common.Tpo .deps/ext-imap4flags-common.Plo
--- libsieve_ext_imap4flags.la ---
/bin/sh ../../../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../..   -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o libsieve_ext_imap4flags.la  ext-imap4flags-common.lo  cmd-flag.lo tst-hasflag.lo tag-flags.lo  ext-imap4flags.lo ext-imapflags.lo  
libtool: link: ar cr .libs/libsieve_ext_imap4flags.a .libs/ext-imap4flags-common.o .libs/cmd-flag.o .libs/tst-hasflag.o .libs/tag-flags.o .libs/ext-imap4flags.o .libs/ext-imapflags.o 
libtool: link: ranlib .libs/libsieve_ext_imap4flags.a
libtool: link: ( cd ".libs" && rm -f "libsieve_ext_imap4flags.la" && ln -s "../libsieve_ext_imap4flags.la" "libsieve_ext_imap4flags.la" )
Making all in copy
--- ext-copy.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-copy.lo -MD -MP -MF .deps/ext-copy.Tpo -c -o ext-copy.lo ext-copy.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-copy.lo -MD -MP -MF .deps/ext-copy.Tpo -c ext-copy.c  -fPIC -DPIC -o .libs/ext-copy.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-copy.lo -MD -MP -MF .deps/ext-copy.Tpo -c ext-copy.c -o ext-copy.o >/dev/null 2>&1
mv -f .deps/ext-copy.Tpo .deps/ext-copy.Plo
--- libsieve_ext_copy.la ---
/bin/sh ../../../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../..   -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o libsieve_ext_copy.la  ext-copy.lo  
libtool: link: ar cr .libs/libsieve_ext_copy.a .libs/ext-copy.o 
libtool: link: ranlib .libs/libsieve_ext_copy.a
libtool: link: ( cd ".libs" && rm -f "libsieve_ext_copy.la" && ln -s "../libsieve_ext_copy.la" "libsieve_ext_copy.la" )
Making all in include
--- cmd-include.lo ---
--- cmd-return.lo ---
--- cmd-global.lo ---
--- ext-include-common.lo ---
--- cmd-include.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I./../variables  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT cmd-include.lo -MD -MP -MF .deps/cmd-include.Tpo -c -o cmd-include.lo cmd-include.c
--- cmd-return.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I./../variables  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT cmd-return.lo -MD -MP -MF .deps/cmd-return.Tpo -c -o cmd-return.lo cmd-return.c
--- ext-include-common.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I./../variables  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-include-common.lo -MD -MP -MF .deps/ext-include-common.Tpo -c -o ext-include-common.lo ext-include-common.c
--- cmd-global.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I./../variables  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT cmd-global.lo -MD -MP -MF .deps/cmd-global.Tpo -c -o cmd-global.lo cmd-global.c
--- cmd-include.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT cmd-include.lo -MD -MP -MF .deps/cmd-include.Tpo -c cmd-include.c  -fPIC -DPIC -o .libs/cmd-include.o
--- ext-include-common.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-include-common.lo -MD -MP -MF .deps/ext-include-common.Tpo -c ext-include-common.c  -fPIC -DPIC -o .libs/ext-include-common.o
--- cmd-global.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT cmd-global.lo -MD -MP -MF .deps/cmd-global.Tpo -c cmd-global.c  -fPIC -DPIC -o .libs/cmd-global.o
--- cmd-return.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT cmd-return.lo -MD -MP -MF .deps/cmd-return.Tpo -c cmd-return.c  -fPIC -DPIC -o .libs/cmd-return.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT cmd-return.lo -MD -MP -MF .deps/cmd-return.Tpo -c cmd-return.c -o cmd-return.o >/dev/null 2>&1
--- cmd-include.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT cmd-include.lo -MD -MP -MF .deps/cmd-include.Tpo -c cmd-include.c -o cmd-include.o >/dev/null 2>&1
--- cmd-global.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT cmd-global.lo -MD -MP -MF .deps/cmd-global.Tpo -c cmd-global.c -o cmd-global.o >/dev/null 2>&1
--- cmd-return.lo ---
mv -f .deps/cmd-return.Tpo .deps/cmd-return.Plo
--- ext-include-binary.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I./../variables  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-include-binary.lo -MD -MP -MF .deps/ext-include-binary.Tpo -c -o ext-include-binary.lo ext-include-binary.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-include-binary.lo -MD -MP -MF .deps/ext-include-binary.Tpo -c ext-include-binary.c  -fPIC -DPIC -o .libs/ext-include-binary.o
--- ext-include-common.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-include-common.lo -MD -MP -MF .deps/ext-include-common.Tpo -c ext-include-common.c -o ext-include-common.o >/dev/null 2>&1
--- cmd-include.lo ---
mv -f .deps/cmd-include.Tpo .deps/cmd-include.Plo
--- ext-include-variables.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I./../variables  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-include-variables.lo -MD -MP -MF .deps/ext-include-variables.Tpo -c -o ext-include-variables.lo ext-include-variables.c
--- cmd-global.lo ---
mv -f .deps/cmd-global.Tpo .deps/cmd-global.Plo
--- ext-include.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I./../variables  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-include.lo -MD -MP -MF .deps/ext-include.Tpo -c -o ext-include.lo ext-include.c
--- ext-include-variables.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-include-variables.lo -MD -MP -MF .deps/ext-include-variables.Tpo -c ext-include-variables.c  -fPIC -DPIC -o .libs/ext-include-variables.o
--- ext-include.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-include.lo -MD -MP -MF .deps/ext-include.Tpo -c ext-include.c  -fPIC -DPIC -o .libs/ext-include.o
--- ext-include-binary.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-include-binary.lo -MD -MP -MF .deps/ext-include-binary.Tpo -c ext-include-binary.c -o ext-include-binary.o >/dev/null 2>&1
--- ext-include.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-include.lo -MD -MP -MF .deps/ext-include.Tpo -c ext-include.c -o ext-include.o >/dev/null 2>&1
--- ext-include-variables.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-include-variables.lo -MD -MP -MF .deps/ext-include-variables.Tpo -c ext-include-variables.c -o ext-include-variables.o >/dev/null 2>&1
--- ext-include.lo ---
mv -f .deps/ext-include.Tpo .deps/ext-include.Plo
--- ext-include-common.lo ---
mv -f .deps/ext-include-common.Tpo .deps/ext-include-common.Plo
--- ext-include-variables.lo ---
mv -f .deps/ext-include-variables.Tpo .deps/ext-include-variables.Plo
--- ext-include-binary.lo ---
mv -f .deps/ext-include-binary.Tpo .deps/ext-include-binary.Plo
--- libsieve_ext_include.la ---
/bin/sh ../../../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../..   -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o libsieve_ext_include.la  cmd-include.lo cmd-return.lo cmd-global.lo  ext-include-common.lo ext-include-binary.lo  ext-include-variables.lo ext-include.lo  
libtool: link: ar cr .libs/libsieve_ext_include.a .libs/cmd-include.o .libs/cmd-return.o .libs/cmd-global.o .libs/ext-include-common.o .libs/ext-include-binary.o .libs/ext-include-variables.o .libs/ext-include.o 
libtool: link: ranlib .libs/libsieve_ext_include.a
libtool: link: ( cd ".libs" && rm -f "libsieve_ext_include.la" && ln -s "../libsieve_ext_include.la" "libsieve_ext_include.la" )
Making all in body
--- ext-body-common.lo ---
--- tst-body.lo ---
--- ext-body.lo ---
--- ext-body-common.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-body-common.lo -MD -MP -MF .deps/ext-body-common.Tpo -c -o ext-body-common.lo ext-body-common.c
--- tst-body.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT tst-body.lo -MD -MP -MF .deps/tst-body.Tpo -c -o tst-body.lo tst-body.c
--- ext-body.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-body.lo -MD -MP -MF .deps/ext-body.Tpo -c -o ext-body.lo ext-body.c
--- ext-body-common.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-body-common.lo -MD -MP -MF .deps/ext-body-common.Tpo -c ext-body-common.c  -fPIC -DPIC -o .libs/ext-body-common.o
--- tst-body.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT tst-body.lo -MD -MP -MF .deps/tst-body.Tpo -c tst-body.c  -fPIC -DPIC -o .libs/tst-body.o
--- ext-body.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-body.lo -MD -MP -MF .deps/ext-body.Tpo -c ext-body.c  -fPIC -DPIC -o .libs/ext-body.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-body.lo -MD -MP -MF .deps/ext-body.Tpo -c ext-body.c -o ext-body.o >/dev/null 2>&1
--- ext-body-common.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-body-common.lo -MD -MP -MF .deps/ext-body-common.Tpo -c ext-body-common.c -o ext-body-common.o >/dev/null 2>&1
--- tst-body.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT tst-body.lo -MD -MP -MF .deps/tst-body.Tpo -c tst-body.c -o tst-body.o >/dev/null 2>&1
--- ext-body.lo ---
mv -f .deps/ext-body.Tpo .deps/ext-body.Plo
--- ext-body-common.lo ---
mv -f .deps/ext-body-common.Tpo .deps/ext-body-common.Plo
--- tst-body.lo ---
mv -f .deps/tst-body.Tpo .deps/tst-body.Plo
--- libsieve_ext_body.la ---
/bin/sh ../../../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../..   -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o libsieve_ext_body.la  ext-body-common.lo tst-body.lo  ext-body.lo  
libtool: link: ar cr .libs/libsieve_ext_body.a .libs/ext-body-common.o .libs/tst-body.o .libs/ext-body.o 
libtool: link: ranlib .libs/libsieve_ext_body.a
libtool: link: ( cd ".libs" && rm -f "libsieve_ext_body.la" && ln -s "../libsieve_ext_body.la" "libsieve_ext_body.la" )
Making all in variables
--- ext-variables-common.lo ---
--- ext-variables-name.lo ---
--- ext-variables-namespaces.lo ---
--- ext-variables-arguments.lo ---
--- ext-variables-common.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-variables-common.lo -MD -MP -MF .deps/ext-variables-common.Tpo -c -o ext-variables-common.lo ext-variables-common.c
--- ext-variables-name.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-variables-name.lo -MD -MP -MF .deps/ext-variables-name.Tpo -c -o ext-variables-name.lo ext-variables-name.c
--- ext-variables-namespaces.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-variables-namespaces.lo -MD -MP -MF .deps/ext-variables-namespaces.Tpo -c -o ext-variables-namespaces.lo ext-variables-namespaces.c
--- ext-variables-arguments.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-variables-arguments.lo -MD -MP -MF .deps/ext-variables-arguments.Tpo -c -o ext-variables-arguments.lo ext-variables-arguments.c
--- ext-variables-common.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-variables-common.lo -MD -MP -MF .deps/ext-variables-common.Tpo -c ext-variables-common.c  -fPIC -DPIC -o .libs/ext-variables-common.o
--- ext-variables-name.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-variables-name.lo -MD -MP -MF .deps/ext-variables-name.Tpo -c ext-variables-name.c  -fPIC -DPIC -o .libs/ext-variables-name.o
--- ext-variables-namespaces.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-variables-namespaces.lo -MD -MP -MF .deps/ext-variables-namespaces.Tpo -c ext-variables-namespaces.c  -fPIC -DPIC -o .libs/ext-variables-namespaces.o
--- ext-variables-arguments.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-variables-arguments.lo -MD -MP -MF .deps/ext-variables-arguments.Tpo -c ext-variables-arguments.c  -fPIC -DPIC -o .libs/ext-variables-arguments.o
--- ext-variables-namespaces.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-variables-namespaces.lo -MD -MP -MF .deps/ext-variables-namespaces.Tpo -c ext-variables-namespaces.c -o ext-variables-namespaces.o >/dev/null 2>&1
--- ext-variables-name.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-variables-name.lo -MD -MP -MF .deps/ext-variables-name.Tpo -c ext-variables-name.c -o ext-variables-name.o >/dev/null 2>&1
--- ext-variables-arguments.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-variables-arguments.lo -MD -MP -MF .deps/ext-variables-arguments.Tpo -c ext-variables-arguments.c -o ext-variables-arguments.o >/dev/null 2>&1
--- ext-variables-namespaces.lo ---
mv -f .deps/ext-variables-namespaces.Tpo .deps/ext-variables-namespaces.Plo
--- ext-variables-operands.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-variables-operands.lo -MD -MP -MF .deps/ext-variables-operands.Tpo -c -o ext-variables-operands.lo ext-variables-operands.c
--- ext-variables-name.lo ---
mv -f .deps/ext-variables-name.Tpo .deps/ext-variables-name.Plo
--- ext-variables-modifiers.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-variables-modifiers.lo -MD -MP -MF .deps/ext-variables-modifiers.Tpo -c -o ext-variables-modifiers.lo ext-variables-modifiers.c
--- ext-variables-operands.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-variables-operands.lo -MD -MP -MF .deps/ext-variables-operands.Tpo -c ext-variables-operands.c  -fPIC -DPIC -o .libs/ext-variables-operands.o
--- ext-variables-modifiers.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-variables-modifiers.lo -MD -MP -MF .deps/ext-variables-modifiers.Tpo -c ext-variables-modifiers.c  -fPIC -DPIC -o .libs/ext-variables-modifiers.o
--- ext-variables-arguments.lo ---
mv -f .deps/ext-variables-arguments.Tpo .deps/ext-variables-arguments.Plo
--- ext-variables-dump.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-variables-dump.lo -MD -MP -MF .deps/ext-variables-dump.Tpo -c -o ext-variables-dump.lo ext-variables-dump.c
--- ext-variables-common.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-variables-common.lo -MD -MP -MF .deps/ext-variables-common.Tpo -c ext-variables-common.c -o ext-variables-common.o >/dev/null 2>&1
--- ext-variables-dump.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-variables-dump.lo -MD -MP -MF .deps/ext-variables-dump.Tpo -c ext-variables-dump.c  -fPIC -DPIC -o .libs/ext-variables-dump.o
--- ext-variables-operands.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-variables-operands.lo -MD -MP -MF .deps/ext-variables-operands.Tpo -c ext-variables-operands.c -o ext-variables-operands.o >/dev/null 2>&1
--- ext-variables-dump.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-variables-dump.lo -MD -MP -MF .deps/ext-variables-dump.Tpo -c ext-variables-dump.c -o ext-variables-dump.o >/dev/null 2>&1
--- ext-variables-modifiers.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-variables-modifiers.lo -MD -MP -MF .deps/ext-variables-modifiers.Tpo -c ext-variables-modifiers.c -o ext-variables-modifiers.o >/dev/null 2>&1
--- ext-variables-dump.lo ---
mv -f .deps/ext-variables-dump.Tpo .deps/ext-variables-dump.Plo
--- cmd-set.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT cmd-set.lo -MD -MP -MF .deps/cmd-set.Tpo -c -o cmd-set.lo cmd-set.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT cmd-set.lo -MD -MP -MF .deps/cmd-set.Tpo -c cmd-set.c  -fPIC -DPIC -o .libs/cmd-set.o
--- ext-variables-operands.lo ---
mv -f .deps/ext-variables-operands.Tpo .deps/ext-variables-operands.Plo
--- tst-string.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT tst-string.lo -MD -MP -MF .deps/tst-string.Tpo -c -o tst-string.lo tst-string.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT tst-string.lo -MD -MP -MF .deps/tst-string.Tpo -c tst-string.c  -fPIC -DPIC -o .libs/tst-string.o
--- ext-variables-common.lo ---
mv -f .deps/ext-variables-common.Tpo .deps/ext-variables-common.Plo
--- ext-variables.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-variables.lo -MD -MP -MF .deps/ext-variables.Tpo -c -o ext-variables.lo ext-variables.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-variables.lo -MD -MP -MF .deps/ext-variables.Tpo -c ext-variables.c  -fPIC -DPIC -o .libs/ext-variables.o
--- cmd-set.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT cmd-set.lo -MD -MP -MF .deps/cmd-set.Tpo -c cmd-set.c -o cmd-set.o >/dev/null 2>&1
--- tst-string.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT tst-string.lo -MD -MP -MF .deps/tst-string.Tpo -c tst-string.c -o tst-string.o >/dev/null 2>&1
--- ext-variables-modifiers.lo ---
mv -f .deps/ext-variables-modifiers.Tpo .deps/ext-variables-modifiers.Plo
--- ext-variables.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-variables.lo -MD -MP -MF .deps/ext-variables.Tpo -c ext-variables.c -o ext-variables.o >/dev/null 2>&1
--- cmd-set.lo ---
mv -f .deps/cmd-set.Tpo .deps/cmd-set.Plo
--- ext-variables.lo ---
mv -f .deps/ext-variables.Tpo .deps/ext-variables.Plo
--- tst-string.lo ---
mv -f .deps/tst-string.Tpo .deps/tst-string.Plo
--- libsieve_ext_variables.la ---
/bin/sh ../../../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../..   -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o libsieve_ext_variables.la  ext-variables-common.lo  ext-variables-name.lo ext-variables-namespaces.lo  ext-variables-arguments.lo ext-variables-operands.lo  ext-variables-modifiers.lo ext-variables-dump.lo  cmd-set.lo tst-string.lo ext-variables.lo  
libtool: link: ar cr .libs/libsieve_ext_variables.a .libs/ext-variables-common.o .libs/ext-variables-name.o .libs/ext-variables-namespaces.o .libs/ext-variables-arguments.o .libs/ext-variables-operands.o .libs/ext-variables-modifiers.o .libs/ext-variables-dump.o .libs/cmd-set.o .libs/tst-string.o .libs/ext-variables.o 
libtool: link: ranlib .libs/libsieve_ext_variables.a
libtool: link: ( cd ".libs" && rm -f "libsieve_ext_variables.la" && ln -s "../libsieve_ext_variables.la" "libsieve_ext_variables.la" )
Making all in enotify
--- all-recursive ---
Making all in mailto
--- uri-mailto.lo ---
--- ntfy-mailto.lo ---
--- uri-mailto.lo ---
/bin/sh ../../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../../..  -I./..  -I./../../..  -I./../../../util  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../../.. -MT uri-mailto.lo -MD -MP -MF .deps/uri-mailto.Tpo -c -o uri-mailto.lo uri-mailto.c
--- ntfy-mailto.lo ---
/bin/sh ../../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../../..  -I./..  -I./../../..  -I./../../../util  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../../.. -MT ntfy-mailto.lo -MD -MP -MF .deps/ntfy-mailto.Tpo -c -o ntfy-mailto.lo ntfy-mailto.c
--- uri-mailto.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../../.. -I./.. -I./../../.. -I./../../../util -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../../.. -MT uri-mailto.lo -MD -MP -MF .deps/uri-mailto.Tpo -c uri-mailto.c  -fPIC -DPIC -o .libs/uri-mailto.o
--- ntfy-mailto.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../../.. -I./.. -I./../../.. -I./../../../util -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../../.. -MT ntfy-mailto.lo -MD -MP -MF .deps/ntfy-mailto.Tpo -c ntfy-mailto.c  -fPIC -DPIC -o .libs/ntfy-mailto.o
--- uri-mailto.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../../.. -I./.. -I./../../.. -I./../../../util -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../../.. -MT uri-mailto.lo -MD -MP -MF .deps/uri-mailto.Tpo -c uri-mailto.c -o uri-mailto.o >/dev/null 2>&1
--- ntfy-mailto.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../../.. -I./.. -I./../../.. -I./../../../util -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../../.. -MT ntfy-mailto.lo -MD -MP -MF .deps/ntfy-mailto.Tpo -c ntfy-mailto.c -o ntfy-mailto.o >/dev/null 2>&1
--- uri-mailto.lo ---
mv -f .deps/uri-mailto.Tpo .deps/uri-mailto.Plo
--- ntfy-mailto.lo ---
mv -f .deps/ntfy-mailto.Tpo .deps/ntfy-mailto.Plo
--- libsieve_ext_enotify_mailto.la ---
/bin/sh ../../../../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../../..   -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o libsieve_ext_enotify_mailto.la  uri-mailto.lo  ntfy-mailto.lo  
libtool: link: ar cr .libs/libsieve_ext_enotify_mailto.a .libs/uri-mailto.o .libs/ntfy-mailto.o 
libtool: link: ranlib .libs/libsieve_ext_enotify_mailto.a
libtool: link: ( cd ".libs" && rm -f "libsieve_ext_enotify_mailto.la" && ln -s "../libsieve_ext_enotify_mailto.la" "libsieve_ext_enotify_mailto.la" )
--- ext-enotify.lo ---
--- ext-enotify-common.lo ---
--- cmd-notify.lo ---
--- tst-valid-notify-method.lo ---
--- ext-enotify.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I./../variables  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-enotify.lo -MD -MP -MF .deps/ext-enotify.Tpo -c -o ext-enotify.lo ext-enotify.c
--- ext-enotify-common.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I./../variables  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-enotify-common.lo -MD -MP -MF .deps/ext-enotify-common.Tpo -c -o ext-enotify-common.lo ext-enotify-common.c
--- tst-valid-notify-method.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I./../variables  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT tst-valid-notify-method.lo -MD -MP -MF .deps/tst-valid-notify-method.Tpo -c -o tst-valid-notify-method.lo tst-valid-notify-method.c
--- cmd-notify.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I./../variables  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT cmd-notify.lo -MD -MP -MF .deps/cmd-notify.Tpo -c -o cmd-notify.lo cmd-notify.c
--- tst-valid-notify-method.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT tst-valid-notify-method.lo -MD -MP -MF .deps/tst-valid-notify-method.Tpo -c tst-valid-notify-method.c  -fPIC -DPIC -o .libs/tst-valid-notify-method.o
--- cmd-notify.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT cmd-notify.lo -MD -MP -MF .deps/cmd-notify.Tpo -c cmd-notify.c  -fPIC -DPIC -o .libs/cmd-notify.o
--- ext-enotify.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-enotify.lo -MD -MP -MF .deps/ext-enotify.Tpo -c ext-enotify.c  -fPIC -DPIC -o .libs/ext-enotify.o
--- ext-enotify-common.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-enotify-common.lo -MD -MP -MF .deps/ext-enotify-common.Tpo -c ext-enotify-common.c  -fPIC -DPIC -o .libs/ext-enotify-common.o
--- ext-enotify.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-enotify.lo -MD -MP -MF .deps/ext-enotify.Tpo -c ext-enotify.c -o ext-enotify.o >/dev/null 2>&1
--- tst-valid-notify-method.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT tst-valid-notify-method.lo -MD -MP -MF .deps/tst-valid-notify-method.Tpo -c tst-valid-notify-method.c -o tst-valid-notify-method.o >/dev/null 2>&1
--- cmd-notify.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT cmd-notify.lo -MD -MP -MF .deps/cmd-notify.Tpo -c cmd-notify.c -o cmd-notify.o >/dev/null 2>&1
--- ext-enotify.lo ---
mv -f .deps/ext-enotify.Tpo .deps/ext-enotify.Plo
--- tst-notify-method-capability.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I./../variables  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT tst-notify-method-capability.lo -MD -MP -MF .deps/tst-notify-method-capability.Tpo -c -o tst-notify-method-capability.lo tst-notify-method-capability.c
--- tst-valid-notify-method.lo ---
mv -f .deps/tst-valid-notify-method.Tpo .deps/tst-valid-notify-method.Plo
--- vmodf-encodeurl.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I./../variables  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT vmodf-encodeurl.lo -MD -MP -MF .deps/vmodf-encodeurl.Tpo -c -o vmodf-encodeurl.lo vmodf-encodeurl.c
--- tst-notify-method-capability.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT tst-notify-method-capability.lo -MD -MP -MF .deps/tst-notify-method-capability.Tpo -c tst-notify-method-capability.c  -fPIC -DPIC -o .libs/tst-notify-method-capability.o
--- vmodf-encodeurl.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT vmodf-encodeurl.lo -MD -MP -MF .deps/vmodf-encodeurl.Tpo -c vmodf-encodeurl.c  -fPIC -DPIC -o .libs/vmodf-encodeurl.o
--- ext-enotify-common.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-enotify-common.lo -MD -MP -MF .deps/ext-enotify-common.Tpo -c ext-enotify-common.c -o ext-enotify-common.o >/dev/null 2>&1
--- tst-notify-method-capability.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT tst-notify-method-capability.lo -MD -MP -MF .deps/tst-notify-method-capability.Tpo -c tst-notify-method-capability.c -o tst-notify-method-capability.o >/dev/null 2>&1
--- cmd-notify.lo ---
mv -f .deps/cmd-notify.Tpo .deps/cmd-notify.Plo
--- vmodf-encodeurl.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT vmodf-encodeurl.lo -MD -MP -MF .deps/vmodf-encodeurl.Tpo -c vmodf-encodeurl.c -o vmodf-encodeurl.o >/dev/null 2>&1
mv -f .deps/vmodf-encodeurl.Tpo .deps/vmodf-encodeurl.Plo
--- tst-notify-method-capability.lo ---
mv -f .deps/tst-notify-method-capability.Tpo .deps/tst-notify-method-capability.Plo
--- ext-enotify-common.lo ---
mv -f .deps/ext-enotify-common.Tpo .deps/ext-enotify-common.Plo
--- libsieve_ext_enotify.la ---
/bin/sh ../../../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../..   -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o libsieve_ext_enotify.la  ext-enotify.lo  ext-enotify-common.lo cmd-notify.lo tst-valid-notify-method.lo  tst-notify-method-capability.lo  vmodf-encodeurl.lo ./mailto/libsieve_ext_enotify_mailto.la 
libtool: link: (cd .libs/libsieve_ext_enotify.lax/libsieve_ext_enotify_mailto.a && ar x "/usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/src/lib-sieve/plugins/enotify/./mailto/.libs/libsieve_ext_enotify_mailto.a")
libtool: link: ar cr .libs/libsieve_ext_enotify.a .libs/ext-enotify.o .libs/ext-enotify-common.o .libs/cmd-notify.o .libs/tst-valid-notify-method.o .libs/tst-notify-method-capability.o .libs/vmodf-encodeurl.o   .libs/libsieve_ext_enotify.lax/libsieve_ext_enotify_mailto.a/ntfy-mailto.o .libs/libsieve_ext_enotify.lax/libsieve_ext_enotify_mailto.a/uri-mailto.o 
libtool: link: ranlib .libs/libsieve_ext_enotify.a
libtool: link: rm -fr .libs/libsieve_ext_enotify.lax
libtool: link: ( cd ".libs" && rm -f "libsieve_ext_enotify.la" && ln -s "../libsieve_ext_enotify.la" "libsieve_ext_enotify.la" )
Making all in notify
--- ext-notify.lo ---
--- ext-notify-common.lo ---
--- cmd-notify.lo ---
--- cmd-denotify.lo ---
--- ext-notify.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I./../../util  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-notify.lo -MD -MP -MF .deps/ext-notify.Tpo -c -o ext-notify.lo ext-notify.c
--- ext-notify-common.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I./../../util  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-notify-common.lo -MD -MP -MF .deps/ext-notify-common.Tpo -c -o ext-notify-common.lo ext-notify-common.c
--- cmd-notify.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I./../../util  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT cmd-notify.lo -MD -MP -MF .deps/cmd-notify.Tpo -c -o cmd-notify.lo cmd-notify.c
--- cmd-denotify.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I./../../util  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT cmd-denotify.lo -MD -MP -MF .deps/cmd-denotify.Tpo -c -o cmd-denotify.lo cmd-denotify.c
--- ext-notify.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../../util -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-notify.lo -MD -MP -MF .deps/ext-notify.Tpo -c ext-notify.c  -fPIC -DPIC -o .libs/ext-notify.o
--- ext-notify-common.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../../util -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-notify-common.lo -MD -MP -MF .deps/ext-notify-common.Tpo -c ext-notify-common.c  -fPIC -DPIC -o .libs/ext-notify-common.o
--- cmd-notify.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../../util -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT cmd-notify.lo -MD -MP -MF .deps/cmd-notify.Tpo -c cmd-notify.c  -fPIC -DPIC -o .libs/cmd-notify.o
--- cmd-denotify.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../../util -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT cmd-denotify.lo -MD -MP -MF .deps/cmd-denotify.Tpo -c cmd-denotify.c  -fPIC -DPIC -o .libs/cmd-denotify.o
--- ext-notify.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../../util -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-notify.lo -MD -MP -MF .deps/ext-notify.Tpo -c ext-notify.c -o ext-notify.o >/dev/null 2>&1
--- cmd-denotify.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../../util -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT cmd-denotify.lo -MD -MP -MF .deps/cmd-denotify.Tpo -c cmd-denotify.c -o cmd-denotify.o >/dev/null 2>&1
--- ext-notify.lo ---
mv -f .deps/ext-notify.Tpo .deps/ext-notify.Plo
--- ext-notify-common.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../../util -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-notify-common.lo -MD -MP -MF .deps/ext-notify-common.Tpo -c ext-notify-common.c -o ext-notify-common.o >/dev/null 2>&1
--- cmd-notify.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../../util -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT cmd-notify.lo -MD -MP -MF .deps/cmd-notify.Tpo -c cmd-notify.c -o cmd-notify.o >/dev/null 2>&1
--- cmd-denotify.lo ---
mv -f .deps/cmd-denotify.Tpo .deps/cmd-denotify.Plo
--- ext-notify-common.lo ---
mv -f .deps/ext-notify-common.Tpo .deps/ext-notify-common.Plo
--- cmd-notify.lo ---
mv -f .deps/cmd-notify.Tpo .deps/cmd-notify.Plo
--- libsieve_ext_notify.la ---
/bin/sh ../../../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../..   -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o libsieve_ext_notify.la  ext-notify.lo ext-notify-common.lo  cmd-notify.lo cmd-denotify.lo  
libtool: link: ar cr .libs/libsieve_ext_notify.a .libs/ext-notify.o .libs/ext-notify-common.o .libs/cmd-notify.o .libs/cmd-denotify.o 
libtool: link: ranlib .libs/libsieve_ext_notify.a
libtool: link: ( cd ".libs" && rm -f "libsieve_ext_notify.la" && ln -s "../libsieve_ext_notify.la" "libsieve_ext_notify.la" )
Making all in environment
--- tst-environment.lo ---
--- ext-environment-common.lo ---
--- ext-environment.lo ---
--- tst-environment.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT tst-environment.lo -MD -MP -MF .deps/tst-environment.Tpo -c -o tst-environment.lo tst-environment.c
--- ext-environment-common.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-environment-common.lo -MD -MP -MF .deps/ext-environment-common.Tpo -c -o ext-environment-common.lo ext-environment-common.c
--- ext-environment.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-environment.lo -MD -MP -MF .deps/ext-environment.Tpo -c -o ext-environment.lo ext-environment.c
--- tst-environment.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT tst-environment.lo -MD -MP -MF .deps/tst-environment.Tpo -c tst-environment.c  -fPIC -DPIC -o .libs/tst-environment.o
--- ext-environment-common.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-environment-common.lo -MD -MP -MF .deps/ext-environment-common.Tpo -c ext-environment-common.c  -fPIC -DPIC -o .libs/ext-environment-common.o
--- ext-environment.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-environment.lo -MD -MP -MF .deps/ext-environment.Tpo -c ext-environment.c  -fPIC -DPIC -o .libs/ext-environment.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-environment.lo -MD -MP -MF .deps/ext-environment.Tpo -c ext-environment.c -o ext-environment.o >/dev/null 2>&1
--- tst-environment.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT tst-environment.lo -MD -MP -MF .deps/tst-environment.Tpo -c tst-environment.c -o tst-environment.o >/dev/null 2>&1
--- ext-environment-common.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-environment-common.lo -MD -MP -MF .deps/ext-environment-common.Tpo -c ext-environment-common.c -o ext-environment-common.o >/dev/null 2>&1
--- ext-environment.lo ---
mv -f .deps/ext-environment.Tpo .deps/ext-environment.Plo
--- tst-environment.lo ---
mv -f .deps/tst-environment.Tpo .deps/tst-environment.Plo
--- ext-environment-common.lo ---
mv -f .deps/ext-environment-common.Tpo .deps/ext-environment-common.Plo
--- libsieve_ext_environment.la ---
/bin/sh ../../../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../..   -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o libsieve_ext_environment.la  tst-environment.lo  ext-environment-common.lo ext-environment.lo  
libtool: link: ar cr .libs/libsieve_ext_environment.a .libs/tst-environment.o .libs/ext-environment-common.o .libs/ext-environment.o 
libtool: link: ranlib .libs/libsieve_ext_environment.a
libtool: link: ( cd ".libs" && rm -f "libsieve_ext_environment.la" && ln -s "../libsieve_ext_environment.la" "libsieve_ext_environment.la" )
Making all in mailbox
--- tag-mailbox-create.lo ---
--- tst-mailboxexists.lo ---
--- ext-mailbox.lo ---
--- tag-mailbox-create.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT tag-mailbox-create.lo -MD -MP -MF .deps/tag-mailbox-create.Tpo -c -o tag-mailbox-create.lo tag-mailbox-create.c
--- tst-mailboxexists.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT tst-mailboxexists.lo -MD -MP -MF .deps/tst-mailboxexists.Tpo -c -o tst-mailboxexists.lo tst-mailboxexists.c
--- ext-mailbox.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-mailbox.lo -MD -MP -MF .deps/ext-mailbox.Tpo -c -o ext-mailbox.lo ext-mailbox.c
--- tag-mailbox-create.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT tag-mailbox-create.lo -MD -MP -MF .deps/tag-mailbox-create.Tpo -c tag-mailbox-create.c  -fPIC -DPIC -o .libs/tag-mailbox-create.o
--- tst-mailboxexists.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT tst-mailboxexists.lo -MD -MP -MF .deps/tst-mailboxexists.Tpo -c tst-mailboxexists.c  -fPIC -DPIC -o .libs/tst-mailboxexists.o
--- ext-mailbox.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-mailbox.lo -MD -MP -MF .deps/ext-mailbox.Tpo -c ext-mailbox.c  -fPIC -DPIC -o .libs/ext-mailbox.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-mailbox.lo -MD -MP -MF .deps/ext-mailbox.Tpo -c ext-mailbox.c -o ext-mailbox.o >/dev/null 2>&1
--- tag-mailbox-create.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT tag-mailbox-create.lo -MD -MP -MF .deps/tag-mailbox-create.Tpo -c tag-mailbox-create.c -o tag-mailbox-create.o >/dev/null 2>&1
--- tst-mailboxexists.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT tst-mailboxexists.lo -MD -MP -MF .deps/tst-mailboxexists.Tpo -c tst-mailboxexists.c -o tst-mailboxexists.o >/dev/null 2>&1
--- ext-mailbox.lo ---
mv -f .deps/ext-mailbox.Tpo .deps/ext-mailbox.Plo
--- tag-mailbox-create.lo ---
mv -f .deps/tag-mailbox-create.Tpo .deps/tag-mailbox-create.Plo
--- tst-mailboxexists.lo ---
mv -f .deps/tst-mailboxexists.Tpo .deps/tst-mailboxexists.Plo
--- libsieve_ext_mailbox.la ---
/bin/sh ../../../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../..   -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o libsieve_ext_mailbox.la  tag-mailbox-create.lo tst-mailboxexists.lo  ext-mailbox.lo  
libtool: link: ar cr .libs/libsieve_ext_mailbox.a .libs/tag-mailbox-create.o .libs/tst-mailboxexists.o .libs/ext-mailbox.o 
libtool: link: ranlib .libs/libsieve_ext_mailbox.a
libtool: link: ( cd ".libs" && rm -f "libsieve_ext_mailbox.la" && ln -s "../libsieve_ext_mailbox.la" "libsieve_ext_mailbox.la" )
Making all in date
--- tst-date.lo ---
--- ext-date-common.lo ---
--- ext-date.lo ---
--- tst-date.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT tst-date.lo -MD -MP -MF .deps/tst-date.Tpo -c -o tst-date.lo tst-date.c
--- ext-date-common.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-date-common.lo -MD -MP -MF .deps/ext-date-common.Tpo -c -o ext-date-common.lo ext-date-common.c
--- ext-date.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-date.lo -MD -MP -MF .deps/ext-date.Tpo -c -o ext-date.lo ext-date.c
--- tst-date.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT tst-date.lo -MD -MP -MF .deps/tst-date.Tpo -c tst-date.c  -fPIC -DPIC -o .libs/tst-date.o
--- ext-date.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-date.lo -MD -MP -MF .deps/ext-date.Tpo -c ext-date.c  -fPIC -DPIC -o .libs/ext-date.o
--- ext-date-common.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-date-common.lo -MD -MP -MF .deps/ext-date-common.Tpo -c ext-date-common.c  -fPIC -DPIC -o .libs/ext-date-common.o
--- ext-date.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-date.lo -MD -MP -MF .deps/ext-date.Tpo -c ext-date.c -o ext-date.o >/dev/null 2>&1
--- tst-date.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT tst-date.lo -MD -MP -MF .deps/tst-date.Tpo -c tst-date.c -o tst-date.o >/dev/null 2>&1
--- ext-date-common.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-date-common.lo -MD -MP -MF .deps/ext-date-common.Tpo -c ext-date-common.c -o ext-date-common.o >/dev/null 2>&1
--- ext-date.lo ---
mv -f .deps/ext-date.Tpo .deps/ext-date.Plo
--- tst-date.lo ---
mv -f .deps/tst-date.Tpo .deps/tst-date.Plo
--- ext-date-common.lo ---
mv -f .deps/ext-date-common.Tpo .deps/ext-date-common.Plo
--- libsieve_ext_date.la ---
/bin/sh ../../../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../..   -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o libsieve_ext_date.la  tst-date.lo ext-date-common.lo  ext-date.lo  
libtool: link: ar cr .libs/libsieve_ext_date.a .libs/tst-date.o .libs/ext-date-common.o .libs/ext-date.o 
libtool: link: ranlib .libs/libsieve_ext_date.a
libtool: link: ( cd ".libs" && rm -f "libsieve_ext_date.la" && ln -s "../libsieve_ext_date.la" "libsieve_ext_date.la" )
Making all in spamvirustest
--- tst-spamvirustest.lo ---
--- ext-spamvirustest-common.lo ---
--- ext-spamvirustest.lo ---
--- tst-spamvirustest.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT tst-spamvirustest.lo -MD -MP -MF .deps/tst-spamvirustest.Tpo -c -o tst-spamvirustest.lo tst-spamvirustest.c
--- ext-spamvirustest-common.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-spamvirustest-common.lo -MD -MP -MF .deps/ext-spamvirustest-common.Tpo -c -o ext-spamvirustest-common.lo ext-spamvirustest-common.c
--- ext-spamvirustest.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-spamvirustest.lo -MD -MP -MF .deps/ext-spamvirustest.Tpo -c -o ext-spamvirustest.lo ext-spamvirustest.c
--- tst-spamvirustest.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT tst-spamvirustest.lo -MD -MP -MF .deps/tst-spamvirustest.Tpo -c tst-spamvirustest.c  -fPIC -DPIC -o .libs/tst-spamvirustest.o
--- ext-spamvirustest-common.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-spamvirustest-common.lo -MD -MP -MF .deps/ext-spamvirustest-common.Tpo -c ext-spamvirustest-common.c  -fPIC -DPIC -o .libs/ext-spamvirustest-common.o
--- ext-spamvirustest.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-spamvirustest.lo -MD -MP -MF .deps/ext-spamvirustest.Tpo -c ext-spamvirustest.c  -fPIC -DPIC -o .libs/ext-spamvirustest.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-spamvirustest.lo -MD -MP -MF .deps/ext-spamvirustest.Tpo -c ext-spamvirustest.c -o ext-spamvirustest.o >/dev/null 2>&1
--- tst-spamvirustest.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT tst-spamvirustest.lo -MD -MP -MF .deps/tst-spamvirustest.Tpo -c tst-spamvirustest.c -o tst-spamvirustest.o >/dev/null 2>&1
--- ext-spamvirustest.lo ---
mv -f .deps/ext-spamvirustest.Tpo .deps/ext-spamvirustest.Plo
--- ext-spamvirustest-common.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-spamvirustest-common.lo -MD -MP -MF .deps/ext-spamvirustest-common.Tpo -c ext-spamvirustest-common.c -o ext-spamvirustest-common.o >/dev/null 2>&1
--- tst-spamvirustest.lo ---
mv -f .deps/tst-spamvirustest.Tpo .deps/tst-spamvirustest.Plo
--- ext-spamvirustest-common.lo ---
mv -f .deps/ext-spamvirustest-common.Tpo .deps/ext-spamvirustest-common.Plo
--- libsieve_ext_spamvirustest.la ---
/bin/sh ../../../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../..   -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o libsieve_ext_spamvirustest.la  tst-spamvirustest.lo  ext-spamvirustest-common.lo ext-spamvirustest.lo  
libtool: link: ar cr .libs/libsieve_ext_spamvirustest.a .libs/tst-spamvirustest.o .libs/ext-spamvirustest-common.o .libs/ext-spamvirustest.o 
libtool: link: ranlib .libs/libsieve_ext_spamvirustest.a
libtool: link: ( cd ".libs" && rm -f "libsieve_ext_spamvirustest.la" && ln -s "../libsieve_ext_spamvirustest.la" "libsieve_ext_spamvirustest.la" )
Making all in ihave
--- tst-ihave.lo ---
--- cmd-error.lo ---
--- ext-ihave-binary.lo ---
--- ext-ihave-common.lo ---
--- tst-ihave.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT tst-ihave.lo -MD -MP -MF .deps/tst-ihave.Tpo -c -o tst-ihave.lo tst-ihave.c
--- cmd-error.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT cmd-error.lo -MD -MP -MF .deps/cmd-error.Tpo -c -o cmd-error.lo cmd-error.c
--- ext-ihave-binary.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-ihave-binary.lo -MD -MP -MF .deps/ext-ihave-binary.Tpo -c -o ext-ihave-binary.lo ext-ihave-binary.c
--- ext-ihave-common.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-ihave-common.lo -MD -MP -MF .deps/ext-ihave-common.Tpo -c -o ext-ihave-common.lo ext-ihave-common.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-ihave-common.lo -MD -MP -MF .deps/ext-ihave-common.Tpo -c ext-ihave-common.c  -fPIC -DPIC -o .libs/ext-ihave-common.o
--- cmd-error.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT cmd-error.lo -MD -MP -MF .deps/cmd-error.Tpo -c cmd-error.c  -fPIC -DPIC -o .libs/cmd-error.o
--- tst-ihave.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT tst-ihave.lo -MD -MP -MF .deps/tst-ihave.Tpo -c tst-ihave.c  -fPIC -DPIC -o .libs/tst-ihave.o
--- ext-ihave-binary.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-ihave-binary.lo -MD -MP -MF .deps/ext-ihave-binary.Tpo -c ext-ihave-binary.c  -fPIC -DPIC -o .libs/ext-ihave-binary.o
--- ext-ihave-common.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-ihave-common.lo -MD -MP -MF .deps/ext-ihave-common.Tpo -c ext-ihave-common.c -o ext-ihave-common.o >/dev/null 2>&1
--- cmd-error.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT cmd-error.lo -MD -MP -MF .deps/cmd-error.Tpo -c cmd-error.c -o cmd-error.o >/dev/null 2>&1
--- tst-ihave.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT tst-ihave.lo -MD -MP -MF .deps/tst-ihave.Tpo -c tst-ihave.c -o tst-ihave.o >/dev/null 2>&1
--- ext-ihave-binary.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-ihave-binary.lo -MD -MP -MF .deps/ext-ihave-binary.Tpo -c ext-ihave-binary.c -o ext-ihave-binary.o >/dev/null 2>&1
--- ext-ihave-common.lo ---
mv -f .deps/ext-ihave-common.Tpo .deps/ext-ihave-common.Plo
--- ext-ihave.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-ihave.lo -MD -MP -MF .deps/ext-ihave.Tpo -c -o ext-ihave.lo ext-ihave.c
--- cmd-error.lo ---
mv -f .deps/cmd-error.Tpo .deps/cmd-error.Plo
--- ext-ihave.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-ihave.lo -MD -MP -MF .deps/ext-ihave.Tpo -c ext-ihave.c  -fPIC -DPIC -o .libs/ext-ihave.o
--- tst-ihave.lo ---
mv -f .deps/tst-ihave.Tpo .deps/tst-ihave.Plo
--- ext-ihave-binary.lo ---
mv -f .deps/ext-ihave-binary.Tpo .deps/ext-ihave-binary.Plo
--- ext-ihave.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-ihave.lo -MD -MP -MF .deps/ext-ihave.Tpo -c ext-ihave.c -o ext-ihave.o >/dev/null 2>&1
mv -f .deps/ext-ihave.Tpo .deps/ext-ihave.Plo
--- libsieve_ext_ihave.la ---
/bin/sh ../../../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../..   -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o libsieve_ext_ihave.la  tst-ihave.lo cmd-error.lo  ext-ihave-binary.lo ext-ihave-common.lo ext-ihave.lo  
libtool: link: ar cr .libs/libsieve_ext_ihave.a .libs/tst-ihave.o .libs/cmd-error.o .libs/ext-ihave-binary.o .libs/ext-ihave-common.o .libs/ext-ihave.o 
libtool: link: ranlib .libs/libsieve_ext_ihave.a
libtool: link: ( cd ".libs" && rm -f "libsieve_ext_ihave.la" && ln -s "../libsieve_ext_ihave.la" "libsieve_ext_ihave.la" )
Making all in editheader
--- cmd-addheader.lo ---
--- cmd-deleteheader.lo ---
--- ext-editheader.lo ---
--- ext-editheader-common.lo ---
--- cmd-addheader.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I./../../util  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT cmd-addheader.lo -MD -MP -MF .deps/cmd-addheader.Tpo -c -o cmd-addheader.lo cmd-addheader.c
--- cmd-deleteheader.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I./../../util  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT cmd-deleteheader.lo -MD -MP -MF .deps/cmd-deleteheader.Tpo -c -o cmd-deleteheader.lo cmd-deleteheader.c
--- ext-editheader.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I./../../util  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-editheader.lo -MD -MP -MF .deps/ext-editheader.Tpo -c -o ext-editheader.lo ext-editheader.c
--- ext-editheader-common.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I./../../util  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-editheader-common.lo -MD -MP -MF .deps/ext-editheader-common.Tpo -c -o ext-editheader-common.lo ext-editheader-common.c
--- cmd-addheader.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../../util -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT cmd-addheader.lo -MD -MP -MF .deps/cmd-addheader.Tpo -c cmd-addheader.c  -fPIC -DPIC -o .libs/cmd-addheader.o
--- ext-editheader.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../../util -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-editheader.lo -MD -MP -MF .deps/ext-editheader.Tpo -c ext-editheader.c  -fPIC -DPIC -o .libs/ext-editheader.o
--- cmd-deleteheader.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../../util -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT cmd-deleteheader.lo -MD -MP -MF .deps/cmd-deleteheader.Tpo -c cmd-deleteheader.c  -fPIC -DPIC -o .libs/cmd-deleteheader.o
--- ext-editheader-common.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../../util -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-editheader-common.lo -MD -MP -MF .deps/ext-editheader-common.Tpo -c ext-editheader-common.c  -fPIC -DPIC -o .libs/ext-editheader-common.o
--- ext-editheader.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../../util -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-editheader.lo -MD -MP -MF .deps/ext-editheader.Tpo -c ext-editheader.c -o ext-editheader.o >/dev/null 2>&1
--- ext-editheader-common.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../../util -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-editheader-common.lo -MD -MP -MF .deps/ext-editheader-common.Tpo -c ext-editheader-common.c -o ext-editheader-common.o >/dev/null 2>&1
--- cmd-addheader.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../../util -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT cmd-addheader.lo -MD -MP -MF .deps/cmd-addheader.Tpo -c cmd-addheader.c -o cmd-addheader.o >/dev/null 2>&1
--- ext-editheader.lo ---
mv -f .deps/ext-editheader.Tpo .deps/ext-editheader.Plo
--- cmd-deleteheader.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../../util -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT cmd-deleteheader.lo -MD -MP -MF .deps/cmd-deleteheader.Tpo -c cmd-deleteheader.c -o cmd-deleteheader.o >/dev/null 2>&1
--- ext-editheader-common.lo ---
mv -f .deps/ext-editheader-common.Tpo .deps/ext-editheader-common.Plo
--- cmd-addheader.lo ---
mv -f .deps/cmd-addheader.Tpo .deps/cmd-addheader.Plo
--- cmd-deleteheader.lo ---
mv -f .deps/cmd-deleteheader.Tpo .deps/cmd-deleteheader.Plo
--- libsieve_ext_editheader.la ---
/bin/sh ../../../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../..   -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o libsieve_ext_editheader.la  cmd-addheader.lo cmd-deleteheader.lo  ext-editheader.lo ext-editheader-common.lo  
libtool: link: ar cr .libs/libsieve_ext_editheader.a .libs/cmd-addheader.o .libs/cmd-deleteheader.o .libs/ext-editheader.o .libs/ext-editheader-common.o 
libtool: link: ranlib .libs/libsieve_ext_editheader.a
libtool: link: ( cd ".libs" && rm -f "libsieve_ext_editheader.la" && ln -s "../libsieve_ext_editheader.la" "libsieve_ext_editheader.la" )
Making all in duplicate
--- tst-duplicate.lo ---
--- ext-duplicate.lo ---
--- ext-duplicate-common.lo ---
--- tst-duplicate.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT tst-duplicate.lo -MD -MP -MF .deps/tst-duplicate.Tpo -c -o tst-duplicate.lo tst-duplicate.c
--- ext-duplicate.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-duplicate.lo -MD -MP -MF .deps/ext-duplicate.Tpo -c -o ext-duplicate.lo ext-duplicate.c
--- ext-duplicate-common.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-duplicate-common.lo -MD -MP -MF .deps/ext-duplicate-common.Tpo -c -o ext-duplicate-common.lo ext-duplicate-common.c
--- tst-duplicate.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT tst-duplicate.lo -MD -MP -MF .deps/tst-duplicate.Tpo -c tst-duplicate.c  -fPIC -DPIC -o .libs/tst-duplicate.o
--- ext-duplicate.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-duplicate.lo -MD -MP -MF .deps/ext-duplicate.Tpo -c ext-duplicate.c  -fPIC -DPIC -o .libs/ext-duplicate.o
--- ext-duplicate-common.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-duplicate-common.lo -MD -MP -MF .deps/ext-duplicate-common.Tpo -c ext-duplicate-common.c  -fPIC -DPIC -o .libs/ext-duplicate-common.o
--- ext-duplicate.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-duplicate.lo -MD -MP -MF .deps/ext-duplicate.Tpo -c ext-duplicate.c -o ext-duplicate.o >/dev/null 2>&1
--- ext-duplicate-common.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-duplicate-common.lo -MD -MP -MF .deps/ext-duplicate-common.Tpo -c ext-duplicate-common.c -o ext-duplicate-common.o >/dev/null 2>&1
--- ext-duplicate.lo ---
mv -f .deps/ext-duplicate.Tpo .deps/ext-duplicate.Plo
--- tst-duplicate.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT tst-duplicate.lo -MD -MP -MF .deps/tst-duplicate.Tpo -c tst-duplicate.c -o tst-duplicate.o >/dev/null 2>&1
--- ext-duplicate-common.lo ---
mv -f .deps/ext-duplicate-common.Tpo .deps/ext-duplicate-common.Plo
--- tst-duplicate.lo ---
mv -f .deps/tst-duplicate.Tpo .deps/tst-duplicate.Plo
--- libsieve_ext_duplicate.la ---
/bin/sh ../../../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../..   -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o libsieve_ext_duplicate.la  tst-duplicate.lo  ext-duplicate.lo ext-duplicate-common.lo  
libtool: link: ar cr .libs/libsieve_ext_duplicate.a .libs/tst-duplicate.o .libs/ext-duplicate.o .libs/ext-duplicate-common.o 
libtool: link: ranlib .libs/libsieve_ext_duplicate.a
libtool: link: ( cd ".libs" && rm -f "libsieve_ext_duplicate.la" && ln -s "../libsieve_ext_duplicate.la" "libsieve_ext_duplicate.la" )
Making all in index
--- ext-index-common.lo ---
--- ext-index.lo ---
--- tag-index.lo ---
--- ext-index-common.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-index-common.lo -MD -MP -MF .deps/ext-index-common.Tpo -c -o ext-index-common.lo ext-index-common.c
--- ext-index.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-index.lo -MD -MP -MF .deps/ext-index.Tpo -c -o ext-index.lo ext-index.c
--- tag-index.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT tag-index.lo -MD -MP -MF .deps/tag-index.Tpo -c -o tag-index.lo tag-index.c
--- ext-index-common.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-index-common.lo -MD -MP -MF .deps/ext-index-common.Tpo -c ext-index-common.c  -fPIC -DPIC -o .libs/ext-index-common.o
--- ext-index.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-index.lo -MD -MP -MF .deps/ext-index.Tpo -c ext-index.c  -fPIC -DPIC -o .libs/ext-index.o
--- tag-index.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT tag-index.lo -MD -MP -MF .deps/tag-index.Tpo -c tag-index.c  -fPIC -DPIC -o .libs/tag-index.o
--- ext-index-common.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-index-common.lo -MD -MP -MF .deps/ext-index-common.Tpo -c ext-index-common.c -o ext-index-common.o >/dev/null 2>&1
--- ext-index.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-index.lo -MD -MP -MF .deps/ext-index.Tpo -c ext-index.c -o ext-index.o >/dev/null 2>&1
--- ext-index-common.lo ---
mv -f .deps/ext-index-common.Tpo .deps/ext-index-common.Plo
--- tag-index.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT tag-index.lo -MD -MP -MF .deps/tag-index.Tpo -c tag-index.c -o tag-index.o >/dev/null 2>&1
--- ext-index.lo ---
mv -f .deps/ext-index.Tpo .deps/ext-index.Plo
--- tag-index.lo ---
mv -f .deps/tag-index.Tpo .deps/tag-index.Plo
--- libsieve_ext_index.la ---
/bin/sh ../../../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../..   -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o libsieve_ext_index.la  ext-index-common.lo ext-index.lo  tag-index.lo  
libtool: link: ar cr .libs/libsieve_ext_index.a .libs/ext-index-common.o .libs/ext-index.o .libs/tag-index.o 
libtool: link: ranlib .libs/libsieve_ext_index.a
libtool: link: ( cd ".libs" && rm -f "libsieve_ext_index.la" && ln -s "../libsieve_ext_index.la" "libsieve_ext_index.la" )
Making all in metadata
--- tst-metadata.lo ---
--- tst-metadataexists.lo ---
--- ext-metadata.lo ---
--- tst-metadata.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I./../variables  -I/usr/local/include/dovecot   -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT tst-metadata.lo -MD -MP -MF .deps/tst-metadata.Tpo -c -o tst-metadata.lo tst-metadata.c
--- tst-metadataexists.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I./../variables  -I/usr/local/include/dovecot   -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT tst-metadataexists.lo -MD -MP -MF .deps/tst-metadataexists.Tpo -c -o tst-metadataexists.lo tst-metadataexists.c
--- ext-metadata.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I./../variables  -I/usr/local/include/dovecot   -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-metadata.lo -MD -MP -MF .deps/ext-metadata.Tpo -c -o ext-metadata.lo ext-metadata.c
--- tst-metadata.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT tst-metadata.lo -MD -MP -MF .deps/tst-metadata.Tpo -c tst-metadata.c  -fPIC -DPIC -o .libs/tst-metadata.o
--- tst-metadataexists.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT tst-metadataexists.lo -MD -MP -MF .deps/tst-metadataexists.Tpo -c tst-metadataexists.c  -fPIC -DPIC -o .libs/tst-metadataexists.o
--- ext-metadata.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-metadata.lo -MD -MP -MF .deps/ext-metadata.Tpo -c ext-metadata.c  -fPIC -DPIC -o .libs/ext-metadata.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-metadata.lo -MD -MP -MF .deps/ext-metadata.Tpo -c ext-metadata.c -o ext-metadata.o >/dev/null 2>&1
--- tst-metadata.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT tst-metadata.lo -MD -MP -MF .deps/tst-metadata.Tpo -c tst-metadata.c -o tst-metadata.o >/dev/null 2>&1
--- tst-metadataexists.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT tst-metadataexists.lo -MD -MP -MF .deps/tst-metadataexists.Tpo -c tst-metadataexists.c -o tst-metadataexists.o >/dev/null 2>&1
--- ext-metadata.lo ---
mv -f .deps/ext-metadata.Tpo .deps/ext-metadata.Plo
--- tst-metadata.lo ---
mv -f .deps/tst-metadata.Tpo .deps/tst-metadata.Plo
--- tst-metadataexists.lo ---
mv -f .deps/tst-metadataexists.Tpo .deps/tst-metadataexists.Plo
--- libsieve_ext_metadata.la ---
/bin/sh ../../../../libtool  --tag=CC    --mode=link cc   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -module -avoid-version  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o libsieve_ext_metadata.la  tst-metadata.lo tst-metadataexists.lo  ext-metadata.lo  
libtool: link: ar cr .libs/libsieve_ext_metadata.a .libs/tst-metadata.o .libs/tst-metadataexists.o .libs/ext-metadata.o 
libtool: link: ranlib .libs/libsieve_ext_metadata.a
libtool: link: ( cd ".libs" && rm -f "libsieve_ext_metadata.la" && ln -s "../libsieve_ext_metadata.la" "libsieve_ext_metadata.la" )
Making all in mime
--- ext-mime-common.lo ---
--- cmd-foreverypart.lo ---
--- cmd-break.lo ---
--- cmd-extracttext.lo ---
--- ext-mime-common.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I./../../util  -I./../variables   -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-mime-common.lo -MD -MP -MF .deps/ext-mime-common.Tpo -c -o ext-mime-common.lo ext-mime-common.c
--- cmd-foreverypart.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I./../../util  -I./../variables   -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT cmd-foreverypart.lo -MD -MP -MF .deps/cmd-foreverypart.Tpo -c -o cmd-foreverypart.lo cmd-foreverypart.c
--- cmd-extracttext.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I./../../util  -I./../variables   -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT cmd-extracttext.lo -MD -MP -MF .deps/cmd-extracttext.Tpo -c -o cmd-extracttext.lo cmd-extracttext.c
--- cmd-break.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I./../../util  -I./../variables   -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT cmd-break.lo -MD -MP -MF .deps/cmd-break.Tpo -c -o cmd-break.lo cmd-break.c
--- ext-mime-common.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../../util -I./../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-mime-common.lo -MD -MP -MF .deps/ext-mime-common.Tpo -c ext-mime-common.c  -fPIC -DPIC -o .libs/ext-mime-common.o
--- cmd-break.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../../util -I./../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT cmd-break.lo -MD -MP -MF .deps/cmd-break.Tpo -c cmd-break.c  -fPIC -DPIC -o .libs/cmd-break.o
--- cmd-foreverypart.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../../util -I./../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT cmd-foreverypart.lo -MD -MP -MF .deps/cmd-foreverypart.Tpo -c cmd-foreverypart.c  -fPIC -DPIC -o .libs/cmd-foreverypart.o
--- cmd-extracttext.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../../util -I./../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT cmd-extracttext.lo -MD -MP -MF .deps/cmd-extracttext.Tpo -c cmd-extracttext.c  -fPIC -DPIC -o .libs/cmd-extracttext.o
--- ext-mime-common.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../../util -I./../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-mime-common.lo -MD -MP -MF .deps/ext-mime-common.Tpo -c ext-mime-common.c -o ext-mime-common.o >/dev/null 2>&1
--- cmd-break.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../../util -I./../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT cmd-break.lo -MD -MP -MF .deps/cmd-break.Tpo -c cmd-break.c -o cmd-break.o >/dev/null 2>&1
--- cmd-foreverypart.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../../util -I./../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT cmd-foreverypart.lo -MD -MP -MF .deps/cmd-foreverypart.Tpo -c cmd-foreverypart.c -o cmd-foreverypart.o >/dev/null 2>&1
--- ext-mime-common.lo ---
mv -f .deps/ext-mime-common.Tpo .deps/ext-mime-common.Plo
--- cmd-extracttext.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../../util -I./../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT cmd-extracttext.lo -MD -MP -MF .deps/cmd-extracttext.Tpo -c cmd-extracttext.c -o cmd-extracttext.o >/dev/null 2>&1
--- tag-mime.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I./../../util  -I./../variables   -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT tag-mime.lo -MD -MP -MF .deps/tag-mime.Tpo -c -o tag-mime.lo tag-mime.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../../util -I./../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT tag-mime.lo -MD -MP -MF .deps/tag-mime.Tpo -c tag-mime.c  -fPIC -DPIC -o .libs/tag-mime.o
--- cmd-break.lo ---
mv -f .deps/cmd-break.Tpo .deps/cmd-break.Plo
--- ext-mime.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I./../../util  -I./../variables   -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-mime.lo -MD -MP -MF .deps/ext-mime.Tpo -c -o ext-mime.lo ext-mime.c
--- cmd-foreverypart.lo ---
mv -f .deps/cmd-foreverypart.Tpo .deps/cmd-foreverypart.Plo
--- ext-foreverypart.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I./../../util  -I./../variables   -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-foreverypart.lo -MD -MP -MF .deps/ext-foreverypart.Tpo -c -o ext-foreverypart.lo ext-foreverypart.c
--- ext-mime.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../../util -I./../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-mime.lo -MD -MP -MF .deps/ext-mime.Tpo -c ext-mime.c  -fPIC -DPIC -o .libs/ext-mime.o
--- cmd-extracttext.lo ---
mv -f .deps/cmd-extracttext.Tpo .deps/cmd-extracttext.Plo
--- ext-extracttext.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I./../../util  -I./../variables   -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-extracttext.lo -MD -MP -MF .deps/ext-extracttext.Tpo -c -o ext-extracttext.lo ext-extracttext.c
--- ext-foreverypart.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../../util -I./../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-foreverypart.lo -MD -MP -MF .deps/ext-foreverypart.Tpo -c ext-foreverypart.c  -fPIC -DPIC -o .libs/ext-foreverypart.o
--- ext-extracttext.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../../util -I./../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-extracttext.lo -MD -MP -MF .deps/ext-extracttext.Tpo -c ext-extracttext.c  -fPIC -DPIC -o .libs/ext-extracttext.o
--- ext-mime.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../../util -I./../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-mime.lo -MD -MP -MF .deps/ext-mime.Tpo -c ext-mime.c -o ext-mime.o >/dev/null 2>&1
--- ext-foreverypart.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../../util -I./../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-foreverypart.lo -MD -MP -MF .deps/ext-foreverypart.Tpo -c ext-foreverypart.c -o ext-foreverypart.o >/dev/null 2>&1
--- tag-mime.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../../util -I./../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT tag-mime.lo -MD -MP -MF .deps/tag-mime.Tpo -c tag-mime.c -o tag-mime.o >/dev/null 2>&1
--- ext-extracttext.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I./../../util -I./../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-extracttext.lo -MD -MP -MF .deps/ext-extracttext.Tpo -c ext-extracttext.c -o ext-extracttext.o >/dev/null 2>&1
--- ext-mime.lo ---
mv -f .deps/ext-mime.Tpo .deps/ext-mime.Plo
--- ext-foreverypart.lo ---
mv -f .deps/ext-foreverypart.Tpo .deps/ext-foreverypart.Plo
--- ext-extracttext.lo ---
mv -f .deps/ext-extracttext.Tpo .deps/ext-extracttext.Plo
--- tag-mime.lo ---
mv -f .deps/tag-mime.Tpo .deps/tag-mime.Plo
--- libsieve_ext_mime.la ---
/bin/sh ../../../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../..   -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o libsieve_ext_mime.la  ext-mime-common.lo cmd-foreverypart.lo cmd-break.lo cmd-extracttext.lo  tag-mime.lo ext-mime.lo ext-foreverypart.lo ext-extracttext.lo  
libtool: link: ar cr .libs/libsieve_ext_mime.a .libs/ext-mime-common.o .libs/cmd-foreverypart.o .libs/cmd-break.o .libs/cmd-extracttext.o .libs/tag-mime.o .libs/ext-mime.o .libs/ext-foreverypart.o .libs/ext-extracttext.o 
libtool: link: ranlib .libs/libsieve_ext_mime.a
libtool: link: ( cd ".libs" && rm -f "libsieve_ext_mime.la" && ln -s "../libsieve_ext_mime.la" "libsieve_ext_mime.la" )
Making all in special-use
--- tag-specialuse.lo ---
--- tst-specialuse-exists.lo ---
--- ext-special-use-common.lo ---
--- ext-special-use.lo ---
--- tag-specialuse.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT tag-specialuse.lo -MD -MP -MF .deps/tag-specialuse.Tpo -c -o tag-specialuse.lo tag-specialuse.c
--- tst-specialuse-exists.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT tst-specialuse-exists.lo -MD -MP -MF .deps/tst-specialuse-exists.Tpo -c -o tst-specialuse-exists.lo tst-specialuse-exists.c
--- ext-special-use-common.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-special-use-common.lo -MD -MP -MF .deps/ext-special-use-common.Tpo -c -o ext-special-use-common.lo ext-special-use-common.c
--- ext-special-use.lo ---
/bin/sh ../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../..  -I./../..  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-special-use.lo -MD -MP -MF .deps/ext-special-use.Tpo -c -o ext-special-use.lo ext-special-use.c
--- tag-specialuse.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT tag-specialuse.lo -MD -MP -MF .deps/tag-specialuse.Tpo -c tag-specialuse.c  -fPIC -DPIC -o .libs/tag-specialuse.o
--- tst-specialuse-exists.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT tst-specialuse-exists.lo -MD -MP -MF .deps/tst-specialuse-exists.Tpo -c tst-specialuse-exists.c  -fPIC -DPIC -o .libs/tst-specialuse-exists.o
--- ext-special-use-common.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-special-use-common.lo -MD -MP -MF .deps/ext-special-use-common.Tpo -c ext-special-use-common.c  -fPIC -DPIC -o .libs/ext-special-use-common.o
--- ext-special-use.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-special-use.lo -MD -MP -MF .deps/ext-special-use.Tpo -c ext-special-use.c  -fPIC -DPIC -o .libs/ext-special-use.o
--- ext-special-use-common.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-special-use-common.lo -MD -MP -MF .deps/ext-special-use-common.Tpo -c ext-special-use-common.c -o ext-special-use-common.o >/dev/null 2>&1
--- ext-special-use.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT ext-special-use.lo -MD -MP -MF .deps/ext-special-use.Tpo -c ext-special-use.c -o ext-special-use.o >/dev/null 2>&1
--- tag-specialuse.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT tag-specialuse.lo -MD -MP -MF .deps/tag-specialuse.Tpo -c tag-specialuse.c -o tag-specialuse.o >/dev/null 2>&1
--- ext-special-use-common.lo ---
mv -f .deps/ext-special-use-common.Tpo .deps/ext-special-use-common.Plo
--- ext-special-use.lo ---
mv -f .deps/ext-special-use.Tpo .deps/ext-special-use.Plo
--- tst-specialuse-exists.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../.. -I./../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../.. -MT tst-specialuse-exists.lo -MD -MP -MF .deps/tst-specialuse-exists.Tpo -c tst-specialuse-exists.c -o tst-specialuse-exists.o >/dev/null 2>&1
--- tag-specialuse.lo ---
mv -f .deps/tag-specialuse.Tpo .deps/tag-specialuse.Plo
--- tst-specialuse-exists.lo ---
mv -f .deps/tst-specialuse-exists.Tpo .deps/tst-specialuse-exists.Plo
--- libsieve_ext_special_use.la ---
/bin/sh ../../../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../..   -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o libsieve_ext_special_use.la  tag-specialuse.lo  tst-specialuse-exists.lo ext-special-use-common.lo ext-special-use.lo  
libtool: link: ar cr .libs/libsieve_ext_special_use.a .libs/tag-specialuse.o .libs/tst-specialuse-exists.o .libs/ext-special-use-common.o .libs/ext-special-use.o 
libtool: link: ranlib .libs/libsieve_ext_special_use.a
libtool: link: ( cd ".libs" && rm -f "libsieve_ext_special_use.la" && ln -s "../libsieve_ext_special_use.la" "libsieve_ext_special_use.la" )
Making all in vnd.dovecot
--- all-recursive ---
Making all in debug
--- cmd-debug-log.lo ---
--- ext-debug.lo ---
--- cmd-debug-log.lo ---
/bin/sh ../../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../../..  -I./../../..  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../../.. -MT cmd-debug-log.lo -MD -MP -MF .deps/cmd-debug-log.Tpo -c -o cmd-debug-log.lo cmd-debug-log.c
--- ext-debug.lo ---
/bin/sh ../../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../../..  -I./../../..  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../../.. -MT ext-debug.lo -MD -MP -MF .deps/ext-debug.Tpo -c -o ext-debug.lo ext-debug.c
--- cmd-debug-log.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../../.. -I./../../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../../.. -MT cmd-debug-log.lo -MD -MP -MF .deps/cmd-debug-log.Tpo -c cmd-debug-log.c  -fPIC -DPIC -o .libs/cmd-debug-log.o
--- ext-debug.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../../.. -I./../../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../../.. -MT ext-debug.lo -MD -MP -MF .deps/ext-debug.Tpo -c ext-debug.c  -fPIC -DPIC -o .libs/ext-debug.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../../.. -I./../../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../../.. -MT ext-debug.lo -MD -MP -MF .deps/ext-debug.Tpo -c ext-debug.c -o ext-debug.o >/dev/null 2>&1
--- cmd-debug-log.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../../.. -I./../../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../../.. -MT cmd-debug-log.lo -MD -MP -MF .deps/cmd-debug-log.Tpo -c cmd-debug-log.c -o cmd-debug-log.o >/dev/null 2>&1
--- ext-debug.lo ---
mv -f .deps/ext-debug.Tpo .deps/ext-debug.Plo
--- cmd-debug-log.lo ---
mv -f .deps/cmd-debug-log.Tpo .deps/cmd-debug-log.Plo
--- libsieve_ext_debug.la ---
/bin/sh ../../../../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../../..   -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o libsieve_ext_debug.la  cmd-debug-log.lo ext-debug.lo  
libtool: link: ar cr .libs/libsieve_ext_debug.a .libs/cmd-debug-log.o .libs/ext-debug.o 
libtool: link: ranlib .libs/libsieve_ext_debug.a
libtool: link: ( cd ".libs" && rm -f "libsieve_ext_debug.la" && ln -s "../libsieve_ext_debug.la" "libsieve_ext_debug.la" )
Making all in environment
--- ext-vnd-environment.lo ---
--- ext-vnd-environment-items.lo ---
--- ext-vnd-environment-variables.lo ---
--- ext-vnd-environment.lo ---
/bin/sh ../../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../../..  -I./../../..  -I./../../environment  -I./../../variables  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../../.. -MT ext-vnd-environment.lo -MD -MP -MF .deps/ext-vnd-environment.Tpo -c -o ext-vnd-environment.lo ext-vnd-environment.c
--- ext-vnd-environment-items.lo ---
/bin/sh ../../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../../..  -I./../../..  -I./../../environment  -I./../../variables  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../../.. -MT ext-vnd-environment-items.lo -MD -MP -MF .deps/ext-vnd-environment-items.Tpo -c -o ext-vnd-environment-items.lo ext-vnd-environment-items.c
--- ext-vnd-environment-variables.lo ---
/bin/sh ../../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../../..  -I./../../..  -I./../../environment  -I./../../variables  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../../.. -MT ext-vnd-environment-variables.lo -MD -MP -MF .deps/ext-vnd-environment-variables.Tpo -c -o ext-vnd-environment-variables.lo ext-vnd-environment-variables.c
--- ext-vnd-environment.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../../.. -I./../../.. -I./../../environment -I./../../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../../.. -MT ext-vnd-environment.lo -MD -MP -MF .deps/ext-vnd-environment.Tpo -c ext-vnd-environment.c  -fPIC -DPIC -o .libs/ext-vnd-environment.o
--- ext-vnd-environment-variables.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../../.. -I./../../.. -I./../../environment -I./../../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../../.. -MT ext-vnd-environment-variables.lo -MD -MP -MF .deps/ext-vnd-environment-variables.Tpo -c ext-vnd-environment-variables.c  -fPIC -DPIC -o .libs/ext-vnd-environment-variables.o
--- ext-vnd-environment-items.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../../.. -I./../../.. -I./../../environment -I./../../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../../.. -MT ext-vnd-environment-items.lo -MD -MP -MF .deps/ext-vnd-environment-items.Tpo -c ext-vnd-environment-items.c  -fPIC -DPIC -o .libs/ext-vnd-environment-items.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../../.. -I./../../.. -I./../../environment -I./../../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../../.. -MT ext-vnd-environment-items.lo -MD -MP -MF .deps/ext-vnd-environment-items.Tpo -c ext-vnd-environment-items.c -o ext-vnd-environment-items.o >/dev/null 2>&1
--- ext-vnd-environment.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../../.. -I./../../.. -I./../../environment -I./../../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../../.. -MT ext-vnd-environment.lo -MD -MP -MF .deps/ext-vnd-environment.Tpo -c ext-vnd-environment.c -o ext-vnd-environment.o >/dev/null 2>&1
--- ext-vnd-environment-variables.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../../.. -I./../../.. -I./../../environment -I./../../variables -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../../.. -MT ext-vnd-environment-variables.lo -MD -MP -MF .deps/ext-vnd-environment-variables.Tpo -c ext-vnd-environment-variables.c -o ext-vnd-environment-variables.o >/dev/null 2>&1
--- ext-vnd-environment-items.lo ---
mv -f .deps/ext-vnd-environment-items.Tpo .deps/ext-vnd-environment-items.Plo
--- ext-vnd-environment.lo ---
mv -f .deps/ext-vnd-environment.Tpo .deps/ext-vnd-environment.Plo
--- ext-vnd-environment-variables.lo ---
mv -f .deps/ext-vnd-environment-variables.Tpo .deps/ext-vnd-environment-variables.Plo
--- libsieve_ext_vnd_environment.la ---
/bin/sh ../../../../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../../..   -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o libsieve_ext_vnd_environment.la  ext-vnd-environment.lo  ext-vnd-environment-items.lo ext-vnd-environment-variables.lo  
libtool: link: ar cr .libs/libsieve_ext_vnd_environment.a .libs/ext-vnd-environment.o .libs/ext-vnd-environment-items.o .libs/ext-vnd-environment-variables.o 
libtool: link: ranlib .libs/libsieve_ext_vnd_environment.a
libtool: link: ( cd ".libs" && rm -f "libsieve_ext_vnd_environment.la" && ln -s "../libsieve_ext_vnd_environment.la" "libsieve_ext_vnd_environment.la" )
Making all in report
--- ext-vnd-report.lo ---
--- ext-vnd-report-common.lo ---
--- cmd-report.lo ---
--- ext-vnd-report.lo ---
/bin/sh ../../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../../..  -I./../../..  -I./../../../util  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../../.. -MT ext-vnd-report.lo -MD -MP -MF .deps/ext-vnd-report.Tpo -c -o ext-vnd-report.lo ext-vnd-report.c
--- ext-vnd-report-common.lo ---
/bin/sh ../../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../../..  -I./../../..  -I./../../../util  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../../.. -MT ext-vnd-report-common.lo -MD -MP -MF .deps/ext-vnd-report-common.Tpo -c -o ext-vnd-report-common.lo ext-vnd-report-common.c
--- cmd-report.lo ---
/bin/sh ../../../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../../../..  -I./../../..  -I./../../../util  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../../.. -MT cmd-report.lo -MD -MP -MF .deps/cmd-report.Tpo -c -o cmd-report.lo cmd-report.c
--- ext-vnd-report.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../../.. -I./../../.. -I./../../../util -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../../.. -MT ext-vnd-report.lo -MD -MP -MF .deps/ext-vnd-report.Tpo -c ext-vnd-report.c  -fPIC -DPIC -o .libs/ext-vnd-report.o
--- ext-vnd-report-common.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../../.. -I./../../.. -I./../../../util -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../../.. -MT ext-vnd-report-common.lo -MD -MP -MF .deps/ext-vnd-report-common.Tpo -c ext-vnd-report-common.c  -fPIC -DPIC -o .libs/ext-vnd-report-common.o
--- cmd-report.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../../.. -I./../../.. -I./../../../util -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../../.. -MT cmd-report.lo -MD -MP -MF .deps/cmd-report.Tpo -c cmd-report.c  -fPIC -DPIC -o .libs/cmd-report.o
--- ext-vnd-report-common.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../../.. -I./../../.. -I./../../../util -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../../.. -MT ext-vnd-report-common.lo -MD -MP -MF .deps/ext-vnd-report-common.Tpo -c ext-vnd-report-common.c -o ext-vnd-report-common.o >/dev/null 2>&1
--- ext-vnd-report.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../../.. -I./../../.. -I./../../../util -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../../.. -MT ext-vnd-report.lo -MD -MP -MF .deps/ext-vnd-report.Tpo -c ext-vnd-report.c -o ext-vnd-report.o >/dev/null 2>&1
--- ext-vnd-report-common.lo ---
mv -f .deps/ext-vnd-report-common.Tpo .deps/ext-vnd-report-common.Plo
--- ext-vnd-report.lo ---
mv -f .deps/ext-vnd-report.Tpo .deps/ext-vnd-report.Plo
--- cmd-report.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../../../.. -I./../../.. -I./../../../util -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../../.. -MT cmd-report.lo -MD -MP -MF .deps/cmd-report.Tpo -c cmd-report.c -o cmd-report.o >/dev/null 2>&1
mv -f .deps/cmd-report.Tpo .deps/cmd-report.Plo
--- libsieve_ext_vnd_report.la ---
/bin/sh ../../../../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../../../..   -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o libsieve_ext_vnd_report.la  ext-vnd-report.lo  ext-vnd-report-common.lo cmd-report.lo  
libtool: link: ar cr .libs/libsieve_ext_vnd_report.a .libs/ext-vnd-report.o .libs/ext-vnd-report-common.o .libs/cmd-report.o 
libtool: link: ranlib .libs/libsieve_ext_vnd_report.a
libtool: link: ( cd ".libs" && rm -f "libsieve_ext_vnd_report.la" && ln -s "../libsieve_ext_vnd_report.la" "libsieve_ext_vnd_report.la" )
--- sieve-settings.lo ---
--- sieve-message.lo ---
--- sieve-smtp.lo ---
--- sieve-lexer.lo ---
--- sieve-settings.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot    -I../../src/lib-sieve/util  -DMODULEDIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-settings.lo -MD -MP -MF .deps/sieve-settings.Tpo -c -o sieve-settings.lo sieve-settings.c
--- sieve-message.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot    -I../../src/lib-sieve/util  -DMODULEDIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-message.lo -MD -MP -MF .deps/sieve-message.Tpo -c -o sieve-message.lo sieve-message.c
--- sieve-smtp.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot    -I../../src/lib-sieve/util  -DMODULEDIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-smtp.lo -MD -MP -MF .deps/sieve-smtp.Tpo -c -o sieve-smtp.lo sieve-smtp.c
--- sieve-lexer.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot    -I../../src/lib-sieve/util  -DMODULEDIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-lexer.lo -MD -MP -MF .deps/sieve-lexer.Tpo -c -o sieve-lexer.lo sieve-lexer.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-lexer.lo -MD -MP -MF .deps/sieve-lexer.Tpo -c sieve-lexer.c  -fPIC -DPIC -o .libs/sieve-lexer.o
--- sieve-message.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-message.lo -MD -MP -MF .deps/sieve-message.Tpo -c sieve-message.c  -fPIC -DPIC -o .libs/sieve-message.o
--- sieve-settings.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-settings.lo -MD -MP -MF .deps/sieve-settings.Tpo -c sieve-settings.c  -fPIC -DPIC -o .libs/sieve-settings.o
--- sieve-smtp.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-smtp.lo -MD -MP -MF .deps/sieve-smtp.Tpo -c sieve-smtp.c  -fPIC -DPIC -o .libs/sieve-smtp.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-smtp.lo -MD -MP -MF .deps/sieve-smtp.Tpo -c sieve-smtp.c -o sieve-smtp.o >/dev/null 2>&1
--- sieve-settings.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-settings.lo -MD -MP -MF .deps/sieve-settings.Tpo -c sieve-settings.c -o sieve-settings.o >/dev/null 2>&1
--- sieve-smtp.lo ---
mv -f .deps/sieve-smtp.Tpo .deps/sieve-smtp.Plo
--- sieve-script.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot    -I../../src/lib-sieve/util  -DMODULEDIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-script.lo -MD -MP -MF .deps/sieve-script.Tpo -c -o sieve-script.lo sieve-script.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-script.lo -MD -MP -MF .deps/sieve-script.Tpo -c sieve-script.c  -fPIC -DPIC -o .libs/sieve-script.o
--- sieve-settings.lo ---
mv -f .deps/sieve-settings.Tpo .deps/sieve-settings.Plo
--- sieve-storage.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot    -I../../src/lib-sieve/util  -DMODULEDIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-storage.lo -MD -MP -MF .deps/sieve-storage.Tpo -c -o sieve-storage.lo sieve-storage.c
--- sieve-lexer.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-lexer.lo -MD -MP -MF .deps/sieve-lexer.Tpo -c sieve-lexer.c -o sieve-lexer.o >/dev/null 2>&1
--- sieve-storage.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-storage.lo -MD -MP -MF .deps/sieve-storage.Tpo -c sieve-storage.c  -fPIC -DPIC -o .libs/sieve-storage.o
--- sieve-script.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-script.lo -MD -MP -MF .deps/sieve-script.Tpo -c sieve-script.c -o sieve-script.o >/dev/null 2>&1
--- sieve-lexer.lo ---
mv -f .deps/sieve-lexer.Tpo .deps/sieve-lexer.Plo
--- sieve-storage-sync.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot    -I../../src/lib-sieve/util  -DMODULEDIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-storage-sync.lo -MD -MP -MF .deps/sieve-storage-sync.Tpo -c -o sieve-storage-sync.lo sieve-storage-sync.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-storage-sync.lo -MD -MP -MF .deps/sieve-storage-sync.Tpo -c sieve-storage-sync.c  -fPIC -DPIC -o .libs/sieve-storage-sync.o
--- sieve-message.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-message.lo -MD -MP -MF .deps/sieve-message.Tpo -c sieve-message.c -o sieve-message.o >/dev/null 2>&1
--- sieve-storage-sync.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-storage-sync.lo -MD -MP -MF .deps/sieve-storage-sync.Tpo -c sieve-storage-sync.c -o sieve-storage-sync.o >/dev/null 2>&1
--- sieve-storage.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-storage.lo -MD -MP -MF .deps/sieve-storage.Tpo -c sieve-storage.c -o sieve-storage.o >/dev/null 2>&1
--- sieve-script.lo ---
mv -f .deps/sieve-script.Tpo .deps/sieve-script.Plo
--- sieve-ast.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot    -I../../src/lib-sieve/util  -DMODULEDIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-ast.lo -MD -MP -MF .deps/sieve-ast.Tpo -c -o sieve-ast.lo sieve-ast.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-ast.lo -MD -MP -MF .deps/sieve-ast.Tpo -c sieve-ast.c  -fPIC -DPIC -o .libs/sieve-ast.o
--- sieve-storage-sync.lo ---
mv -f .deps/sieve-storage-sync.Tpo .deps/sieve-storage-sync.Plo
--- sieve-binary.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot    -I../../src/lib-sieve/util  -DMODULEDIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-binary.lo -MD -MP -MF .deps/sieve-binary.Tpo -c -o sieve-binary.lo sieve-binary.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-binary.lo -MD -MP -MF .deps/sieve-binary.Tpo -c sieve-binary.c  -fPIC -DPIC -o .libs/sieve-binary.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-binary.lo -MD -MP -MF .deps/sieve-binary.Tpo -c sieve-binary.c -o sieve-binary.o >/dev/null 2>&1
--- sieve-ast.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-ast.lo -MD -MP -MF .deps/sieve-ast.Tpo -c sieve-ast.c -o sieve-ast.o >/dev/null 2>&1
--- sieve-storage.lo ---
mv -f .deps/sieve-storage.Tpo .deps/sieve-storage.Plo
--- sieve-binary-file.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot    -I../../src/lib-sieve/util  -DMODULEDIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-binary-file.lo -MD -MP -MF .deps/sieve-binary-file.Tpo -c -o sieve-binary-file.lo sieve-binary-file.c
--- sieve-message.lo ---
mv -f .deps/sieve-message.Tpo .deps/sieve-message.Plo
--- sieve-binary-code.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot    -I../../src/lib-sieve/util  -DMODULEDIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-binary-code.lo -MD -MP -MF .deps/sieve-binary-code.Tpo -c -o sieve-binary-code.lo sieve-binary-code.c
--- sieve-binary-file.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-binary-file.lo -MD -MP -MF .deps/sieve-binary-file.Tpo -c sieve-binary-file.c  -fPIC -DPIC -o .libs/sieve-binary-file.o
--- sieve-binary-code.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-binary-code.lo -MD -MP -MF .deps/sieve-binary-code.Tpo -c sieve-binary-code.c  -fPIC -DPIC -o .libs/sieve-binary-code.o
--- sieve-binary.lo ---
mv -f .deps/sieve-binary.Tpo .deps/sieve-binary.Plo
--- sieve-binary-debug.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot    -I../../src/lib-sieve/util  -DMODULEDIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-binary-debug.lo -MD -MP -MF .deps/sieve-binary-debug.Tpo -c -o sieve-binary-debug.lo sieve-binary-debug.c
--- sieve-binary-code.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-binary-code.lo -MD -MP -MF .deps/sieve-binary-code.Tpo -c sieve-binary-code.c -o sieve-binary-code.o >/dev/null 2>&1
--- sieve-binary-debug.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-binary-debug.lo -MD -MP -MF .deps/sieve-binary-debug.Tpo -c sieve-binary-debug.c  -fPIC -DPIC -o .libs/sieve-binary-debug.o
--- sieve-ast.lo ---
mv -f .deps/sieve-ast.Tpo .deps/sieve-ast.Plo
--- sieve-parser.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot    -I../../src/lib-sieve/util  -DMODULEDIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-parser.lo -MD -MP -MF .deps/sieve-parser.Tpo -c -o sieve-parser.lo sieve-parser.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-parser.lo -MD -MP -MF .deps/sieve-parser.Tpo -c sieve-parser.c  -fPIC -DPIC -o .libs/sieve-parser.o
--- sieve-binary-debug.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-binary-debug.lo -MD -MP -MF .deps/sieve-binary-debug.Tpo -c sieve-binary-debug.c -o sieve-binary-debug.o >/dev/null 2>&1
--- sieve-binary-file.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-binary-file.lo -MD -MP -MF .deps/sieve-binary-file.Tpo -c sieve-binary-file.c -o sieve-binary-file.o >/dev/null 2>&1
--- sieve-binary-code.lo ---
mv -f .deps/sieve-binary-code.Tpo .deps/sieve-binary-code.Plo
--- sieve-address.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot    -I../../src/lib-sieve/util  -DMODULEDIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-address.lo -MD -MP -MF .deps/sieve-address.Tpo -c -o sieve-address.lo sieve-address.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-address.lo -MD -MP -MF .deps/sieve-address.Tpo -c sieve-address.c  -fPIC -DPIC -o .libs/sieve-address.o
--- sieve-binary-debug.lo ---
mv -f .deps/sieve-binary-debug.Tpo .deps/sieve-binary-debug.Plo
--- sieve-validator.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot    -I../../src/lib-sieve/util  -DMODULEDIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-validator.lo -MD -MP -MF .deps/sieve-validator.Tpo -c -o sieve-validator.lo sieve-validator.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-validator.lo -MD -MP -MF .deps/sieve-validator.Tpo -c sieve-validator.c  -fPIC -DPIC -o .libs/sieve-validator.o
--- sieve-parser.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-parser.lo -MD -MP -MF .deps/sieve-parser.Tpo -c sieve-parser.c -o sieve-parser.o >/dev/null 2>&1
--- sieve-address.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-address.lo -MD -MP -MF .deps/sieve-address.Tpo -c sieve-address.c -o sieve-address.o >/dev/null 2>&1
--- sieve-parser.lo ---
mv -f .deps/sieve-parser.Tpo .deps/sieve-parser.Plo
--- sieve-generator.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot    -I../../src/lib-sieve/util  -DMODULEDIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-generator.lo -MD -MP -MF .deps/sieve-generator.Tpo -c -o sieve-generator.lo sieve-generator.c
--- sieve-address.lo ---
mv -f .deps/sieve-address.Tpo .deps/sieve-address.Plo
--- sieve-binary-file.lo ---
mv -f .deps/sieve-binary-file.Tpo .deps/sieve-binary-file.Plo
--- sieve-execute.lo ---
--- sieve-interpreter.lo ---
--- sieve-execute.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot    -I../../src/lib-sieve/util  -DMODULEDIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-execute.lo -MD -MP -MF .deps/sieve-execute.Tpo -c -o sieve-execute.lo sieve-execute.c
--- sieve-interpreter.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot    -I../../src/lib-sieve/util  -DMODULEDIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-interpreter.lo -MD -MP -MF .deps/sieve-interpreter.Tpo -c -o sieve-interpreter.lo sieve-interpreter.c
--- sieve-generator.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-generator.lo -MD -MP -MF .deps/sieve-generator.Tpo -c sieve-generator.c  -fPIC -DPIC -o .libs/sieve-generator.o
--- sieve-execute.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-execute.lo -MD -MP -MF .deps/sieve-execute.Tpo -c sieve-execute.c  -fPIC -DPIC -o .libs/sieve-execute.o
--- sieve-interpreter.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-interpreter.lo -MD -MP -MF .deps/sieve-interpreter.Tpo -c sieve-interpreter.c  -fPIC -DPIC -o .libs/sieve-interpreter.o
--- sieve-execute.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-execute.lo -MD -MP -MF .deps/sieve-execute.Tpo -c sieve-execute.c -o sieve-execute.o >/dev/null 2>&1
--- sieve-generator.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-generator.lo -MD -MP -MF .deps/sieve-generator.Tpo -c sieve-generator.c -o sieve-generator.o >/dev/null 2>&1
--- sieve-validator.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-validator.lo -MD -MP -MF .deps/sieve-validator.Tpo -c sieve-validator.c -o sieve-validator.o >/dev/null 2>&1
--- sieve-execute.lo ---
mv -f .deps/sieve-execute.Tpo .deps/sieve-execute.Plo
--- sieve-runtime-trace.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot    -I../../src/lib-sieve/util  -DMODULEDIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-runtime-trace.lo -MD -MP -MF .deps/sieve-runtime-trace.Tpo -c -o sieve-runtime-trace.lo sieve-runtime-trace.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-runtime-trace.lo -MD -MP -MF .deps/sieve-runtime-trace.Tpo -c sieve-runtime-trace.c  -fPIC -DPIC -o .libs/sieve-runtime-trace.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-runtime-trace.lo -MD -MP -MF .deps/sieve-runtime-trace.Tpo -c sieve-runtime-trace.c -o sieve-runtime-trace.o >/dev/null 2>&1
--- sieve-generator.lo ---
mv -f .deps/sieve-generator.Tpo .deps/sieve-generator.Plo
--- sieve-code-dumper.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot    -I../../src/lib-sieve/util  -DMODULEDIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-code-dumper.lo -MD -MP -MF .deps/sieve-code-dumper.Tpo -c -o sieve-code-dumper.lo sieve-code-dumper.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-code-dumper.lo -MD -MP -MF .deps/sieve-code-dumper.Tpo -c sieve-code-dumper.c  -fPIC -DPIC -o .libs/sieve-code-dumper.o
--- sieve-interpreter.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-interpreter.lo -MD -MP -MF .deps/sieve-interpreter.Tpo -c sieve-interpreter.c -o sieve-interpreter.o >/dev/null 2>&1
--- sieve-runtime-trace.lo ---
mv -f .deps/sieve-runtime-trace.Tpo .deps/sieve-runtime-trace.Plo
--- sieve-binary-dumper.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot    -I../../src/lib-sieve/util  -DMODULEDIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-binary-dumper.lo -MD -MP -MF .deps/sieve-binary-dumper.Tpo -c -o sieve-binary-dumper.lo sieve-binary-dumper.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-binary-dumper.lo -MD -MP -MF .deps/sieve-binary-dumper.Tpo -c sieve-binary-dumper.c  -fPIC -DPIC -o .libs/sieve-binary-dumper.o
--- sieve-code-dumper.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-code-dumper.lo -MD -MP -MF .deps/sieve-code-dumper.Tpo -c sieve-code-dumper.c -o sieve-code-dumper.o >/dev/null 2>&1
--- sieve-binary-dumper.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-binary-dumper.lo -MD -MP -MF .deps/sieve-binary-dumper.Tpo -c sieve-binary-dumper.c -o sieve-binary-dumper.o >/dev/null 2>&1
--- sieve-validator.lo ---
mv -f .deps/sieve-validator.Tpo .deps/sieve-validator.Plo
--- sieve-result.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot    -I../../src/lib-sieve/util  -DMODULEDIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-result.lo -MD -MP -MF .deps/sieve-result.Tpo -c -o sieve-result.lo sieve-result.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-result.lo -MD -MP -MF .deps/sieve-result.Tpo -c sieve-result.c  -fPIC -DPIC -o .libs/sieve-result.o
--- sieve-code-dumper.lo ---
mv -f .deps/sieve-code-dumper.Tpo .deps/sieve-code-dumper.Plo
--- sieve-error.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot    -I../../src/lib-sieve/util  -DMODULEDIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-error.lo -MD -MP -MF .deps/sieve-error.Tpo -c -o sieve-error.lo sieve-error.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-error.lo -MD -MP -MF .deps/sieve-error.Tpo -c sieve-error.c  -fPIC -DPIC -o .libs/sieve-error.o
--- sieve-binary-dumper.lo ---
mv -f .deps/sieve-binary-dumper.Tpo .deps/sieve-binary-dumper.Plo
--- sieve-objects.lo ---
--- sieve-interpreter.lo ---
mv -f .deps/sieve-interpreter.Tpo .deps/sieve-interpreter.Plo
--- sieve-objects.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot    -I../../src/lib-sieve/util  -DMODULEDIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-objects.lo -MD -MP -MF .deps/sieve-objects.Tpo -c -o sieve-objects.lo sieve-objects.c
--- sieve-stringlist.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot    -I../../src/lib-sieve/util  -DMODULEDIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-stringlist.lo -MD -MP -MF .deps/sieve-stringlist.Tpo -c -o sieve-stringlist.lo sieve-stringlist.c
--- sieve-objects.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-objects.lo -MD -MP -MF .deps/sieve-objects.Tpo -c sieve-objects.c  -fPIC -DPIC -o .libs/sieve-objects.o
--- sieve-stringlist.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-stringlist.lo -MD -MP -MF .deps/sieve-stringlist.Tpo -c sieve-stringlist.c  -fPIC -DPIC -o .libs/sieve-stringlist.o
--- sieve-objects.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-objects.lo -MD -MP -MF .deps/sieve-objects.Tpo -c sieve-objects.c -o sieve-objects.o >/dev/null 2>&1
--- sieve-stringlist.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-stringlist.lo -MD -MP -MF .deps/sieve-stringlist.Tpo -c sieve-stringlist.c -o sieve-stringlist.o >/dev/null 2>&1
--- sieve-objects.lo ---
mv -f .deps/sieve-objects.Tpo .deps/sieve-objects.Plo
--- sieve-comparators.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot    -I../../src/lib-sieve/util  -DMODULEDIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-comparators.lo -MD -MP -MF .deps/sieve-comparators.Tpo -c -o sieve-comparators.lo sieve-comparators.c
--- sieve-error.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-error.lo -MD -MP -MF .deps/sieve-error.Tpo -c sieve-error.c -o sieve-error.o >/dev/null 2>&1
--- sieve-comparators.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-comparators.lo -MD -MP -MF .deps/sieve-comparators.Tpo -c sieve-comparators.c  -fPIC -DPIC -o .libs/sieve-comparators.o
--- sieve-stringlist.lo ---
mv -f .deps/sieve-stringlist.Tpo .deps/sieve-stringlist.Plo
--- sieve-match-types.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot    -I../../src/lib-sieve/util  -DMODULEDIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-match-types.lo -MD -MP -MF .deps/sieve-match-types.Tpo -c -o sieve-match-types.lo sieve-match-types.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-match-types.lo -MD -MP -MF .deps/sieve-match-types.Tpo -c sieve-match-types.c  -fPIC -DPIC -o .libs/sieve-match-types.o
--- sieve-comparators.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-comparators.lo -MD -MP -MF .deps/sieve-comparators.Tpo -c sieve-comparators.c -o sieve-comparators.o >/dev/null 2>&1
mv -f .deps/sieve-comparators.Tpo .deps/sieve-comparators.Plo
--- sieve-address-parts.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot    -I../../src/lib-sieve/util  -DMODULEDIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-address-parts.lo -MD -MP -MF .deps/sieve-address-parts.Tpo -c -o sieve-address-parts.lo sieve-address-parts.c
--- sieve-error.lo ---
mv -f .deps/sieve-error.Tpo .deps/sieve-error.Plo
--- sieve-address-source.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot    -I../../src/lib-sieve/util  -DMODULEDIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-address-source.lo -MD -MP -MF .deps/sieve-address-source.Tpo -c -o sieve-address-source.lo sieve-address-source.c
--- sieve-match-types.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-match-types.lo -MD -MP -MF .deps/sieve-match-types.Tpo -c sieve-match-types.c -o sieve-match-types.o >/dev/null 2>&1
--- sieve-address-parts.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-address-parts.lo -MD -MP -MF .deps/sieve-address-parts.Tpo -c sieve-address-parts.c  -fPIC -DPIC -o .libs/sieve-address-parts.o
--- sieve-address-source.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-address-source.lo -MD -MP -MF .deps/sieve-address-source.Tpo -c sieve-address-source.c  -fPIC -DPIC -o .libs/sieve-address-source.o
--- sieve-result.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-result.lo -MD -MP -MF .deps/sieve-result.Tpo -c sieve-result.c -o sieve-result.o >/dev/null 2>&1
--- sieve-address-source.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-address-source.lo -MD -MP -MF .deps/sieve-address-source.Tpo -c sieve-address-source.c -o sieve-address-source.o >/dev/null 2>&1
--- sieve-address-parts.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-address-parts.lo -MD -MP -MF .deps/sieve-address-parts.Tpo -c sieve-address-parts.c -o sieve-address-parts.o >/dev/null 2>&1
--- sieve-match-types.lo ---
mv -f .deps/sieve-match-types.Tpo .deps/sieve-match-types.Plo
--- sieve-match.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot    -I../../src/lib-sieve/util  -DMODULEDIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-match.lo -MD -MP -MF .deps/sieve-match.Tpo -c -o sieve-match.lo sieve-match.c
--- sieve-address-source.lo ---
mv -f .deps/sieve-address-source.Tpo .deps/sieve-address-source.Plo
--- sieve-commands.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot    -I../../src/lib-sieve/util  -DMODULEDIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-commands.lo -MD -MP -MF .deps/sieve-commands.Tpo -c -o sieve-commands.lo sieve-commands.c
--- sieve-match.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-match.lo -MD -MP -MF .deps/sieve-match.Tpo -c sieve-match.c  -fPIC -DPIC -o .libs/sieve-match.o
--- sieve-commands.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-commands.lo -MD -MP -MF .deps/sieve-commands.Tpo -c sieve-commands.c  -fPIC -DPIC -o .libs/sieve-commands.o
--- sieve-address-parts.lo ---
mv -f .deps/sieve-address-parts.Tpo .deps/sieve-address-parts.Plo
--- sieve-code.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot    -I../../src/lib-sieve/util  -DMODULEDIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-code.lo -MD -MP -MF .deps/sieve-code.Tpo -c -o sieve-code.lo sieve-code.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-code.lo -MD -MP -MF .deps/sieve-code.Tpo -c sieve-code.c  -fPIC -DPIC -o .libs/sieve-code.o
--- sieve-commands.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-commands.lo -MD -MP -MF .deps/sieve-commands.Tpo -c sieve-commands.c -o sieve-commands.o >/dev/null 2>&1
--- sieve-match.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-match.lo -MD -MP -MF .deps/sieve-match.Tpo -c sieve-match.c -o sieve-match.o >/dev/null 2>&1
--- sieve-commands.lo ---
mv -f .deps/sieve-commands.Tpo .deps/sieve-commands.Plo
--- sieve-actions.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot    -I../../src/lib-sieve/util  -DMODULEDIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-actions.lo -MD -MP -MF .deps/sieve-actions.Tpo -c -o sieve-actions.lo sieve-actions.c
--- sieve-match.lo ---
mv -f .deps/sieve-match.Tpo .deps/sieve-match.Plo
--- sieve-extensions.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot    -I../../src/lib-sieve/util  -DMODULEDIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-extensions.lo -MD -MP -MF .deps/sieve-extensions.Tpo -c -o sieve-extensions.lo sieve-extensions.c
--- sieve-actions.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-actions.lo -MD -MP -MF .deps/sieve-actions.Tpo -c sieve-actions.c  -fPIC -DPIC -o .libs/sieve-actions.o
--- sieve-extensions.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-extensions.lo -MD -MP -MF .deps/sieve-extensions.Tpo -c sieve-extensions.c  -fPIC -DPIC -o .libs/sieve-extensions.o
--- sieve-result.lo ---
mv -f .deps/sieve-result.Tpo .deps/sieve-result.Plo
--- sieve-plugins.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot    -I../../src/lib-sieve/util  -DMODULEDIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-plugins.lo -MD -MP -MF .deps/sieve-plugins.Tpo -c -o sieve-plugins.lo sieve-plugins.c
--- sieve-code.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-code.lo -MD -MP -MF .deps/sieve-code.Tpo -c sieve-code.c -o sieve-code.o >/dev/null 2>&1
--- sieve-plugins.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-plugins.lo -MD -MP -MF .deps/sieve-plugins.Tpo -c sieve-plugins.c  -fPIC -DPIC -o .libs/sieve-plugins.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-plugins.lo -MD -MP -MF .deps/sieve-plugins.Tpo -c sieve-plugins.c -o sieve-plugins.o >/dev/null 2>&1
--- sieve-extensions.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-extensions.lo -MD -MP -MF .deps/sieve-extensions.Tpo -c sieve-extensions.c -o sieve-extensions.o >/dev/null 2>&1
--- sieve-actions.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-actions.lo -MD -MP -MF .deps/sieve-actions.Tpo -c sieve-actions.c -o sieve-actions.o >/dev/null 2>&1
--- sieve-plugins.lo ---
mv -f .deps/sieve-plugins.Tpo .deps/sieve-plugins.Plo
--- cmp-i-octet.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot    -I../../src/lib-sieve/util  -DMODULEDIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT cmp-i-octet.lo -MD -MP -MF .deps/cmp-i-octet.Tpo -c -o cmp-i-octet.lo cmp-i-octet.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT cmp-i-octet.lo -MD -MP -MF .deps/cmp-i-octet.Tpo -c cmp-i-octet.c  -fPIC -DPIC -o .libs/cmp-i-octet.o
--- sieve-code.lo ---
mv -f .deps/sieve-code.Tpo .deps/sieve-code.Plo
--- cmp-i-ascii-casemap.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot    -I../../src/lib-sieve/util  -DMODULEDIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT cmp-i-ascii-casemap.lo -MD -MP -MF .deps/cmp-i-ascii-casemap.Tpo -c -o cmp-i-ascii-casemap.lo cmp-i-ascii-casemap.c
--- cmp-i-octet.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT cmp-i-octet.lo -MD -MP -MF .deps/cmp-i-octet.Tpo -c cmp-i-octet.c -o cmp-i-octet.o >/dev/null 2>&1
--- cmp-i-ascii-casemap.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT cmp-i-ascii-casemap.lo -MD -MP -MF .deps/cmp-i-ascii-casemap.Tpo -c cmp-i-ascii-casemap.c  -fPIC -DPIC -o .libs/cmp-i-ascii-casemap.o
--- cmp-i-octet.lo ---
mv -f .deps/cmp-i-octet.Tpo .deps/cmp-i-octet.Plo
--- mcht-is.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot    -I../../src/lib-sieve/util  -DMODULEDIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT mcht-is.lo -MD -MP -MF .deps/mcht-is.Tpo -c -o mcht-is.lo mcht-is.c
--- cmp-i-ascii-casemap.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT cmp-i-ascii-casemap.lo -MD -MP -MF .deps/cmp-i-ascii-casemap.Tpo -c cmp-i-ascii-casemap.c -o cmp-i-ascii-casemap.o >/dev/null 2>&1
--- sieve-extensions.lo ---
mv -f .deps/sieve-extensions.Tpo .deps/sieve-extensions.Plo
--- mcht-contains.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot    -I../../src/lib-sieve/util  -DMODULEDIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT mcht-contains.lo -MD -MP -MF .deps/mcht-contains.Tpo -c -o mcht-contains.lo mcht-contains.c
--- mcht-is.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT mcht-is.lo -MD -MP -MF .deps/mcht-is.Tpo -c mcht-is.c  -fPIC -DPIC -o .libs/mcht-is.o
--- mcht-contains.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT mcht-contains.lo -MD -MP -MF .deps/mcht-contains.Tpo -c mcht-contains.c  -fPIC -DPIC -o .libs/mcht-contains.o
--- sieve-actions.lo ---
mv -f .deps/sieve-actions.Tpo .deps/sieve-actions.Plo
--- mcht-matches.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot    -I../../src/lib-sieve/util  -DMODULEDIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT mcht-matches.lo -MD -MP -MF .deps/mcht-matches.Tpo -c -o mcht-matches.lo mcht-matches.c
--- cmp-i-ascii-casemap.lo ---
mv -f .deps/cmp-i-ascii-casemap.Tpo .deps/cmp-i-ascii-casemap.Plo
--- tst-truefalse.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot    -I../../src/lib-sieve/util  -DMODULEDIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT tst-truefalse.lo -MD -MP -MF .deps/tst-truefalse.Tpo -c -o tst-truefalse.lo tst-truefalse.c
--- mcht-is.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT mcht-is.lo -MD -MP -MF .deps/mcht-is.Tpo -c mcht-is.c -o mcht-is.o >/dev/null 2>&1
--- mcht-matches.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT mcht-matches.lo -MD -MP -MF .deps/mcht-matches.Tpo -c mcht-matches.c  -fPIC -DPIC -o .libs/mcht-matches.o
--- tst-truefalse.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT tst-truefalse.lo -MD -MP -MF .deps/tst-truefalse.Tpo -c tst-truefalse.c  -fPIC -DPIC -o .libs/tst-truefalse.o
--- mcht-contains.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT mcht-contains.lo -MD -MP -MF .deps/mcht-contains.Tpo -c mcht-contains.c -o mcht-contains.o >/dev/null 2>&1
--- mcht-is.lo ---
mv -f .deps/mcht-is.Tpo .deps/mcht-is.Plo
--- tst-not.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot    -I../../src/lib-sieve/util  -DMODULEDIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT tst-not.lo -MD -MP -MF .deps/tst-not.Tpo -c -o tst-not.lo tst-not.c
--- tst-truefalse.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT tst-truefalse.lo -MD -MP -MF .deps/tst-truefalse.Tpo -c tst-truefalse.c -o tst-truefalse.o >/dev/null 2>&1
--- mcht-contains.lo ---
mv -f .deps/mcht-contains.Tpo .deps/mcht-contains.Plo
--- tst-anyof.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot    -I../../src/lib-sieve/util  -DMODULEDIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT tst-anyof.lo -MD -MP -MF .deps/tst-anyof.Tpo -c -o tst-anyof.lo tst-anyof.c
--- tst-not.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT tst-not.lo -MD -MP -MF .deps/tst-not.Tpo -c tst-not.c  -fPIC -DPIC -o .libs/tst-not.o
--- tst-anyof.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT tst-anyof.lo -MD -MP -MF .deps/tst-anyof.Tpo -c tst-anyof.c  -fPIC -DPIC -o .libs/tst-anyof.o
--- mcht-matches.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT mcht-matches.lo -MD -MP -MF .deps/mcht-matches.Tpo -c mcht-matches.c -o mcht-matches.o >/dev/null 2>&1
--- tst-not.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT tst-not.lo -MD -MP -MF .deps/tst-not.Tpo -c tst-not.c -o tst-not.o >/dev/null 2>&1
--- tst-truefalse.lo ---
mv -f .deps/tst-truefalse.Tpo .deps/tst-truefalse.Plo
--- tst-allof.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot    -I../../src/lib-sieve/util  -DMODULEDIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT tst-allof.lo -MD -MP -MF .deps/tst-allof.Tpo -c -o tst-allof.lo tst-allof.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT tst-allof.lo -MD -MP -MF .deps/tst-allof.Tpo -c tst-allof.c  -fPIC -DPIC -o .libs/tst-allof.o
--- tst-anyof.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT tst-anyof.lo -MD -MP -MF .deps/tst-anyof.Tpo -c tst-anyof.c -o tst-anyof.o >/dev/null 2>&1
--- tst-not.lo ---
mv -f .deps/tst-not.Tpo .deps/tst-not.Plo
--- tst-address.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot    -I../../src/lib-sieve/util  -DMODULEDIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT tst-address.lo -MD -MP -MF .deps/tst-address.Tpo -c -o tst-address.lo tst-address.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT tst-address.lo -MD -MP -MF .deps/tst-address.Tpo -c tst-address.c  -fPIC -DPIC -o .libs/tst-address.o
--- tst-allof.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT tst-allof.lo -MD -MP -MF .deps/tst-allof.Tpo -c tst-allof.c -o tst-allof.o >/dev/null 2>&1
--- tst-anyof.lo ---
mv -f .deps/tst-anyof.Tpo .deps/tst-anyof.Plo
--- tst-header.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot    -I../../src/lib-sieve/util  -DMODULEDIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT tst-header.lo -MD -MP -MF .deps/tst-header.Tpo -c -o tst-header.lo tst-header.c
--- mcht-matches.lo ---
mv -f .deps/mcht-matches.Tpo .deps/mcht-matches.Plo
--- tst-exists.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot    -I../../src/lib-sieve/util  -DMODULEDIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT tst-exists.lo -MD -MP -MF .deps/tst-exists.Tpo -c -o tst-exists.lo tst-exists.c
--- tst-header.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT tst-header.lo -MD -MP -MF .deps/tst-header.Tpo -c tst-header.c  -fPIC -DPIC -o .libs/tst-header.o
--- tst-exists.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT tst-exists.lo -MD -MP -MF .deps/tst-exists.Tpo -c tst-exists.c  -fPIC -DPIC -o .libs/tst-exists.o
--- tst-allof.lo ---
mv -f .deps/tst-allof.Tpo .deps/tst-allof.Plo
--- tst-size.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot    -I../../src/lib-sieve/util  -DMODULEDIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT tst-size.lo -MD -MP -MF .deps/tst-size.Tpo -c -o tst-size.lo tst-size.c
--- tst-address.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT tst-address.lo -MD -MP -MF .deps/tst-address.Tpo -c tst-address.c -o tst-address.o >/dev/null 2>&1
--- tst-size.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT tst-size.lo -MD -MP -MF .deps/tst-size.Tpo -c tst-size.c  -fPIC -DPIC -o .libs/tst-size.o
--- tst-header.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT tst-header.lo -MD -MP -MF .deps/tst-header.Tpo -c tst-header.c -o tst-header.o >/dev/null 2>&1
--- tst-exists.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT tst-exists.lo -MD -MP -MF .deps/tst-exists.Tpo -c tst-exists.c -o tst-exists.o >/dev/null 2>&1
--- tst-address.lo ---
mv -f .deps/tst-address.Tpo .deps/tst-address.Plo
--- cmd-require.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot    -I../../src/lib-sieve/util  -DMODULEDIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT cmd-require.lo -MD -MP -MF .deps/cmd-require.Tpo -c -o cmd-require.lo cmd-require.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT cmd-require.lo -MD -MP -MF .deps/cmd-require.Tpo -c cmd-require.c  -fPIC -DPIC -o .libs/cmd-require.o
--- tst-size.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT tst-size.lo -MD -MP -MF .deps/tst-size.Tpo -c tst-size.c -o tst-size.o >/dev/null 2>&1
--- tst-header.lo ---
mv -f .deps/tst-header.Tpo .deps/tst-header.Plo
--- cmd-stop.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot    -I../../src/lib-sieve/util  -DMODULEDIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT cmd-stop.lo -MD -MP -MF .deps/cmd-stop.Tpo -c -o cmd-stop.lo cmd-stop.c
--- tst-exists.lo ---
mv -f .deps/tst-exists.Tpo .deps/tst-exists.Plo
--- cmd-if.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot    -I../../src/lib-sieve/util  -DMODULEDIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT cmd-if.lo -MD -MP -MF .deps/cmd-if.Tpo -c -o cmd-if.lo cmd-if.c
--- cmd-stop.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT cmd-stop.lo -MD -MP -MF .deps/cmd-stop.Tpo -c cmd-stop.c  -fPIC -DPIC -o .libs/cmd-stop.o
--- cmd-if.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT cmd-if.lo -MD -MP -MF .deps/cmd-if.Tpo -c cmd-if.c  -fPIC -DPIC -o .libs/cmd-if.o
--- cmd-require.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT cmd-require.lo -MD -MP -MF .deps/cmd-require.Tpo -c cmd-require.c -o cmd-require.o >/dev/null 2>&1
--- cmd-stop.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT cmd-stop.lo -MD -MP -MF .deps/cmd-stop.Tpo -c cmd-stop.c -o cmd-stop.o >/dev/null 2>&1
--- tst-size.lo ---
mv -f .deps/tst-size.Tpo .deps/tst-size.Plo
--- cmd-keep.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot    -I../../src/lib-sieve/util  -DMODULEDIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT cmd-keep.lo -MD -MP -MF .deps/cmd-keep.Tpo -c -o cmd-keep.lo cmd-keep.c
--- cmd-require.lo ---
mv -f .deps/cmd-require.Tpo .deps/cmd-require.Plo
--- cmd-redirect.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot    -I../../src/lib-sieve/util  -DMODULEDIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT cmd-redirect.lo -MD -MP -MF .deps/cmd-redirect.Tpo -c -o cmd-redirect.lo cmd-redirect.c
--- cmd-if.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT cmd-if.lo -MD -MP -MF .deps/cmd-if.Tpo -c cmd-if.c -o cmd-if.o >/dev/null 2>&1
--- cmd-keep.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT cmd-keep.lo -MD -MP -MF .deps/cmd-keep.Tpo -c cmd-keep.c  -fPIC -DPIC -o .libs/cmd-keep.o
--- cmd-redirect.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT cmd-redirect.lo -MD -MP -MF .deps/cmd-redirect.Tpo -c cmd-redirect.c  -fPIC -DPIC -o .libs/cmd-redirect.o
--- cmd-stop.lo ---
mv -f .deps/cmd-stop.Tpo .deps/cmd-stop.Plo
--- cmd-discard.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot    -I../../src/lib-sieve/util  -DMODULEDIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT cmd-discard.lo -MD -MP -MF .deps/cmd-discard.Tpo -c -o cmd-discard.lo cmd-discard.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT cmd-discard.lo -MD -MP -MF .deps/cmd-discard.Tpo -c cmd-discard.c  -fPIC -DPIC -o .libs/cmd-discard.o
--- cmd-keep.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT cmd-keep.lo -MD -MP -MF .deps/cmd-keep.Tpo -c cmd-keep.c -o cmd-keep.o >/dev/null 2>&1
--- cmd-if.lo ---
mv -f .deps/cmd-if.Tpo .deps/cmd-if.Plo
--- ext-fileinto.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot    -I../../src/lib-sieve/util  -DMODULEDIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT ext-fileinto.lo -MD -MP -MF .deps/ext-fileinto.Tpo -c -o ext-fileinto.lo ext-fileinto.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT ext-fileinto.lo -MD -MP -MF .deps/ext-fileinto.Tpo -c ext-fileinto.c  -fPIC -DPIC -o .libs/ext-fileinto.o
--- cmd-discard.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT cmd-discard.lo -MD -MP -MF .deps/cmd-discard.Tpo -c cmd-discard.c -o cmd-discard.o >/dev/null 2>&1
--- cmd-keep.lo ---
mv -f .deps/cmd-keep.Tpo .deps/cmd-keep.Plo
--- ext-reject.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot    -I../../src/lib-sieve/util  -DMODULEDIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT ext-reject.lo -MD -MP -MF .deps/ext-reject.Tpo -c -o ext-reject.lo ext-reject.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT ext-reject.lo -MD -MP -MF .deps/ext-reject.Tpo -c ext-reject.c  -fPIC -DPIC -o .libs/ext-reject.o
--- cmd-redirect.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT cmd-redirect.lo -MD -MP -MF .deps/cmd-redirect.Tpo -c cmd-redirect.c -o cmd-redirect.o >/dev/null 2>&1
--- ext-fileinto.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT ext-fileinto.lo -MD -MP -MF .deps/ext-fileinto.Tpo -c ext-fileinto.c -o ext-fileinto.o >/dev/null 2>&1
--- cmd-discard.lo ---
mv -f .deps/cmd-discard.Tpo .deps/cmd-discard.Plo
--- ext-envelope.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot    -I../../src/lib-sieve/util  -DMODULEDIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT ext-envelope.lo -MD -MP -MF .deps/ext-envelope.Tpo -c -o ext-envelope.lo ext-envelope.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT ext-envelope.lo -MD -MP -MF .deps/ext-envelope.Tpo -c ext-envelope.c  -fPIC -DPIC -o .libs/ext-envelope.o
--- ext-fileinto.lo ---
mv -f .deps/ext-fileinto.Tpo .deps/ext-fileinto.Plo
--- ext-encoded-character.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot    -I../../src/lib-sieve/util  -DMODULEDIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT ext-encoded-character.lo -MD -MP -MF .deps/ext-encoded-character.Tpo -c -o ext-encoded-character.lo ext-encoded-character.c
--- ext-reject.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT ext-reject.lo -MD -MP -MF .deps/ext-reject.Tpo -c ext-reject.c -o ext-reject.o >/dev/null 2>&1
--- ext-encoded-character.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT ext-encoded-character.lo -MD -MP -MF .deps/ext-encoded-character.Tpo -c ext-encoded-character.c  -fPIC -DPIC -o .libs/ext-encoded-character.o
--- cmd-redirect.lo ---
mv -f .deps/cmd-redirect.Tpo .deps/cmd-redirect.Plo
--- sieve.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot    -I../../src/lib-sieve/util  -DMODULEDIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve.lo -MD -MP -MF .deps/sieve.Tpo -c -o sieve.lo sieve.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve.lo -MD -MP -MF .deps/sieve.Tpo -c sieve.c  -fPIC -DPIC -o .libs/sieve.o
--- ext-envelope.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT ext-envelope.lo -MD -MP -MF .deps/ext-envelope.Tpo -c ext-envelope.c -o ext-envelope.o >/dev/null 2>&1
--- ext-reject.lo ---
mv -f .deps/ext-reject.Tpo .deps/ext-reject.Plo
--- ext-encoded-character.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT ext-encoded-character.lo -MD -MP -MF .deps/ext-encoded-character.Tpo -c ext-encoded-character.c -o ext-encoded-character.o >/dev/null 2>&1
--- ext-envelope.lo ---
mv -f .deps/ext-envelope.Tpo .deps/ext-envelope.Plo
--- ext-encoded-character.lo ---
mv -f .deps/ext-encoded-character.Tpo .deps/ext-encoded-character.Plo
--- sieve.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../../src/lib-sieve/util -DMODULEDIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve.lo -MD -MP -MF .deps/sieve.Tpo -c sieve.c -o sieve.o >/dev/null 2>&1
mv -f .deps/sieve.Tpo .deps/sieve.Plo
--- libdovecot-sieve.la ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../..   -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o libdovecot-sieve.la -rpath /usr/local/lib/dovecot sieve-settings.lo sieve-message.lo  sieve-smtp.lo sieve-lexer.lo sieve-script.lo sieve-storage.lo  sieve-storage-sync.lo sieve-ast.lo sieve-binary.lo  sieve-binary-file.lo sieve-binary-code.lo  sieve-binary-debug.lo sieve-parser.lo sieve-address.lo  sieve-validator.lo sieve-generator.lo sieve-execute.lo  sieve-interpreter.lo sieve-runtime-trace.lo  sieve-code-dumper.lo sieve-binary-dumper.lo sieve-result.lo  sieve-error.lo sieve-objects.lo sieve-stringlist.lo  sieve-comparators.lo sieve-match-types.lo  sieve-address-parts.lo sieve-address-source.lo sieve-match.lo  sieve-commands.lo sieve-code.lo sieve-actions.lo  sieve-extensions.lo sieve-plugins.lo cmp-i-octet.lo cmp-i-ascii-casemap.lo  mcht-is.lo mcht-contains.lo mcht-matches.lo tst-truefalse.lo tst-not.lo tst-anyof.lo tst-allof.lo  tst-address.lo tst-header.lo tst-exists.lo tst-size.lo cmd-require.lo cmd-stop.lo cmd-if.lo cmd-keep.lo  cmd-redirect.lo cmd-discard.lo  ext-fileinto.lo ext-reject.lo ext-envelope.lo  ext-encoded-character.lo sieve.lo ../../src/lib-sieve/storage/data/libsieve_storage_data.la  ../../src/lib-sieve/storage/file/libsieve_storage_file.la  ../../src/lib-sieve/storage/dict/libsieve_storage_dict.la  ../../src/lib-sieve/storage/ldap/libsieve_storage_ldap.la    ../../src/lib-sieve/plugins/vacation/libsieve_ext_vacation.la  ../../src/lib-sieve/plugins/subaddress/libsieve_ext_subaddress.la  ../../src/lib-sieve/plugins/comparator-i-ascii-numeric/libsieve_ext_comparator-i-ascii-numeric.la  ../../src/lib-sieve/plugins/relational/libsieve_ext_relational.la  ../../src/lib-sieve/plugins/regex/libsieve_ext_regex.la  ../../src/lib-sieve/plugins/copy/libsieve_ext_copy.la  ../../src/lib-sieve/plugins/imap4flags/libsieve_ext_imap4flags.la  ../../src/lib-sieve/plugins/include/libsieve_ext_include.la  ../../src/lib-sieve/plugins/body/libsieve_ext_body.la  ../../src/lib-sieve/plugins/variables/libsieve_ext_variables.la  ../../src/lib-sieve/plugins/enotify/libsieve_ext_enotify.la  ../../src/lib-sieve/plugins/notify/libsieve_ext_notify.la  ../../src/lib-sieve/plugins/environment/libsieve_ext_environment.la  ../../src/lib-sieve/plugins/mailbox/libsieve_ext_mailbox.la  ../../src/lib-sieve/plugins/date/libsieve_ext_date.la  ../../src/lib-sieve/plugins/spamvirustest/libsieve_ext_spamvirustest.la  ../../src/lib-sieve/plugins/ihave/libsieve_ext_ihave.la  ../../src/lib-sieve/plugins/editheader/libsieve_ext_editheader.la  ../../src/lib-sieve/plugins/duplicate/libsieve_ext_duplicate.la  ../../src/lib-sieve/plugins/index/libsieve_ext_index.la  ../../src/lib-sieve/plugins/metadata/libsieve_ext_metadata.la  ../../src/lib-sieve/plugins/mime/libsieve_ext_mime.la  ../../src/lib-sieve/plugins/special-use/libsieve_ext_special_use.la  ../../src/lib-sieve/plugins/vnd.dovecot/debug/libsieve_ext_debug.la  ../../src/lib-sieve/plugins/vnd.dovecot/environment/libsieve_ext_vnd_environment.la  ../../src/lib-sieve/plugins/vnd.dovecot/report/libsieve_ext_vnd_report.la    ../../src/lib-sieve/util/libsieve_util.la  -ldovecot-storage  -L/usr/local/lib/dovecot -ldovecot 
libtool: link: cc -shared  -fPIC -DPIC  .libs/sieve-settings.o .libs/sieve-message.o .libs/sieve-smtp.o .libs/sieve-lexer.o .libs/sieve-script.o .libs/sieve-storage.o .libs/sieve-storage-sync.o .libs/sieve-ast.o .libs/sieve-binary.o .libs/sieve-binary-file.o .libs/sieve-binary-code.o .libs/sieve-binary-debug.o .libs/sieve-parser.o .libs/sieve-address.o .libs/sieve-validator.o .libs/sieve-generator.o .libs/sieve-execute.o .libs/sieve-interpreter.o .libs/sieve-runtime-trace.o .libs/sieve-code-dumper.o .libs/sieve-binary-dumper.o .libs/sieve-result.o .libs/sieve-error.o .libs/sieve-objects.o .libs/sieve-stringlist.o .libs/sieve-comparators.o .libs/sieve-match-types.o .libs/sieve-address-parts.o .libs/sieve-address-source.o .libs/sieve-match.o .libs/sieve-commands.o .libs/sieve-code.o .libs/sieve-actions.o .libs/sieve-extensions.o .libs/sieve-plugins.o .libs/cmp-i-octet.o .libs/cmp-i-ascii-casemap.o .libs/mcht-is.o .libs/mcht-contains.o .libs/mcht-matches.o .libs/tst-truefalse.o .libs/tst-not.o .libs/tst-anyof.o .libs/tst-allof.o .libs/tst-address.o .libs/tst-header.o .libs/tst-exists.o .libs/tst-size.o .libs/cmd-require.o .libs/cmd-stop.o .libs/cmd-if.o .libs/cmd-keep.o .libs/cmd-redirect.o .libs/cmd-discard.o .libs/ext-fileinto.o .libs/ext-reject.o .libs/ext-envelope.o .libs/ext-encoded-character.o .libs/sieve.o  -Wl,--whole-archive ../../src/lib-sieve/storage/data/.libs/libsieve_storage_data.a ../../src/lib-sieve/storage/file/.libs/libsieve_storage_file.a ../../src/lib-sieve/storage/dict/.libs/libsieve_storage_dict.a ../../src/lib-sieve/storage/ldap/.libs/libsieve_storage_ldap.a ../../src/lib-sieve/plugins/vacation/.libs/libsieve_ext_vacation.a ../../src/lib-sieve/plugins/subaddress/.libs/libsieve_ext_subaddress.a ../../src/lib-sieve/plugins/comparator-i-ascii-numeric/.libs/libsieve_ext_comparator-i-ascii-numeric.a ../../src/lib-sieve/plugins/relational/.libs/libsieve_ext_relational.a ../../src/lib-sieve/plugins/regex/.libs/libsieve_ext_regex.a ../../src/lib-sieve/plugins/copy/.libs/libsieve_ext_copy.a ../../src/lib-sieve/plugins/imap4flags/.libs/libsieve_ext_imap4flags.a ../../src/lib-sieve/plugins/include/.libs/libsieve_ext_include.a ../../src/lib-sieve/plugins/body/.libs/libsieve_ext_body.a ../../src/lib-sieve/plugins/variables/.libs/libsieve_ext_variables.a ../../src/lib-sieve/plugins/enotify/.libs/libsieve_ext_enotify.a ../../src/lib-sieve/plugins/notify/.libs/libsieve_ext_notify.a ../../src/lib-sieve/plugins/environment/.libs/libsieve_ext_environment.a ../../src/lib-sieve/plugins/mailbox/.libs/libsieve_ext_mailbox.a ../../src/lib-sieve/plugins/date/.libs/libsieve_ext_date.a ../../src/lib-sieve/plugins/spamvirustest/.libs/libsieve_ext_spamvirustest.a ../../src/lib-sieve/plugins/ihave/.libs/libsieve_ext_ihave.a ../../src/lib-sieve/plugins/editheader/.libs/libsieve_ext_editheader.a ../../src/lib-sieve/plugins/duplicate/.libs/libsieve_ext_duplicate.a ../../src/lib-sieve/plugins/index/.libs/libsieve_ext_index.a ../../src/lib-sieve/plugins/metadata/.libs/libsieve_ext_metadata.a ../../src/lib-sieve/plugins/mime/.libs/libsieve_ext_mime.a ../../src/lib-sieve/plugins/special-use/.libs/libsieve_ext_special_use.a ../../src/lib-sieve/plugins/vnd.dovecot/debug/.libs/libsieve_ext_debug.a ../../src/lib-sieve/plugins/vnd.dovecot/environment/.libs/libsieve_ext_vnd_environment.a ../../src/lib-sieve/plugins/vnd.dovecot/report/.libs/libsieve_ext_vnd_report.a ../../src/lib-sieve/util/.libs/libsieve_util.a -Wl,--no-whole-archive  -Wl,-rpath -Wl,/usr/local/lib -Wl,-rpath -Wl,/usr/local/lib -L/usr/local/lib /usr/local/lib/libldap.so /usr/local/lib/liblber.so -ldovecot-storage -L/usr/local/lib/dovecot -ldovecot  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -pthread -Wl,-soname -Wl,libdovecot-sieve.so.0 -o .libs/libdovecot-sieve.so.0.0.0
libtool: link: (cd ".libs" && rm -f "libdovecot-sieve.so.0" && ln -s "libdovecot-sieve.so.0.0.0" "libdovecot-sieve.so.0")
libtool: link: (cd ".libs" && rm -f "libdovecot-sieve.so" && ln -s "libdovecot-sieve.so.0.0.0" "libdovecot-sieve.so")
libtool: link: (cd .libs/libdovecot-sieve.lax/libsieve_storage_data.a && ar x "/usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/src/lib-sieve/../../src/lib-sieve/storage/data/.libs/libsieve_storage_data.a")
libtool: link: (cd .libs/libdovecot-sieve.lax/libsieve_storage_file.a && ar x "/usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/src/lib-sieve/../../src/lib-sieve/storage/file/.libs/libsieve_storage_file.a")
libtool: link: (cd .libs/libdovecot-sieve.lax/libsieve_storage_dict.a && ar x "/usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/src/lib-sieve/../../src/lib-sieve/storage/dict/.libs/libsieve_storage_dict.a")
libtool: link: (cd .libs/libdovecot-sieve.lax/libsieve_storage_ldap.a && ar x "/usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/src/lib-sieve/../../src/lib-sieve/storage/ldap/.libs/libsieve_storage_ldap.a")
libtool: link: (cd .libs/libdovecot-sieve.lax/libsieve_ext_vacation.a && ar x "/usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/src/lib-sieve/../../src/lib-sieve/plugins/vacation/.libs/libsieve_ext_vacation.a")
libtool: link: (cd .libs/libdovecot-sieve.lax/libsieve_ext_subaddress.a && ar x "/usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/src/lib-sieve/../../src/lib-sieve/plugins/subaddress/.libs/libsieve_ext_subaddress.a")
libtool: link: (cd .libs/libdovecot-sieve.lax/libsieve_ext_comparator-i-ascii-numeric.a && ar x "/usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/src/lib-sieve/../../src/lib-sieve/plugins/comparator-i-ascii-numeric/.libs/libsieve_ext_comparator-i-ascii-numeric.a")
libtool: link: (cd .libs/libdovecot-sieve.lax/libsieve_ext_relational.a && ar x "/usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/src/lib-sieve/../../src/lib-sieve/plugins/relational/.libs/libsieve_ext_relational.a")
libtool: link: (cd .libs/libdovecot-sieve.lax/libsieve_ext_regex.a && ar x "/usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/src/lib-sieve/../../src/lib-sieve/plugins/regex/.libs/libsieve_ext_regex.a")
libtool: link: (cd .libs/libdovecot-sieve.lax/libsieve_ext_copy.a && ar x "/usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/src/lib-sieve/../../src/lib-sieve/plugins/copy/.libs/libsieve_ext_copy.a")
libtool: link: (cd .libs/libdovecot-sieve.lax/libsieve_ext_imap4flags.a && ar x "/usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/src/lib-sieve/../../src/lib-sieve/plugins/imap4flags/.libs/libsieve_ext_imap4flags.a")
libtool: link: (cd .libs/libdovecot-sieve.lax/libsieve_ext_include.a && ar x "/usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/src/lib-sieve/../../src/lib-sieve/plugins/include/.libs/libsieve_ext_include.a")
libtool: link: (cd .libs/libdovecot-sieve.lax/libsieve_ext_body.a && ar x "/usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/src/lib-sieve/../../src/lib-sieve/plugins/body/.libs/libsieve_ext_body.a")
libtool: link: (cd .libs/libdovecot-sieve.lax/libsieve_ext_variables.a && ar x "/usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/src/lib-sieve/../../src/lib-sieve/plugins/variables/.libs/libsieve_ext_variables.a")
libtool: link: (cd .libs/libdovecot-sieve.lax/libsieve_ext_enotify.a && ar x "/usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/src/lib-sieve/../../src/lib-sieve/plugins/enotify/.libs/libsieve_ext_enotify.a")
libtool: link: (cd .libs/libdovecot-sieve.lax/libsieve_ext_notify.a && ar x "/usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/src/lib-sieve/../../src/lib-sieve/plugins/notify/.libs/libsieve_ext_notify.a")
libtool: link: (cd .libs/libdovecot-sieve.lax/libsieve_ext_environment.a && ar x "/usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/src/lib-sieve/../../src/lib-sieve/plugins/environment/.libs/libsieve_ext_environment.a")
libtool: link: (cd .libs/libdovecot-sieve.lax/libsieve_ext_mailbox.a && ar x "/usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/src/lib-sieve/../../src/lib-sieve/plugins/mailbox/.libs/libsieve_ext_mailbox.a")
libtool: link: (cd .libs/libdovecot-sieve.lax/libsieve_ext_date.a && ar x "/usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/src/lib-sieve/../../src/lib-sieve/plugins/date/.libs/libsieve_ext_date.a")
libtool: link: (cd .libs/libdovecot-sieve.lax/libsieve_ext_spamvirustest.a && ar x "/usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/src/lib-sieve/../../src/lib-sieve/plugins/spamvirustest/.libs/libsieve_ext_spamvirustest.a")
libtool: link: (cd .libs/libdovecot-sieve.lax/libsieve_ext_ihave.a && ar x "/usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/src/lib-sieve/../../src/lib-sieve/plugins/ihave/.libs/libsieve_ext_ihave.a")
libtool: link: (cd .libs/libdovecot-sieve.lax/libsieve_ext_editheader.a && ar x "/usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/src/lib-sieve/../../src/lib-sieve/plugins/editheader/.libs/libsieve_ext_editheader.a")
libtool: link: (cd .libs/libdovecot-sieve.lax/libsieve_ext_duplicate.a && ar x "/usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/src/lib-sieve/../../src/lib-sieve/plugins/duplicate/.libs/libsieve_ext_duplicate.a")
libtool: link: (cd .libs/libdovecot-sieve.lax/libsieve_ext_index.a && ar x "/usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/src/lib-sieve/../../src/lib-sieve/plugins/index/.libs/libsieve_ext_index.a")
libtool: link: (cd .libs/libdovecot-sieve.lax/libsieve_ext_metadata.a && ar x "/usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/src/lib-sieve/../../src/lib-sieve/plugins/metadata/.libs/libsieve_ext_metadata.a")
libtool: link: (cd .libs/libdovecot-sieve.lax/libsieve_ext_mime.a && ar x "/usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/src/lib-sieve/../../src/lib-sieve/plugins/mime/.libs/libsieve_ext_mime.a")
libtool: link: (cd .libs/libdovecot-sieve.lax/libsieve_ext_special_use.a && ar x "/usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/src/lib-sieve/../../src/lib-sieve/plugins/special-use/.libs/libsieve_ext_special_use.a")
libtool: link: (cd .libs/libdovecot-sieve.lax/libsieve_ext_debug.a && ar x "/usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/src/lib-sieve/../../src/lib-sieve/plugins/vnd.dovecot/debug/.libs/libsieve_ext_debug.a")
libtool: link: (cd .libs/libdovecot-sieve.lax/libsieve_ext_vnd_environment.a && ar x "/usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/src/lib-sieve/../../src/lib-sieve/plugins/vnd.dovecot/environment/.libs/libsieve_ext_vnd_environment.a")
libtool: link: (cd .libs/libdovecot-sieve.lax/libsieve_ext_vnd_report.a && ar x "/usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/src/lib-sieve/../../src/lib-sieve/plugins/vnd.dovecot/report/.libs/libsieve_ext_vnd_report.a")
libtool: link: (cd .libs/libdovecot-sieve.lax/libsieve_util.a && ar x "/usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/src/lib-sieve/../../src/lib-sieve/util/.libs/libsieve_util.a")
copying selected object files to avoid basename conflicts...
libtool: link: ln .libs/libdovecot-sieve.lax/libsieve_ext_notify.a/cmd-notify.o .libs/libdovecot-sieve.lax/lt1-cmd-notify.o || cp .libs/libdovecot-sieve.lax/libsieve_ext_notify.a/cmd-notify.o .libs/libdovecot-sieve.lax/lt1-cmd-notify.o
libtool: link: ar cr .libs/libdovecot-sieve.a sieve-settings.o sieve-message.o sieve-smtp.o sieve-lexer.o sieve-script.o sieve-storage.o sieve-storage-sync.o sieve-ast.o sieve-binary.o sieve-binary-file.o sieve-binary-code.o sieve-binary-debug.o sieve-parser.o sieve-address.o sieve-validator.o sieve-generator.o sieve-execute.o sieve-interpreter.o sieve-runtime-trace.o sieve-code-dumper.o sieve-binary-dumper.o sieve-result.o sieve-error.o sieve-objects.o sieve-stringlist.o sieve-comparators.o sieve-match-types.o sieve-address-parts.o sieve-address-source.o sieve-match.o sieve-commands.o sieve-code.o sieve-actions.o sieve-extensions.o sieve-plugins.o cmp-i-octet.o cmp-i-ascii-casemap.o mcht-is.o mcht-contains.o mcht-matches.o tst-truefalse.o tst-not.o tst-anyof.o tst-allof.o tst-address.o tst-header.o tst-exists.o tst-size.o cmd-require.o cmd-stop.o cmd-if.o cmd-keep.o cmd-redirect.o cmd-discard.o ext-fileinto.o ext-reject.o ext-envelope.o ext-encoded-character.o sieve.o .libs/libdovecot-sieve.lax/libsieve_storage_data.a/sieve-data-script.o .libs/libdovecot-sieve.lax/libsieve_storage_data.a/sieve-data-storage.o .libs/libdovecot-sieve.lax/libsieve_storage_file.a/sieve-file-script-sequence.o .libs/libdovecot-sieve.lax/libsieve_storage_file.a/sieve-file-script.o .libs/libdovecot-sieve.lax/libsieve_storage_file.a/sieve-file-storage-active.o .libs/libdovecot-sieve.lax/libsieve_storage_file.a/sieve-file-storage-list.o .libs/libdovecot-sieve.lax/libsieve_storage_file.a/sieve-file-storage-quota.o .libs/libdovecot-sieve.lax/libsieve_storage_file.a/sieve-file-storage-save.o .libs/libdovecot-sieve.lax/libsieve_storage_file.a/sieve-file-storage.o .libs/libdovecot-sieve.lax/libsieve_storage_dict.a/sieve-dict-script.o .libs/libdovecot-sieve.lax/libsieve_storage_dict.a/sieve-dict-storage.o .libs/libdovecot-sieve.lax/libsieve_storage_ldap.a/sieve-ldap-db.o .libs/libdovecot-sieve.lax/libsieve_storage_ldap.a/sieve-ldap-script.o .libs/libdovecot-sieve.lax/libsieve_storage_ldap.a/sieve-ldap-storage-settings.o .libs/libdovecot-sieve.lax/libsieve_storage_ldap.a/sieve-ldap-storage.o .libs/libdovecot-sieve.lax/libsieve_ext_vacation.a/cmd-vacation.o .libs/libdovecot-sieve.lax/libsieve_ext_vacation.a/ext-vacation-common.o .libs/libdovecot-sieve.lax/libsieve_ext_vacation.a/ext-vacation-seconds.o .libs/libdovecot-sieve.lax/libsieve_ext_vacation.a/ext-vacation.o .libs/libdovecot-sieve.lax/libsieve_ext_subaddress.a/ext-subaddress.o .libs/libdovecot-sieve.lax/libsieve_ext_comparator-i-ascii-numeric.a/ext-cmp-i-ascii-numeric.o .libs/libdovecot-sieve.lax/libsieve_ext_relational.a/ext-relational-common.o .libs/libdovecot-sieve.lax/libsieve_ext_relational.a/ext-relational.o .libs/libdovecot-sieve.lax/libsieve_ext_relational.a/mcht-count.o .libs/libdovecot-sieve.lax/libsieve_ext_relational.a/mcht-value.o .libs/libdovecot-sieve.lax/libsieve_ext_regex.a/ext-regex-common.o .libs/libdovecot-sieve.lax/libsieve_ext_regex.a/ext-regex.o .libs/libdovecot-sieve.lax/libsieve_ext_regex.a/mcht-regex.o .libs/libdovecot-sieve.lax/libsieve_ext_copy.a/ext-copy.o .libs/libdovecot-sieve.lax/libsieve_ext_imap4flags.a/cmd-flag.o .libs/libdovecot-sieve.lax/libsieve_ext_imap4flags.a/ext-imap4flags-common.o .libs/libdovecot-sieve.lax/libsieve_ext_imap4flags.a/ext-imap4flags.o .libs/libdovecot-sieve.lax/libsieve_ext_imap4flags.a/ext-imapflags.o .libs/libdovecot-sieve.lax/libsieve_ext_imap4flags.a/tag-flags.o .libs/libdovecot-sieve.lax/libsieve_ext_imap4flags.a/tst-hasflag.o .libs/libdovecot-sieve.lax/libsieve_ext_include.a/cmd-global.o .libs/libdovecot-sieve.lax/libsieve_ext_include.a/cmd-include.o .libs/libdovecot-sieve.lax/libsieve_ext_include.a/cmd-return.o .libs/libdovecot-sieve.lax/libsieve_ext_include.a/ext-include-binary.o .libs/libdovecot-sieve.lax/libsieve_ext_include.a/ext-include-common.o .libs/libdovecot-sieve.lax/libsieve_ext_include.a/ext-include-variables.o .libs/libdovecot-sieve.lax/libsieve_ext_include.a/ext-include.o .libs/libdovecot-sieve.lax/libsieve_ext_body.a/ext-body-common.o .libs/libdovecot-sieve.lax/libsieve_ext_body.a/ext-body.o .libs/libdovecot-sieve.lax/libsieve_ext_body.a/tst-body.o .libs/libdovecot-sieve.lax/libsieve_ext_variables.a/cmd-set.o .libs/libdovecot-sieve.lax/libsieve_ext_variables.a/ext-variables-arguments.o .libs/libdovecot-sieve.lax/libsieve_ext_variables.a/ext-variables-common.o .libs/libdovecot-sieve.lax/libsieve_ext_variables.a/ext-variables-dump.o .libs/libdovecot-sieve.lax/libsieve_ext_variables.a/ext-variables-modifiers.o .libs/libdovecot-sieve.lax/libsieve_ext_variables.a/ext-variables-name.o .libs/libdovecot-sieve.lax/libsieve_ext_variables.a/ext-variables-namespaces.o .libs/libdovecot-sieve.lax/libsieve_ext_variables.a/ext-variables-operands.o .libs/libdovecot-sieve.lax/libsieve_ext_variables.a/ext-variables.o .libs/libdovecot-sieve.lax/libsieve_ext_variables.a/tst-string.o .libs/libdovecot-sieve.lax/libsieve_ext_enotify.a/cmd-notify.o .libs/libdovecot-sieve.lax/libsieve_ext_enotify.a/ext-enotify-common.o .libs/libdovecot-sieve.lax/libsieve_ext_enotify.a/ext-enotify.o .libs/libdovecot-sieve.lax/libsieve_ext_enotify.a/ntfy-mailto.o .libs/libdovecot-sieve.lax/libsieve_ext_enotify.a/tst-notify-method-capability.o .libs/libdovecot-sieve.lax/libsieve_ext_enotify.a/tst-valid-notify-method.o .libs/libdovecot-sieve.lax/libsieve_ext_enotify.a/uri-mailto.o .libs/libdovecot-sieve.lax/libsieve_ext_enotify.a/vmodf-encodeurl.o .libs/libdovecot-sieve.lax/libsieve_ext_notify.a/cmd-denotify.o .libs/libdovecot-sieve.lax/lt1-cmd-notify.o .libs/libdovecot-sieve.lax/libsieve_ext_notify.a/ext-notify-common.o .libs/libdovecot-sieve.lax/libsieve_ext_notify.a/ext-notify.o .libs/libdovecot-sieve.lax/libsieve_ext_environment.a/ext-environment-common.o .libs/libdovecot-sieve.lax/libsieve_ext_environment.a/ext-environment.o .libs/libdovecot-sieve.lax/libsieve_ext_environment.a/tst-environment.o .libs/libdovecot-sieve.lax/libsieve_ext_mailbox.a/ext-mailbox.o .libs/libdovecot-sieve.lax/libsieve_ext_mailbox.a/tag-mailbox-create.o .libs/libdovecot-sieve.lax/libsieve_ext_mailbox.a/tst-mailboxexists.o .libs/libdovecot-sieve.lax/libsieve_ext_date.a/ext-date-common.o .libs/libdovecot-sieve.lax/libsieve_ext_date.a/ext-date.o .libs/libdovecot-sieve.lax/libsieve_ext_date.a/tst-date.o .libs/libdovecot-sieve.lax/libsieve_ext_spamvirustest.a/ext-spamvirustest-common.o .libs/libdovecot-sieve.lax/libsieve_ext_spamvirustest.a/ext-spamvirustest.o .libs/libdovecot-sieve.lax/libsieve_ext_spamvirustest.a/tst-spamvirustest.o .libs/libdovecot-sieve.lax/libsieve_ext_ihave.a/cmd-error.o .libs/libdovecot-sieve.lax/libsieve_ext_ihave.a/ext-ihave-binary.o .libs/libdovecot-sieve.lax/libsieve_ext_ihave.a/ext-ihave-common.o .libs/libdovecot-sieve.lax/libsieve_ext_ihave.a/ext-ihave.o .libs/libdovecot-sieve.lax/libsieve_ext_ihave.a/tst-ihave.o .libs/libdovecot-sieve.lax/libsieve_ext_editheader.a/cmd-addheader.o .libs/libdovecot-sieve.lax/libsieve_ext_editheader.a/cmd-deleteheader.o .libs/libdovecot-sieve.lax/libsieve_ext_editheader.a/ext-editheader-common.o .libs/libdovecot-sieve.lax/libsieve_ext_editheader.a/ext-editheader.o .libs/libdovecot-sieve.lax/libsieve_ext_duplicate.a/ext-duplicate-common.o .libs/libdovecot-sieve.lax/libsieve_ext_duplicate.a/ext-duplicate.o .libs/libdovecot-sieve.lax/libsieve_ext_duplicate.a/tst-duplicate.o .libs/libdovecot-sieve.lax/libsieve_ext_index.a/ext-index-common.o .libs/libdovecot-sieve.lax/libsieve_ext_index.a/ext-index.o .libs/libdovecot-sieve.lax/libsieve_ext_index.a/tag-index.o .libs/libdovecot-sieve.lax/libsieve_ext_metadata.a/ext-metadata.o .libs/libdovecot-sieve.lax/libsieve_ext_metadata.a/tst-metadata.o .libs/libdovecot-sieve.lax/libsieve_ext_metadata.a/tst-metadataexists.o .libs/libdovecot-sieve.lax/libsieve_ext_mime.a/cmd-break.o .libs/libdovecot-sieve.lax/libsieve_ext_mime.a/cmd-extracttext.o .libs/libdovecot-sieve.lax/libsieve_ext_mime.a/cmd-foreverypart.o .libs/libdovecot-sieve.lax/libsieve_ext_mime.a/ext-extracttext.o .libs/libdovecot-sieve.lax/libsieve_ext_mime.a/ext-foreverypart.o .libs/libdovecot-sieve.lax/libsieve_ext_mime.a/ext-mime-common.o .libs/libdovecot-sieve.lax/libsieve_ext_mime.a/ext-mime.o .libs/libdovecot-sieve.lax/libsieve_ext_mime.a/tag-mime.o .libs/libdovecot-sieve.lax/libsieve_ext_special_use.a/ext-special-use-common.o .libs/libdovecot-sieve.lax/libsieve_ext_special_use.a/ext-special-use.o .libs/libdovecot-sieve.lax/libsieve_ext_special_use.a/tag-specialuse.o .libs/libdovecot-sieve.lax/libsieve_ext_special_use.a/tst-specialuse-exists.o .libs/libdovecot-sieve.lax/libsieve_ext_debug.a/cmd-debug-log.o .libs/libdovecot-sieve.lax/libsieve_ext_debug.a/ext-debug.o .libs/libdovecot-sieve.lax/libsieve_ext_vnd_environment.a/ext-vnd-environment-items.o .libs/libdovecot-sieve.lax/libsieve_ext_vnd_environment.a/ext-vnd-environment-variables.o .libs/libdovecot-sieve.lax/libsieve_ext_vnd_environment.a/ext-vnd-environment.o .libs/libdovecot-sieve.lax/libsieve_ext_vnd_report.a/cmd-report.o .libs/libdovecot-sieve.lax/libsieve_ext_vnd_report.a/ext-vnd-report-common.o .libs/libdovecot-sieve.lax/libsieve_ext_vnd_report.a/ext-vnd-report.o .libs/libdovecot-sieve.lax/libsieve_util.a/edit-mail.o .libs/libdovecot-sieve.lax/libsieve_util.a/mail-raw.o .libs/libdovecot-sieve.lax/libsieve_util.a/rfc2822.o
libtool: link: ranlib .libs/libdovecot-sieve.a
libtool: link: rm -fr .libs/libdovecot-sieve.lax .libs/libdovecot-sieve.lax
libtool: link: ( cd ".libs" && rm -f "libdovecot-sieve.la" && ln -s "../libdovecot-sieve.la" "libdovecot-sieve.la" )
Making all in plugins
--- all-recursive ---
Making all in doveadm-sieve
--- doveadm-sieve-cmd-list.lo ---
--- doveadm-sieve-cmd-get.lo ---
--- doveadm-sieve-cmd-put.lo ---
--- doveadm-sieve-cmd-delete.lo ---
--- doveadm-sieve-cmd-list.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib-sieve  -I/usr/local/include/dovecot     -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT doveadm-sieve-cmd-list.lo -MD -MP -MF .deps/doveadm-sieve-cmd-list.Tpo -c -o doveadm-sieve-cmd-list.lo doveadm-sieve-cmd-list.c
--- doveadm-sieve-cmd-get.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib-sieve  -I/usr/local/include/dovecot     -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT doveadm-sieve-cmd-get.lo -MD -MP -MF .deps/doveadm-sieve-cmd-get.Tpo -c -o doveadm-sieve-cmd-get.lo doveadm-sieve-cmd-get.c
--- doveadm-sieve-cmd-put.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib-sieve  -I/usr/local/include/dovecot     -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT doveadm-sieve-cmd-put.lo -MD -MP -MF .deps/doveadm-sieve-cmd-put.Tpo -c -o doveadm-sieve-cmd-put.lo doveadm-sieve-cmd-put.c
--- doveadm-sieve-cmd-delete.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib-sieve  -I/usr/local/include/dovecot     -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT doveadm-sieve-cmd-delete.lo -MD -MP -MF .deps/doveadm-sieve-cmd-delete.Tpo -c -o doveadm-sieve-cmd-delete.lo doveadm-sieve-cmd-delete.c
--- doveadm-sieve-cmd-put.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib-sieve -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT doveadm-sieve-cmd-put.lo -MD -MP -MF .deps/doveadm-sieve-cmd-put.Tpo -c doveadm-sieve-cmd-put.c  -fPIC -DPIC -o .libs/doveadm-sieve-cmd-put.o
--- doveadm-sieve-cmd-delete.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib-sieve -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT doveadm-sieve-cmd-delete.lo -MD -MP -MF .deps/doveadm-sieve-cmd-delete.Tpo -c doveadm-sieve-cmd-delete.c  -fPIC -DPIC -o .libs/doveadm-sieve-cmd-delete.o
--- doveadm-sieve-cmd-list.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib-sieve -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT doveadm-sieve-cmd-list.lo -MD -MP -MF .deps/doveadm-sieve-cmd-list.Tpo -c doveadm-sieve-cmd-list.c  -fPIC -DPIC -o .libs/doveadm-sieve-cmd-list.o
--- doveadm-sieve-cmd-get.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib-sieve -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT doveadm-sieve-cmd-get.lo -MD -MP -MF .deps/doveadm-sieve-cmd-get.Tpo -c doveadm-sieve-cmd-get.c  -fPIC -DPIC -o .libs/doveadm-sieve-cmd-get.o
--- doveadm-sieve-cmd-list.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib-sieve -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT doveadm-sieve-cmd-list.lo -MD -MP -MF .deps/doveadm-sieve-cmd-list.Tpo -c doveadm-sieve-cmd-list.c -o doveadm-sieve-cmd-list.o >/dev/null 2>&1
--- doveadm-sieve-cmd-get.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib-sieve -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT doveadm-sieve-cmd-get.lo -MD -MP -MF .deps/doveadm-sieve-cmd-get.Tpo -c doveadm-sieve-cmd-get.c -o doveadm-sieve-cmd-get.o >/dev/null 2>&1
--- doveadm-sieve-cmd-delete.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib-sieve -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT doveadm-sieve-cmd-delete.lo -MD -MP -MF .deps/doveadm-sieve-cmd-delete.Tpo -c doveadm-sieve-cmd-delete.c -o doveadm-sieve-cmd-delete.o >/dev/null 2>&1
--- doveadm-sieve-cmd-put.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib-sieve -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT doveadm-sieve-cmd-put.lo -MD -MP -MF .deps/doveadm-sieve-cmd-put.Tpo -c doveadm-sieve-cmd-put.c -o doveadm-sieve-cmd-put.o >/dev/null 2>&1
--- doveadm-sieve-cmd-list.lo ---
mv -f .deps/doveadm-sieve-cmd-list.Tpo .deps/doveadm-sieve-cmd-list.Plo
--- doveadm-sieve-cmd-get.lo ---
mv -f .deps/doveadm-sieve-cmd-get.Tpo .deps/doveadm-sieve-cmd-get.Plo
--- doveadm-sieve-cmd-activate.lo ---
--- doveadm-sieve-cmd-rename.lo ---
--- doveadm-sieve-cmd-activate.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib-sieve  -I/usr/local/include/dovecot     -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT doveadm-sieve-cmd-activate.lo -MD -MP -MF .deps/doveadm-sieve-cmd-activate.Tpo -c -o doveadm-sieve-cmd-activate.lo doveadm-sieve-cmd-activate.c
--- doveadm-sieve-cmd-rename.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib-sieve  -I/usr/local/include/dovecot     -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT doveadm-sieve-cmd-rename.lo -MD -MP -MF .deps/doveadm-sieve-cmd-rename.Tpo -c -o doveadm-sieve-cmd-rename.lo doveadm-sieve-cmd-rename.c
--- doveadm-sieve-cmd-delete.lo ---
mv -f .deps/doveadm-sieve-cmd-delete.Tpo .deps/doveadm-sieve-cmd-delete.Plo
--- doveadm-sieve-cmd.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib-sieve  -I/usr/local/include/dovecot     -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT doveadm-sieve-cmd.lo -MD -MP -MF .deps/doveadm-sieve-cmd.Tpo -c -o doveadm-sieve-cmd.lo doveadm-sieve-cmd.c
--- doveadm-sieve-cmd-activate.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib-sieve -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT doveadm-sieve-cmd-activate.lo -MD -MP -MF .deps/doveadm-sieve-cmd-activate.Tpo -c doveadm-sieve-cmd-activate.c  -fPIC -DPIC -o .libs/doveadm-sieve-cmd-activate.o
--- doveadm-sieve-cmd-rename.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib-sieve -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT doveadm-sieve-cmd-rename.lo -MD -MP -MF .deps/doveadm-sieve-cmd-rename.Tpo -c doveadm-sieve-cmd-rename.c  -fPIC -DPIC -o .libs/doveadm-sieve-cmd-rename.o
--- doveadm-sieve-cmd-put.lo ---
mv -f .deps/doveadm-sieve-cmd-put.Tpo .deps/doveadm-sieve-cmd-put.Plo
--- doveadm-sieve-sync.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib-sieve  -I/usr/local/include/dovecot     -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT doveadm-sieve-sync.lo -MD -MP -MF .deps/doveadm-sieve-sync.Tpo -c -o doveadm-sieve-sync.lo doveadm-sieve-sync.c
--- doveadm-sieve-cmd.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib-sieve -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT doveadm-sieve-cmd.lo -MD -MP -MF .deps/doveadm-sieve-cmd.Tpo -c doveadm-sieve-cmd.c  -fPIC -DPIC -o .libs/doveadm-sieve-cmd.o
--- doveadm-sieve-sync.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib-sieve -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT doveadm-sieve-sync.lo -MD -MP -MF .deps/doveadm-sieve-sync.Tpo -c doveadm-sieve-sync.c  -fPIC -DPIC -o .libs/doveadm-sieve-sync.o
--- doveadm-sieve-cmd-rename.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib-sieve -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT doveadm-sieve-cmd-rename.lo -MD -MP -MF .deps/doveadm-sieve-cmd-rename.Tpo -c doveadm-sieve-cmd-rename.c -o doveadm-sieve-cmd-rename.o >/dev/null 2>&1
--- doveadm-sieve-cmd-activate.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib-sieve -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT doveadm-sieve-cmd-activate.lo -MD -MP -MF .deps/doveadm-sieve-cmd-activate.Tpo -c doveadm-sieve-cmd-activate.c -o doveadm-sieve-cmd-activate.o >/dev/null 2>&1
--- doveadm-sieve-cmd.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib-sieve -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT doveadm-sieve-cmd.lo -MD -MP -MF .deps/doveadm-sieve-cmd.Tpo -c doveadm-sieve-cmd.c -o doveadm-sieve-cmd.o >/dev/null 2>&1
--- doveadm-sieve-cmd-rename.lo ---
mv -f .deps/doveadm-sieve-cmd-rename.Tpo .deps/doveadm-sieve-cmd-rename.Plo
--- doveadm-sieve-plugin.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib-sieve  -I/usr/local/include/dovecot     -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT doveadm-sieve-plugin.lo -MD -MP -MF .deps/doveadm-sieve-plugin.Tpo -c -o doveadm-sieve-plugin.lo doveadm-sieve-plugin.c
--- doveadm-sieve-cmd-activate.lo ---
mv -f .deps/doveadm-sieve-cmd-activate.Tpo .deps/doveadm-sieve-cmd-activate.Plo
--- doveadm-sieve-plugin.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib-sieve -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT doveadm-sieve-plugin.lo -MD -MP -MF .deps/doveadm-sieve-plugin.Tpo -c doveadm-sieve-plugin.c  -fPIC -DPIC -o .libs/doveadm-sieve-plugin.o
--- doveadm-sieve-cmd.lo ---
mv -f .deps/doveadm-sieve-cmd.Tpo .deps/doveadm-sieve-cmd.Plo
--- doveadm-sieve-plugin.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib-sieve -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT doveadm-sieve-plugin.lo -MD -MP -MF .deps/doveadm-sieve-plugin.Tpo -c doveadm-sieve-plugin.c -o doveadm-sieve-plugin.o >/dev/null 2>&1
--- doveadm-sieve-sync.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib-sieve -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT doveadm-sieve-sync.lo -MD -MP -MF .deps/doveadm-sieve-sync.Tpo -c doveadm-sieve-sync.c -o doveadm-sieve-sync.o >/dev/null 2>&1
--- doveadm-sieve-plugin.lo ---
mv -f .deps/doveadm-sieve-plugin.Tpo .deps/doveadm-sieve-plugin.Plo
--- doveadm-sieve-sync.lo ---
mv -f .deps/doveadm-sieve-sync.Tpo .deps/doveadm-sieve-sync.Plo
--- lib10_doveadm_sieve_plugin.la ---
/bin/sh ../../../libtool  --tag=CC    --mode=link cc   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../..  -module -avoid-version -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o lib10_doveadm_sieve_plugin.la -rpath /usr/local/lib/dovecot/doveadm doveadm-sieve-cmd-list.lo doveadm-sieve-cmd-get.lo  doveadm-sieve-cmd-put.lo doveadm-sieve-cmd-delete.lo  doveadm-sieve-cmd-activate.lo doveadm-sieve-cmd-rename.lo  doveadm-sieve-cmd.lo doveadm-sieve-sync.lo  doveadm-sieve-plugin.lo ../../../src/lib-sieve/libdovecot-sieve.la 
libtool: link: cc -shared  -fPIC -DPIC  .libs/doveadm-sieve-cmd-list.o .libs/doveadm-sieve-cmd-get.o .libs/doveadm-sieve-cmd-put.o .libs/doveadm-sieve-cmd-delete.o .libs/doveadm-sieve-cmd-activate.o .libs/doveadm-sieve-cmd-rename.o .libs/doveadm-sieve-cmd.o .libs/doveadm-sieve-sync.o .libs/doveadm-sieve-plugin.o   -Wl,-rpath -Wl,/usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/src/lib-sieve/.libs -Wl,-rpath -Wl,/usr/local/lib/dovecot -L/usr/local/lib ../../../src/lib-sieve/.libs/libdovecot-sieve.so  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -pthread -Wl,-soname -Wl,lib10_doveadm_sieve_plugin.so -o .libs/lib10_doveadm_sieve_plugin.so
libtool: link: ar cr .libs/lib10_doveadm_sieve_plugin.a  doveadm-sieve-cmd-list.o doveadm-sieve-cmd-get.o doveadm-sieve-cmd-put.o doveadm-sieve-cmd-delete.o doveadm-sieve-cmd-activate.o doveadm-sieve-cmd-rename.o doveadm-sieve-cmd.o doveadm-sieve-sync.o doveadm-sieve-plugin.o
libtool: link: ranlib .libs/lib10_doveadm_sieve_plugin.a
libtool: link: ( cd ".libs" && rm -f "lib10_doveadm_sieve_plugin.la" && ln -s "../lib10_doveadm_sieve_plugin.la" "lib10_doveadm_sieve_plugin.la" )
Making all in lda-sieve
--- lda-sieve-plugin.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib-sieve  -I/usr/local/include/dovecot       -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT lda-sieve-plugin.lo -MD -MP -MF .deps/lda-sieve-plugin.Tpo -c -o lda-sieve-plugin.lo lda-sieve-plugin.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib-sieve -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT lda-sieve-plugin.lo -MD -MP -MF .deps/lda-sieve-plugin.Tpo -c lda-sieve-plugin.c  -fPIC -DPIC -o .libs/lda-sieve-plugin.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib-sieve -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT lda-sieve-plugin.lo -MD -MP -MF .deps/lda-sieve-plugin.Tpo -c lda-sieve-plugin.c -o lda-sieve-plugin.o >/dev/null 2>&1
mv -f .deps/lda-sieve-plugin.Tpo .deps/lda-sieve-plugin.Plo
--- lib90_sieve_plugin.la ---
/bin/sh ../../../libtool  --tag=CC    --mode=link cc   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -module -avoid-version  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o lib90_sieve_plugin.la -rpath /usr/local/lib/dovecot lda-sieve-plugin.lo ../../../src/lib-sieve/libdovecot-sieve.la 
libtool: link: cc -shared  -fPIC -DPIC  .libs/lda-sieve-plugin.o   -Wl,-rpath -Wl,/usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/src/lib-sieve/.libs -Wl,-rpath -Wl,/usr/local/lib/dovecot -L/usr/local/lib ../../../src/lib-sieve/.libs/libdovecot-sieve.so  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -pthread -Wl,-soname -Wl,lib90_sieve_plugin.so -o .libs/lib90_sieve_plugin.so
libtool: link: ar cr .libs/lib90_sieve_plugin.a  lda-sieve-plugin.o
libtool: link: ranlib .libs/lib90_sieve_plugin.a
libtool: link: ( cd ".libs" && rm -f "lib90_sieve_plugin.la" && ln -s "../lib90_sieve_plugin.la" "lib90_sieve_plugin.la" )
Making all in sieve-extprograms
--- cmd-pipe.lo ---
--- cmd-filter.lo ---
--- cmd-execute.lo ---
--- ext-pipe.lo ---
--- cmd-pipe.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib-sieve  -I../../../src/lib-sieve/util  -I../../../src/lib-sieve/plugins/copy  -I../../../src/lib-sieve/plugins/variables  -I/usr/local/include/dovecot  -DPKG_RUNDIR=\"""\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT cmd-pipe.lo -MD -MP -MF .deps/cmd-pipe.Tpo -c -o cmd-pipe.lo cmd-pipe.c
--- cmd-filter.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib-sieve  -I../../../src/lib-sieve/util  -I../../../src/lib-sieve/plugins/copy  -I../../../src/lib-sieve/plugins/variables  -I/usr/local/include/dovecot  -DPKG_RUNDIR=\"""\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT cmd-filter.lo -MD -MP -MF .deps/cmd-filter.Tpo -c -o cmd-filter.lo cmd-filter.c
--- cmd-execute.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib-sieve  -I../../../src/lib-sieve/util  -I../../../src/lib-sieve/plugins/copy  -I../../../src/lib-sieve/plugins/variables  -I/usr/local/include/dovecot  -DPKG_RUNDIR=\"""\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT cmd-execute.lo -MD -MP -MF .deps/cmd-execute.Tpo -c -o cmd-execute.lo cmd-execute.c
--- ext-pipe.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib-sieve  -I../../../src/lib-sieve/util  -I../../../src/lib-sieve/plugins/copy  -I../../../src/lib-sieve/plugins/variables  -I/usr/local/include/dovecot  -DPKG_RUNDIR=\"""\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT ext-pipe.lo -MD -MP -MF .deps/ext-pipe.Tpo -c -o ext-pipe.lo ext-pipe.c
--- cmd-execute.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib-sieve -I../../../src/lib-sieve/util -I../../../src/lib-sieve/plugins/copy -I../../../src/lib-sieve/plugins/variables -I/usr/local/include/dovecot -DPKG_RUNDIR=\"\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT cmd-execute.lo -MD -MP -MF .deps/cmd-execute.Tpo -c cmd-execute.c  -fPIC -DPIC -o .libs/cmd-execute.o
--- cmd-filter.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib-sieve -I../../../src/lib-sieve/util -I../../../src/lib-sieve/plugins/copy -I../../../src/lib-sieve/plugins/variables -I/usr/local/include/dovecot -DPKG_RUNDIR=\"\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT cmd-filter.lo -MD -MP -MF .deps/cmd-filter.Tpo -c cmd-filter.c  -fPIC -DPIC -o .libs/cmd-filter.o
--- ext-pipe.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib-sieve -I../../../src/lib-sieve/util -I../../../src/lib-sieve/plugins/copy -I../../../src/lib-sieve/plugins/variables -I/usr/local/include/dovecot -DPKG_RUNDIR=\"\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT ext-pipe.lo -MD -MP -MF .deps/ext-pipe.Tpo -c ext-pipe.c  -fPIC -DPIC -o .libs/ext-pipe.o
--- cmd-pipe.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib-sieve -I../../../src/lib-sieve/util -I../../../src/lib-sieve/plugins/copy -I../../../src/lib-sieve/plugins/variables -I/usr/local/include/dovecot -DPKG_RUNDIR=\"\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT cmd-pipe.lo -MD -MP -MF .deps/cmd-pipe.Tpo -c cmd-pipe.c  -fPIC -DPIC -o .libs/cmd-pipe.o
--- ext-pipe.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib-sieve -I../../../src/lib-sieve/util -I../../../src/lib-sieve/plugins/copy -I../../../src/lib-sieve/plugins/variables -I/usr/local/include/dovecot -DPKG_RUNDIR=\"\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT ext-pipe.lo -MD -MP -MF .deps/ext-pipe.Tpo -c ext-pipe.c -o ext-pipe.o >/dev/null 2>&1
--- cmd-pipe.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib-sieve -I../../../src/lib-sieve/util -I../../../src/lib-sieve/plugins/copy -I../../../src/lib-sieve/plugins/variables -I/usr/local/include/dovecot -DPKG_RUNDIR=\"\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT cmd-pipe.lo -MD -MP -MF .deps/cmd-pipe.Tpo -c cmd-pipe.c -o cmd-pipe.o >/dev/null 2>&1
--- cmd-filter.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib-sieve -I../../../src/lib-sieve/util -I../../../src/lib-sieve/plugins/copy -I../../../src/lib-sieve/plugins/variables -I/usr/local/include/dovecot -DPKG_RUNDIR=\"\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT cmd-filter.lo -MD -MP -MF .deps/cmd-filter.Tpo -c cmd-filter.c -o cmd-filter.o >/dev/null 2>&1
--- cmd-execute.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib-sieve -I../../../src/lib-sieve/util -I../../../src/lib-sieve/plugins/copy -I../../../src/lib-sieve/plugins/variables -I/usr/local/include/dovecot -DPKG_RUNDIR=\"\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT cmd-execute.lo -MD -MP -MF .deps/cmd-execute.Tpo -c cmd-execute.c -o cmd-execute.o >/dev/null 2>&1
--- ext-pipe.lo ---
mv -f .deps/ext-pipe.Tpo .deps/ext-pipe.Plo
--- ext-filter.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib-sieve  -I../../../src/lib-sieve/util  -I../../../src/lib-sieve/plugins/copy  -I../../../src/lib-sieve/plugins/variables  -I/usr/local/include/dovecot  -DPKG_RUNDIR=\"""\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT ext-filter.lo -MD -MP -MF .deps/ext-filter.Tpo -c -o ext-filter.lo ext-filter.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib-sieve -I../../../src/lib-sieve/util -I../../../src/lib-sieve/plugins/copy -I../../../src/lib-sieve/plugins/variables -I/usr/local/include/dovecot -DPKG_RUNDIR=\"\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT ext-filter.lo -MD -MP -MF .deps/ext-filter.Tpo -c ext-filter.c  -fPIC -DPIC -o .libs/ext-filter.o
--- cmd-pipe.lo ---
mv -f .deps/cmd-pipe.Tpo .deps/cmd-pipe.Plo
--- ext-execute.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib-sieve  -I../../../src/lib-sieve/util  -I../../../src/lib-sieve/plugins/copy  -I../../../src/lib-sieve/plugins/variables  -I/usr/local/include/dovecot  -DPKG_RUNDIR=\"""\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT ext-execute.lo -MD -MP -MF .deps/ext-execute.Tpo -c -o ext-execute.lo ext-execute.c
--- cmd-filter.lo ---
mv -f .deps/cmd-filter.Tpo .deps/cmd-filter.Plo
--- sieve-extprograms-common.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib-sieve  -I../../../src/lib-sieve/util  -I../../../src/lib-sieve/plugins/copy  -I../../../src/lib-sieve/plugins/variables  -I/usr/local/include/dovecot  -DPKG_RUNDIR=\"""\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT sieve-extprograms-common.lo -MD -MP -MF .deps/sieve-extprograms-common.Tpo -c -o sieve-extprograms-common.lo sieve-extprograms-common.c
--- ext-filter.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib-sieve -I../../../src/lib-sieve/util -I../../../src/lib-sieve/plugins/copy -I../../../src/lib-sieve/plugins/variables -I/usr/local/include/dovecot -DPKG_RUNDIR=\"\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT ext-filter.lo -MD -MP -MF .deps/ext-filter.Tpo -c ext-filter.c -o ext-filter.o >/dev/null 2>&1
--- cmd-execute.lo ---
mv -f .deps/cmd-execute.Tpo .deps/cmd-execute.Plo
--- sieve-extprograms-plugin.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib-sieve  -I../../../src/lib-sieve/util  -I../../../src/lib-sieve/plugins/copy  -I../../../src/lib-sieve/plugins/variables  -I/usr/local/include/dovecot  -DPKG_RUNDIR=\"""\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT sieve-extprograms-plugin.lo -MD -MP -MF .deps/sieve-extprograms-plugin.Tpo -c -o sieve-extprograms-plugin.lo sieve-extprograms-plugin.c
--- ext-execute.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib-sieve -I../../../src/lib-sieve/util -I../../../src/lib-sieve/plugins/copy -I../../../src/lib-sieve/plugins/variables -I/usr/local/include/dovecot -DPKG_RUNDIR=\"\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT ext-execute.lo -MD -MP -MF .deps/ext-execute.Tpo -c ext-execute.c  -fPIC -DPIC -o .libs/ext-execute.o
--- sieve-extprograms-common.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib-sieve -I../../../src/lib-sieve/util -I../../../src/lib-sieve/plugins/copy -I../../../src/lib-sieve/plugins/variables -I/usr/local/include/dovecot -DPKG_RUNDIR=\"\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT sieve-extprograms-common.lo -MD -MP -MF .deps/sieve-extprograms-common.Tpo -c sieve-extprograms-common.c  -fPIC -DPIC -o .libs/sieve-extprograms-common.o
--- sieve-extprograms-plugin.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib-sieve -I../../../src/lib-sieve/util -I../../../src/lib-sieve/plugins/copy -I../../../src/lib-sieve/plugins/variables -I/usr/local/include/dovecot -DPKG_RUNDIR=\"\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT sieve-extprograms-plugin.lo -MD -MP -MF .deps/sieve-extprograms-plugin.Tpo -c sieve-extprograms-plugin.c  -fPIC -DPIC -o .libs/sieve-extprograms-plugin.o
--- ext-filter.lo ---
mv -f .deps/ext-filter.Tpo .deps/ext-filter.Plo
--- ext-execute.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib-sieve -I../../../src/lib-sieve/util -I../../../src/lib-sieve/plugins/copy -I../../../src/lib-sieve/plugins/variables -I/usr/local/include/dovecot -DPKG_RUNDIR=\"\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT ext-execute.lo -MD -MP -MF .deps/ext-execute.Tpo -c ext-execute.c -o ext-execute.o >/dev/null 2>&1
--- sieve-extprograms-plugin.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib-sieve -I../../../src/lib-sieve/util -I../../../src/lib-sieve/plugins/copy -I../../../src/lib-sieve/plugins/variables -I/usr/local/include/dovecot -DPKG_RUNDIR=\"\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT sieve-extprograms-plugin.lo -MD -MP -MF .deps/sieve-extprograms-plugin.Tpo -c sieve-extprograms-plugin.c -o sieve-extprograms-plugin.o >/dev/null 2>&1
--- ext-execute.lo ---
mv -f .deps/ext-execute.Tpo .deps/ext-execute.Plo
--- sieve-extprograms-plugin.lo ---
mv -f .deps/sieve-extprograms-plugin.Tpo .deps/sieve-extprograms-plugin.Plo
--- sieve-extprograms-common.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib-sieve -I../../../src/lib-sieve/util -I../../../src/lib-sieve/plugins/copy -I../../../src/lib-sieve/plugins/variables -I/usr/local/include/dovecot -DPKG_RUNDIR=\"\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT sieve-extprograms-common.lo -MD -MP -MF .deps/sieve-extprograms-common.Tpo -c sieve-extprograms-common.c -o sieve-extprograms-common.o >/dev/null 2>&1
mv -f .deps/sieve-extprograms-common.Tpo .deps/sieve-extprograms-common.Plo
--- lib90_sieve_extprograms_plugin.la ---
/bin/sh ../../../libtool   --tag=CC   --mode=link  cc  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../..  -module -avoid-version -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o lib90_sieve_extprograms_plugin.la -rpath /usr/local/lib/dovecot/sieve cmd-pipe.lo cmd-filter.lo cmd-execute.lo  ext-pipe.lo ext-filter.lo ext-execute.lo sieve-extprograms-common.lo  sieve-extprograms-plugin.lo  
libtool: link: cc -shared  -fPIC -DPIC  .libs/cmd-pipe.o .libs/cmd-filter.o .libs/cmd-execute.o .libs/ext-pipe.o .libs/ext-filter.o .libs/ext-execute.o .libs/sieve-extprograms-common.o .libs/sieve-extprograms-plugin.o   -L/usr/local/lib  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,lib90_sieve_extprograms_plugin.so -o .libs/lib90_sieve_extprograms_plugin.so
libtool: link: ar cr .libs/lib90_sieve_extprograms_plugin.a  cmd-pipe.o cmd-filter.o cmd-execute.o ext-pipe.o ext-filter.o ext-execute.o sieve-extprograms-common.o sieve-extprograms-plugin.o
libtool: link: ranlib .libs/lib90_sieve_extprograms_plugin.a
libtool: link: ( cd ".libs" && rm -f "lib90_sieve_extprograms_plugin.la" && ln -s "../lib90_sieve_extprograms_plugin.la" "lib90_sieve_extprograms_plugin.la" )
Making all in imapsieve
--- lib90_sieve_imapsieve_plugin_la-ext-imapsieve.lo ---
--- ext-imapsieve.lo ---
--- ext-imapsieve-environment.lo ---
--- imap-sieve.lo ---
--- lib90_sieve_imapsieve_plugin_la-ext-imapsieve.lo ---
/bin/sh ../../../libtool  --tag=CC   --mode=compile cc -DHAVE_CONFIG_H -I. -I../../..  -I../../../src/lib-sieve  -I../../../src/lib-sieve/util  -I../../../src/lib-sieve/plugins/environment      -I/usr/local/include/dovecot  -DPKG_RUNDIR=\"""\"  -D__IMAPSIEVE_DUMMY -I/usr/local/include  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT lib90_sieve_imapsieve_plugin_la-ext-imapsieve.lo -MD -MP -MF .deps/lib90_sieve_imapsieve_plugin_la-ext-imapsieve.Tpo -c -o lib90_sieve_imapsieve_plugin_la-ext-imapsieve.lo `test -f 'ext-imapsieve.c' || echo './'`ext-imapsieve.c
--- ext-imapsieve.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib-sieve  -I../../../src/lib-sieve/util  -I../../../src/lib-sieve/plugins/environment      -I/usr/local/include/dovecot  -DPKG_RUNDIR=\"""\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT ext-imapsieve.lo -MD -MP -MF .deps/ext-imapsieve.Tpo -c -o ext-imapsieve.lo ext-imapsieve.c
--- ext-imapsieve-environment.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib-sieve  -I../../../src/lib-sieve/util  -I../../../src/lib-sieve/plugins/environment      -I/usr/local/include/dovecot  -DPKG_RUNDIR=\"""\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT ext-imapsieve-environment.lo -MD -MP -MF .deps/ext-imapsieve-environment.Tpo -c -o ext-imapsieve-environment.lo ext-imapsieve-environment.c
--- imap-sieve.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib-sieve  -I../../../src/lib-sieve/util  -I../../../src/lib-sieve/plugins/environment      -I/usr/local/include/dovecot  -DPKG_RUNDIR=\"""\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT imap-sieve.lo -MD -MP -MF .deps/imap-sieve.Tpo -c -o imap-sieve.lo imap-sieve.c
--- ext-imapsieve.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib-sieve -I../../../src/lib-sieve/util -I../../../src/lib-sieve/plugins/environment -I/usr/local/include/dovecot -DPKG_RUNDIR=\"\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT ext-imapsieve.lo -MD -MP -MF .deps/ext-imapsieve.Tpo -c ext-imapsieve.c  -fPIC -DPIC -o .libs/ext-imapsieve.o
--- lib90_sieve_imapsieve_plugin_la-ext-imapsieve.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib-sieve -I../../../src/lib-sieve/util -I../../../src/lib-sieve/plugins/environment -I/usr/local/include/dovecot -DPKG_RUNDIR=\"\" -D__IMAPSIEVE_DUMMY -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT lib90_sieve_imapsieve_plugin_la-ext-imapsieve.lo -MD -MP -MF .deps/lib90_sieve_imapsieve_plugin_la-ext-imapsieve.Tpo -c ext-imapsieve.c  -fPIC -DPIC -o .libs/lib90_sieve_imapsieve_plugin_la-ext-imapsieve.o
--- ext-imapsieve-environment.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib-sieve -I../../../src/lib-sieve/util -I../../../src/lib-sieve/plugins/environment -I/usr/local/include/dovecot -DPKG_RUNDIR=\"\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT ext-imapsieve-environment.lo -MD -MP -MF .deps/ext-imapsieve-environment.Tpo -c ext-imapsieve-environment.c  -fPIC -DPIC -o .libs/ext-imapsieve-environment.o
--- imap-sieve.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib-sieve -I../../../src/lib-sieve/util -I../../../src/lib-sieve/plugins/environment -I/usr/local/include/dovecot -DPKG_RUNDIR=\"\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT imap-sieve.lo -MD -MP -MF .deps/imap-sieve.Tpo -c imap-sieve.c  -fPIC -DPIC -o .libs/imap-sieve.o
--- ext-imapsieve.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib-sieve -I../../../src/lib-sieve/util -I../../../src/lib-sieve/plugins/environment -I/usr/local/include/dovecot -DPKG_RUNDIR=\"\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT ext-imapsieve.lo -MD -MP -MF .deps/ext-imapsieve.Tpo -c ext-imapsieve.c -o ext-imapsieve.o >/dev/null 2>&1
--- lib90_sieve_imapsieve_plugin_la-ext-imapsieve.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib-sieve -I../../../src/lib-sieve/util -I../../../src/lib-sieve/plugins/environment -I/usr/local/include/dovecot -DPKG_RUNDIR=\"\" -D__IMAPSIEVE_DUMMY -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT lib90_sieve_imapsieve_plugin_la-ext-imapsieve.lo -MD -MP -MF .deps/lib90_sieve_imapsieve_plugin_la-ext-imapsieve.Tpo -c ext-imapsieve.c -o lib90_sieve_imapsieve_plugin_la-ext-imapsieve.o >/dev/null 2>&1
--- ext-imapsieve-environment.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib-sieve -I../../../src/lib-sieve/util -I../../../src/lib-sieve/plugins/environment -I/usr/local/include/dovecot -DPKG_RUNDIR=\"\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT ext-imapsieve-environment.lo -MD -MP -MF .deps/ext-imapsieve-environment.Tpo -c ext-imapsieve-environment.c -o ext-imapsieve-environment.o >/dev/null 2>&1
--- ext-imapsieve.lo ---
mv -f .deps/ext-imapsieve.Tpo .deps/ext-imapsieve.Plo
--- lib90_sieve_imapsieve_plugin_la-ext-imapsieve.lo ---
mv -f .deps/lib90_sieve_imapsieve_plugin_la-ext-imapsieve.Tpo .deps/lib90_sieve_imapsieve_plugin_la-ext-imapsieve.Plo
--- imap-sieve-storage.lo ---
--- imap-sieve-plugin.lo ---
--- imap-sieve-storage.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib-sieve  -I../../../src/lib-sieve/util  -I../../../src/lib-sieve/plugins/environment      -I/usr/local/include/dovecot  -DPKG_RUNDIR=\"""\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT imap-sieve-storage.lo -MD -MP -MF .deps/imap-sieve-storage.Tpo -c -o imap-sieve-storage.lo imap-sieve-storage.c
--- imap-sieve-plugin.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib-sieve  -I../../../src/lib-sieve/util  -I../../../src/lib-sieve/plugins/environment      -I/usr/local/include/dovecot  -DPKG_RUNDIR=\"""\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT imap-sieve-plugin.lo -MD -MP -MF .deps/imap-sieve-plugin.Tpo -c -o imap-sieve-plugin.lo imap-sieve-plugin.c
--- imap-sieve-storage.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib-sieve -I../../../src/lib-sieve/util -I../../../src/lib-sieve/plugins/environment -I/usr/local/include/dovecot -DPKG_RUNDIR=\"\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT imap-sieve-storage.lo -MD -MP -MF .deps/imap-sieve-storage.Tpo -c imap-sieve-storage.c  -fPIC -DPIC -o .libs/imap-sieve-storage.o
--- imap-sieve-plugin.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib-sieve -I../../../src/lib-sieve/util -I../../../src/lib-sieve/plugins/environment -I/usr/local/include/dovecot -DPKG_RUNDIR=\"\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT imap-sieve-plugin.lo -MD -MP -MF .deps/imap-sieve-plugin.Tpo -c imap-sieve-plugin.c  -fPIC -DPIC -o .libs/imap-sieve-plugin.o
--- ext-imapsieve-environment.lo ---
mv -f .deps/ext-imapsieve-environment.Tpo .deps/ext-imapsieve-environment.Plo
--- lib90_sieve_imapsieve_plugin_la-sieve-imapsieve-plugin.lo ---
/bin/sh ../../../libtool  --tag=CC   --mode=compile cc -DHAVE_CONFIG_H -I. -I../../..  -I../../../src/lib-sieve  -I../../../src/lib-sieve/util  -I../../../src/lib-sieve/plugins/environment      -I/usr/local/include/dovecot  -DPKG_RUNDIR=\"""\"  -D__IMAPSIEVE_DUMMY -I/usr/local/include  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT lib90_sieve_imapsieve_plugin_la-sieve-imapsieve-plugin.lo -MD -MP -MF .deps/lib90_sieve_imapsieve_plugin_la-sieve-imapsieve-plugin.Tpo -c -o lib90_sieve_imapsieve_plugin_la-sieve-imapsieve-plugin.lo `test -f 'sieve-imapsieve-plugin.c' || echo './'`sieve-imapsieve-plugin.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib-sieve -I../../../src/lib-sieve/util -I../../../src/lib-sieve/plugins/environment -I/usr/local/include/dovecot -DPKG_RUNDIR=\"\" -D__IMAPSIEVE_DUMMY -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT lib90_sieve_imapsieve_plugin_la-sieve-imapsieve-plugin.lo -MD -MP -MF .deps/lib90_sieve_imapsieve_plugin_la-sieve-imapsieve-plugin.Tpo -c sieve-imapsieve-plugin.c  -fPIC -DPIC -o .libs/lib90_sieve_imapsieve_plugin_la-sieve-imapsieve-plugin.o
--- imap-sieve.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib-sieve -I../../../src/lib-sieve/util -I../../../src/lib-sieve/plugins/environment -I/usr/local/include/dovecot -DPKG_RUNDIR=\"\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT imap-sieve.lo -MD -MP -MF .deps/imap-sieve.Tpo -c imap-sieve.c -o imap-sieve.o >/dev/null 2>&1
--- imap-sieve-plugin.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib-sieve -I../../../src/lib-sieve/util -I../../../src/lib-sieve/plugins/environment -I/usr/local/include/dovecot -DPKG_RUNDIR=\"\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT imap-sieve-plugin.lo -MD -MP -MF .deps/imap-sieve-plugin.Tpo -c imap-sieve-plugin.c -o imap-sieve-plugin.o >/dev/null 2>&1
--- lib90_sieve_imapsieve_plugin_la-sieve-imapsieve-plugin.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib-sieve -I../../../src/lib-sieve/util -I../../../src/lib-sieve/plugins/environment -I/usr/local/include/dovecot -DPKG_RUNDIR=\"\" -D__IMAPSIEVE_DUMMY -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT lib90_sieve_imapsieve_plugin_la-sieve-imapsieve-plugin.lo -MD -MP -MF .deps/lib90_sieve_imapsieve_plugin_la-sieve-imapsieve-plugin.Tpo -c sieve-imapsieve-plugin.c -o lib90_sieve_imapsieve_plugin_la-sieve-imapsieve-plugin.o >/dev/null 2>&1
--- imap-sieve-plugin.lo ---
mv -f .deps/imap-sieve-plugin.Tpo .deps/imap-sieve-plugin.Plo
--- lib90_sieve_imapsieve_plugin_la-sieve-imapsieve-plugin.lo ---
mv -f .deps/lib90_sieve_imapsieve_plugin_la-sieve-imapsieve-plugin.Tpo .deps/lib90_sieve_imapsieve_plugin_la-sieve-imapsieve-plugin.Plo
--- lib90_sieve_imapsieve_plugin.la ---
/bin/sh ../../../libtool  --tag=CC    --mode=link cc   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../..  -module -avoid-version -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o lib90_sieve_imapsieve_plugin.la -rpath /usr/local/lib/dovecot/sieve lib90_sieve_imapsieve_plugin_la-ext-imapsieve.lo  lib90_sieve_imapsieve_plugin_la-sieve-imapsieve-plugin.lo  
libtool: link: cc -shared  -fPIC -DPIC  .libs/lib90_sieve_imapsieve_plugin_la-ext-imapsieve.o .libs/lib90_sieve_imapsieve_plugin_la-sieve-imapsieve-plugin.o   -L/usr/local/lib  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,lib90_sieve_imapsieve_plugin.so -o .libs/lib90_sieve_imapsieve_plugin.so
libtool: link: ar cr .libs/lib90_sieve_imapsieve_plugin.a  lib90_sieve_imapsieve_plugin_la-ext-imapsieve.o lib90_sieve_imapsieve_plugin_la-sieve-imapsieve-plugin.o
libtool: link: ranlib .libs/lib90_sieve_imapsieve_plugin.a
libtool: link: ( cd ".libs" && rm -f "lib90_sieve_imapsieve_plugin.la" && ln -s "../lib90_sieve_imapsieve_plugin.la" "lib90_sieve_imapsieve_plugin.la" )
--- imap-sieve.lo ---
mv -f .deps/imap-sieve.Tpo .deps/imap-sieve.Plo
--- imap-sieve-storage.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib-sieve -I../../../src/lib-sieve/util -I../../../src/lib-sieve/plugins/environment -I/usr/local/include/dovecot -DPKG_RUNDIR=\"\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT imap-sieve-storage.lo -MD -MP -MF .deps/imap-sieve-storage.Tpo -c imap-sieve-storage.c -o imap-sieve-storage.o >/dev/null 2>&1
mv -f .deps/imap-sieve-storage.Tpo .deps/imap-sieve-storage.Plo
--- lib95_imap_sieve_plugin.la ---
/bin/sh ../../../libtool  --tag=CC    --mode=link cc   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -module -avoid-version  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o lib95_imap_sieve_plugin.la -rpath /usr/local/lib/dovecot ext-imapsieve.lo  ext-imapsieve-environment.lo imap-sieve.lo  imap-sieve-storage.lo imap-sieve-plugin.lo ../../../src/lib-sieve/libdovecot-sieve.la 
libtool: link: cc -shared  -fPIC -DPIC  .libs/ext-imapsieve.o .libs/ext-imapsieve-environment.o .libs/imap-sieve.o .libs/imap-sieve-storage.o .libs/imap-sieve-plugin.o   -Wl,-rpath -Wl,/usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/src/lib-sieve/.libs -Wl,-rpath -Wl,/usr/local/lib/dovecot -L/usr/local/lib ../../../src/lib-sieve/.libs/libdovecot-sieve.so  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -pthread -Wl,-soname -Wl,lib95_imap_sieve_plugin.so -o .libs/lib95_imap_sieve_plugin.so
libtool: link: ar cr .libs/lib95_imap_sieve_plugin.a  ext-imapsieve.o ext-imapsieve-environment.o imap-sieve.o imap-sieve-storage.o imap-sieve-plugin.o
libtool: link: ranlib .libs/lib95_imap_sieve_plugin.a
libtool: link: ( cd ".libs" && rm -f "lib95_imap_sieve_plugin.la" && ln -s "../lib95_imap_sieve_plugin.la" "lib95_imap_sieve_plugin.la" )
Making all in imap-filter-sieve
--- cmd-filter.lo ---
--- cmd-filter-sieve.lo ---
--- imap-filter.lo ---
--- imap-filter-sieve.lo ---
--- cmd-filter.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib-sieve      -I/usr/local/include/dovecot  -DPKG_RUNDIR=\"""\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT cmd-filter.lo -MD -MP -MF .deps/cmd-filter.Tpo -c -o cmd-filter.lo cmd-filter.c
--- imap-filter.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib-sieve      -I/usr/local/include/dovecot  -DPKG_RUNDIR=\"""\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT imap-filter.lo -MD -MP -MF .deps/imap-filter.Tpo -c -o imap-filter.lo imap-filter.c
--- cmd-filter-sieve.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib-sieve      -I/usr/local/include/dovecot  -DPKG_RUNDIR=\"""\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT cmd-filter-sieve.lo -MD -MP -MF .deps/cmd-filter-sieve.Tpo -c -o cmd-filter-sieve.lo cmd-filter-sieve.c
--- imap-filter-sieve.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib-sieve      -I/usr/local/include/dovecot  -DPKG_RUNDIR=\"""\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT imap-filter-sieve.lo -MD -MP -MF .deps/imap-filter-sieve.Tpo -c -o imap-filter-sieve.lo imap-filter-sieve.c
--- cmd-filter.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib-sieve -I/usr/local/include/dovecot -DPKG_RUNDIR=\"\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT cmd-filter.lo -MD -MP -MF .deps/cmd-filter.Tpo -c cmd-filter.c  -fPIC -DPIC -o .libs/cmd-filter.o
--- imap-filter-sieve.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib-sieve -I/usr/local/include/dovecot -DPKG_RUNDIR=\"\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT imap-filter-sieve.lo -MD -MP -MF .deps/imap-filter-sieve.Tpo -c imap-filter-sieve.c  -fPIC -DPIC -o .libs/imap-filter-sieve.o
--- cmd-filter-sieve.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib-sieve -I/usr/local/include/dovecot -DPKG_RUNDIR=\"\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT cmd-filter-sieve.lo -MD -MP -MF .deps/cmd-filter-sieve.Tpo -c cmd-filter-sieve.c  -fPIC -DPIC -o .libs/cmd-filter-sieve.o
--- imap-filter.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib-sieve -I/usr/local/include/dovecot -DPKG_RUNDIR=\"\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT imap-filter.lo -MD -MP -MF .deps/imap-filter.Tpo -c imap-filter.c  -fPIC -DPIC -o .libs/imap-filter.o
--- cmd-filter.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib-sieve -I/usr/local/include/dovecot -DPKG_RUNDIR=\"\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT cmd-filter.lo -MD -MP -MF .deps/cmd-filter.Tpo -c cmd-filter.c -o cmd-filter.o >/dev/null 2>&1
--- imap-filter.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib-sieve -I/usr/local/include/dovecot -DPKG_RUNDIR=\"\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT imap-filter.lo -MD -MP -MF .deps/imap-filter.Tpo -c imap-filter.c -o imap-filter.o >/dev/null 2>&1
--- cmd-filter-sieve.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib-sieve -I/usr/local/include/dovecot -DPKG_RUNDIR=\"\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT cmd-filter-sieve.lo -MD -MP -MF .deps/cmd-filter-sieve.Tpo -c cmd-filter-sieve.c -o cmd-filter-sieve.o >/dev/null 2>&1
--- cmd-filter.lo ---
mv -f .deps/cmd-filter.Tpo .deps/cmd-filter.Plo
--- imap-filter-sieve-plugin.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I../../../src/lib-sieve      -I/usr/local/include/dovecot  -DPKG_RUNDIR=\"""\" -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT imap-filter-sieve-plugin.lo -MD -MP -MF .deps/imap-filter-sieve-plugin.Tpo -c -o imap-filter-sieve-plugin.lo imap-filter-sieve-plugin.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib-sieve -I/usr/local/include/dovecot -DPKG_RUNDIR=\"\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT imap-filter-sieve-plugin.lo -MD -MP -MF .deps/imap-filter-sieve-plugin.Tpo -c imap-filter-sieve-plugin.c  -fPIC -DPIC -o .libs/imap-filter-sieve-plugin.o
--- imap-filter.lo ---
mv -f .deps/imap-filter.Tpo .deps/imap-filter.Plo
--- cmd-filter-sieve.lo ---
mv -f .deps/cmd-filter-sieve.Tpo .deps/cmd-filter-sieve.Plo
--- imap-filter-sieve-plugin.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib-sieve -I/usr/local/include/dovecot -DPKG_RUNDIR=\"\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT imap-filter-sieve-plugin.lo -MD -MP -MF .deps/imap-filter-sieve-plugin.Tpo -c imap-filter-sieve-plugin.c -o imap-filter-sieve-plugin.o >/dev/null 2>&1
--- imap-filter-sieve.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/lib-sieve -I/usr/local/include/dovecot -DPKG_RUNDIR=\"\" -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT imap-filter-sieve.lo -MD -MP -MF .deps/imap-filter-sieve.Tpo -c imap-filter-sieve.c -o imap-filter-sieve.o >/dev/null 2>&1
--- imap-filter-sieve-plugin.lo ---
mv -f .deps/imap-filter-sieve-plugin.Tpo .deps/imap-filter-sieve-plugin.Plo
--- imap-filter-sieve.lo ---
mv -f .deps/imap-filter-sieve.Tpo .deps/imap-filter-sieve.Plo
--- lib95_imap_filter_sieve_plugin.la ---
/bin/sh ../../../libtool   --tag=CC   --mode=link  cc  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../..  -module -avoid-version -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o lib95_imap_filter_sieve_plugin.la -rpath /usr/local/lib/dovecot cmd-filter.lo  cmd-filter-sieve.lo imap-filter.lo imap-filter-sieve.lo  imap-filter-sieve-plugin.lo ../../../src/lib-sieve/libdovecot-sieve.la 
libtool: link: cc -shared  -fPIC -DPIC  .libs/cmd-filter.o .libs/cmd-filter-sieve.o .libs/imap-filter.o .libs/imap-filter-sieve.o .libs/imap-filter-sieve-plugin.o   -Wl,-rpath -Wl,/usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/src/lib-sieve/.libs -Wl,-rpath -Wl,/usr/local/lib/dovecot -L/usr/local/lib ../../../src/lib-sieve/.libs/libdovecot-sieve.so  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -pthread -Wl,-soname -Wl,lib95_imap_filter_sieve_plugin.so -o .libs/lib95_imap_filter_sieve_plugin.so
libtool: link: ar cr .libs/lib95_imap_filter_sieve_plugin.a  cmd-filter.o cmd-filter-sieve.o imap-filter.o imap-filter-sieve.o imap-filter-sieve-plugin.o
libtool: link: ranlib .libs/lib95_imap_filter_sieve_plugin.a
libtool: link: ( cd ".libs" && rm -f "lib95_imap_filter_sieve_plugin.la" && ln -s "../lib95_imap_filter_sieve_plugin.la" "lib95_imap_filter_sieve_plugin.la" )
Making all in settings
--- pigeonhole-settings.lo ---
/bin/sh ../../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../../..  -I/usr/local/include/dovecot -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT pigeonhole-settings.lo -MD -MP -MF .deps/pigeonhole-settings.Tpo -c -o pigeonhole-settings.lo pigeonhole-settings.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT pigeonhole-settings.lo -MD -MP -MF .deps/pigeonhole-settings.Tpo -c pigeonhole-settings.c  -fPIC -DPIC -o .libs/pigeonhole-settings.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../../.. -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -MT pigeonhole-settings.lo -MD -MP -MF .deps/pigeonhole-settings.Tpo -c pigeonhole-settings.c -o pigeonhole-settings.o >/dev/null 2>&1
mv -f .deps/pigeonhole-settings.Tpo .deps/pigeonhole-settings.Plo
--- libpigeonhole_settings.la ---
/bin/sh ../../../libtool  --tag=CC    --mode=link cc   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -module -avoid-version  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o libpigeonhole_settings.la -rpath /usr/local/lib/dovecot/settings pigeonhole-settings.lo  
libtool: link: cc -shared  -fPIC -DPIC  .libs/pigeonhole-settings.o   -L/usr/local/lib  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,libpigeonhole_settings.so -o .libs/libpigeonhole_settings.so
libtool: link: ar cr .libs/libpigeonhole_settings.a  pigeonhole-settings.o
libtool: link: ranlib .libs/libpigeonhole_settings.a
libtool: link: ( cd ".libs" && rm -f "libpigeonhole_settings.la" && ln -s "../libpigeonhole_settings.la" "libpigeonhole_settings.la" )
Making all in lib-sieve-tool
--- sieve-tool.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I../../src/lib-sieve  -I../../src/lib-sieve/util  -I/usr/local/include/dovecot   -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-tool.lo -MD -MP -MF .deps/sieve-tool.Tpo -c -o sieve-tool.lo sieve-tool.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib-sieve -I../../src/lib-sieve/util -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-tool.lo -MD -MP -MF .deps/sieve-tool.Tpo -c sieve-tool.c  -fPIC -DPIC -o .libs/sieve-tool.o
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib-sieve -I../../src/lib-sieve/util -I/usr/local/include/dovecot -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve-tool.lo -MD -MP -MF .deps/sieve-tool.Tpo -c sieve-tool.c -o sieve-tool.o >/dev/null 2>&1
mv -f .deps/sieve-tool.Tpo .deps/sieve-tool.Plo
--- libsieve-tool.la ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../..   -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o libsieve-tool.la  sieve-tool.lo  
libtool: link: ar cr .libs/libsieve-tool.a .libs/sieve-tool.o 
libtool: link: ranlib .libs/libsieve-tool.a
libtool: link: ( cd ".libs" && rm -f "libsieve-tool.la" && ln -s "../libsieve-tool.la" "libsieve-tool.la" )
Making all in sieve-tools
--- sievec-sievec.o ---
--- sieve_dump-sieve-dump.o ---
--- sieve_test-sieve-test.o ---
--- sieve_filter-sieve-filter.o ---
--- sievec-sievec.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-sieve  -I../../src/lib-sieve-tool  -I./debug  -I/usr/local/include/dovecot   -fPIE -DPIE -I/usr/local/include  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sievec-sievec.o -MD -MP -MF .deps/sievec-sievec.Tpo -c -o sievec-sievec.o `test -f 'sievec.c' || echo './'`sievec.c
--- sieve_dump-sieve-dump.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-sieve  -I../../src/lib-sieve-tool  -I./debug  -I/usr/local/include/dovecot   -fPIE -DPIE -I/usr/local/include  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve_dump-sieve-dump.o -MD -MP -MF .deps/sieve_dump-sieve-dump.Tpo -c -o sieve_dump-sieve-dump.o `test -f 'sieve-dump.c' || echo './'`sieve-dump.c
--- sieve_test-sieve-test.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-sieve  -I../../src/lib-sieve-tool  -I./debug  -I/usr/local/include/dovecot   -fPIE -DPIE -I/usr/local/include  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve_test-sieve-test.o -MD -MP -MF .deps/sieve_test-sieve-test.Tpo -c -o sieve_test-sieve-test.o `test -f 'sieve-test.c' || echo './'`sieve-test.c
--- sieve_filter-sieve-filter.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-sieve  -I../../src/lib-sieve-tool  -I./debug  -I/usr/local/include/dovecot   -fPIE -DPIE -I/usr/local/include  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT sieve_filter-sieve-filter.o -MD -MP -MF .deps/sieve_filter-sieve-filter.Tpo -c -o sieve_filter-sieve-filter.o `test -f 'sieve-filter.c' || echo './'`sieve-filter.c
--- sieve_dump-sieve-dump.o ---
mv -f .deps/sieve_dump-sieve-dump.Tpo .deps/sieve_dump-sieve-dump.Po
--- sieve-dump ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../..  -export-dynamic -pie -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o sieve-dump sieve_dump-sieve-dump.o ../../src/lib-sieve/libdovecot-sieve.la  ../../src/lib-sieve-tool/libsieve-tool.la -ldovecot-storage -ldovecot-lda -L/usr/local/lib/dovecot -ldovecot 
--- sievec-sievec.o ---
mv -f .deps/sievec-sievec.Tpo .deps/sievec-sievec.Po
--- sievec ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../..  -export-dynamic -pie -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o sievec sievec-sievec.o ../../src/lib-sieve/libdovecot-sieve.la  ../../src/lib-sieve-tool/libsieve-tool.la -ldovecot-storage -ldovecot-lda -L/usr/local/lib/dovecot -ldovecot 
--- sieve_test-sieve-test.o ---
mv -f .deps/sieve_test-sieve-test.Tpo .deps/sieve_test-sieve-test.Po
--- sieve-test ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../..  -export-dynamic -pie -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o sieve-test sieve_test-sieve-test.o ../../src/lib-sieve/libdovecot-sieve.la  ../../src/lib-sieve-tool/libsieve-tool.la -ldovecot-storage -ldovecot-lda -L/usr/local/lib/dovecot -ldovecot 
--- sieve-dump ---
libtool: link: cc -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -pie -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o .libs/sieve-dump sieve_dump-sieve-dump.o -Wl,--export-dynamic  -L/usr/local/lib ../../src/lib-sieve/.libs/libdovecot-sieve.so ../../src/lib-sieve-tool/.libs/libsieve-tool.a -ldovecot-storage -ldovecot-lda -L/usr/local/lib/dovecot -ldovecot -pthread -Wl,-rpath -Wl,/usr/local/lib/dovecot
--- sieve_filter-sieve-filter.o ---
mv -f .deps/sieve_filter-sieve-filter.Tpo .deps/sieve_filter-sieve-filter.Po
--- sieve-filter ---
--- sievec ---
libtool: link: cc -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -pie -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o .libs/sievec sievec-sievec.o -Wl,--export-dynamic  -L/usr/local/lib ../../src/lib-sieve/.libs/libdovecot-sieve.so ../../src/lib-sieve-tool/.libs/libsieve-tool.a -ldovecot-storage -ldovecot-lda -L/usr/local/lib/dovecot -ldovecot -pthread -Wl,-rpath -Wl,/usr/local/lib/dovecot
--- sieve-filter ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../..  -export-dynamic -pie -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o sieve-filter sieve_filter-sieve-filter.o ../../src/lib-sieve/libdovecot-sieve.la  ../../src/lib-sieve-tool/libsieve-tool.la -ldovecot-storage -ldovecot-lda -L/usr/local/lib/dovecot -ldovecot 
--- sieve-test ---
libtool: link: cc -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -pie -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o .libs/sieve-test sieve_test-sieve-test.o -Wl,--export-dynamic  -L/usr/local/lib ../../src/lib-sieve/.libs/libdovecot-sieve.so ../../src/lib-sieve-tool/.libs/libsieve-tool.a -ldovecot-storage -ldovecot-lda -L/usr/local/lib/dovecot -ldovecot -pthread -Wl,-rpath -Wl,/usr/local/lib/dovecot
--- sieve-filter ---
libtool: link: cc -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -pie -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o .libs/sieve-filter sieve_filter-sieve-filter.o -Wl,--export-dynamic  -L/usr/local/lib ../../src/lib-sieve/.libs/libdovecot-sieve.so ../../src/lib-sieve-tool/.libs/libsieve-tool.a -ldovecot-storage -ldovecot-lda -L/usr/local/lib/dovecot -ldovecot -pthread -Wl,-rpath -Wl,/usr/local/lib/dovecot
Making all in testsuite
--- testsuite-common.o ---
--- testsuite-settings.o ---
--- testsuite-objects.o ---
--- testsuite-substitutions.o ---
--- testsuite-common.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-sieve  -I../../src/lib-sieve/util  -I../../src/lib-sieve/plugins/variables  -I../../src/lib-sieve-tool  -I/usr/local/include/dovecot    -I/usr/local/include  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT testsuite-common.o -MD -MP -MF .deps/testsuite-common.Tpo -c -o testsuite-common.o testsuite-common.c
--- testsuite-settings.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-sieve  -I../../src/lib-sieve/util  -I../../src/lib-sieve/plugins/variables  -I../../src/lib-sieve-tool  -I/usr/local/include/dovecot    -I/usr/local/include  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT testsuite-settings.o -MD -MP -MF .deps/testsuite-settings.Tpo -c -o testsuite-settings.o testsuite-settings.c
--- testsuite-objects.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-sieve  -I../../src/lib-sieve/util  -I../../src/lib-sieve/plugins/variables  -I../../src/lib-sieve-tool  -I/usr/local/include/dovecot    -I/usr/local/include  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT testsuite-objects.o -MD -MP -MF .deps/testsuite-objects.Tpo -c -o testsuite-objects.o testsuite-objects.c
--- testsuite-substitutions.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-sieve  -I../../src/lib-sieve/util  -I../../src/lib-sieve/plugins/variables  -I../../src/lib-sieve-tool  -I/usr/local/include/dovecot    -I/usr/local/include  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT testsuite-substitutions.o -MD -MP -MF .deps/testsuite-substitutions.Tpo -c -o testsuite-substitutions.o testsuite-substitutions.c
--- testsuite-settings.o ---
mv -f .deps/testsuite-settings.Tpo .deps/testsuite-settings.Po
--- testsuite-variables.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-sieve  -I../../src/lib-sieve/util  -I../../src/lib-sieve/plugins/variables  -I../../src/lib-sieve-tool  -I/usr/local/include/dovecot    -I/usr/local/include  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT testsuite-variables.o -MD -MP -MF .deps/testsuite-variables.Tpo -c -o testsuite-variables.o testsuite-variables.c
--- testsuite-substitutions.o ---
mv -f .deps/testsuite-substitutions.Tpo .deps/testsuite-substitutions.Po
--- testsuite-arguments.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-sieve  -I../../src/lib-sieve/util  -I../../src/lib-sieve/plugins/variables  -I../../src/lib-sieve-tool  -I/usr/local/include/dovecot    -I/usr/local/include  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT testsuite-arguments.o -MD -MP -MF .deps/testsuite-arguments.Tpo -c -o testsuite-arguments.o testsuite-arguments.c
--- testsuite-objects.o ---
mv -f .deps/testsuite-objects.Tpo .deps/testsuite-objects.Po
--- testsuite-message.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-sieve  -I../../src/lib-sieve/util  -I../../src/lib-sieve/plugins/variables  -I../../src/lib-sieve-tool  -I/usr/local/include/dovecot    -I/usr/local/include  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT testsuite-message.o -MD -MP -MF .deps/testsuite-message.Tpo -c -o testsuite-message.o testsuite-message.c
--- testsuite-common.o ---
mv -f .deps/testsuite-common.Tpo .deps/testsuite-common.Po
--- testsuite-log.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-sieve  -I../../src/lib-sieve/util  -I../../src/lib-sieve/plugins/variables  -I../../src/lib-sieve-tool  -I/usr/local/include/dovecot    -I/usr/local/include  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT testsuite-log.o -MD -MP -MF .deps/testsuite-log.Tpo -c -o testsuite-log.o testsuite-log.c
--- testsuite-variables.o ---
mv -f .deps/testsuite-variables.Tpo .deps/testsuite-variables.Po
--- testsuite-script.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-sieve  -I../../src/lib-sieve/util  -I../../src/lib-sieve/plugins/variables  -I../../src/lib-sieve-tool  -I/usr/local/include/dovecot    -I/usr/local/include  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT testsuite-script.o -MD -MP -MF .deps/testsuite-script.Tpo -c -o testsuite-script.o testsuite-script.c
--- testsuite-arguments.o ---
mv -f .deps/testsuite-arguments.Tpo .deps/testsuite-arguments.Po
--- testsuite-result.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-sieve  -I../../src/lib-sieve/util  -I../../src/lib-sieve/plugins/variables  -I../../src/lib-sieve-tool  -I/usr/local/include/dovecot    -I/usr/local/include  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT testsuite-result.o -MD -MP -MF .deps/testsuite-result.Tpo -c -o testsuite-result.o testsuite-result.c
--- testsuite-log.o ---
mv -f .deps/testsuite-log.Tpo .deps/testsuite-log.Po
--- testsuite-smtp.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-sieve  -I../../src/lib-sieve/util  -I../../src/lib-sieve/plugins/variables  -I../../src/lib-sieve-tool  -I/usr/local/include/dovecot    -I/usr/local/include  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT testsuite-smtp.o -MD -MP -MF .deps/testsuite-smtp.Tpo -c -o testsuite-smtp.o testsuite-smtp.c
--- testsuite-message.o ---
mv -f .deps/testsuite-message.Tpo .deps/testsuite-message.Po
--- testsuite-script.o ---
mv -f .deps/testsuite-script.Tpo .deps/testsuite-script.Po
--- testsuite-mailstore.o ---
--- testsuite-binary.o ---
--- testsuite-mailstore.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-sieve  -I../../src/lib-sieve/util  -I../../src/lib-sieve/plugins/variables  -I../../src/lib-sieve-tool  -I/usr/local/include/dovecot    -I/usr/local/include  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT testsuite-mailstore.o -MD -MP -MF .deps/testsuite-mailstore.Tpo -c -o testsuite-mailstore.o testsuite-mailstore.c
--- testsuite-binary.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-sieve  -I../../src/lib-sieve/util  -I../../src/lib-sieve/plugins/variables  -I../../src/lib-sieve-tool  -I/usr/local/include/dovecot    -I/usr/local/include  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT testsuite-binary.o -MD -MP -MF .deps/testsuite-binary.Tpo -c -o testsuite-binary.o testsuite-binary.c
--- testsuite-result.o ---
mv -f .deps/testsuite-result.Tpo .deps/testsuite-result.Po
--- cmd-test.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-sieve  -I../../src/lib-sieve/util  -I../../src/lib-sieve/plugins/variables  -I../../src/lib-sieve-tool  -I/usr/local/include/dovecot    -I/usr/local/include  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT cmd-test.o -MD -MP -MF .deps/cmd-test.Tpo -c -o cmd-test.o cmd-test.c
mv -f .deps/cmd-test.Tpo .deps/cmd-test.Po
--- cmd-test-fail.o ---
--- testsuite-binary.o ---
mv -f .deps/testsuite-binary.Tpo .deps/testsuite-binary.Po
--- cmd-test-fail.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-sieve  -I../../src/lib-sieve/util  -I../../src/lib-sieve/plugins/variables  -I../../src/lib-sieve-tool  -I/usr/local/include/dovecot    -I/usr/local/include  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT cmd-test-fail.o -MD -MP -MF .deps/cmd-test-fail.Tpo -c -o cmd-test-fail.o cmd-test-fail.c
--- cmd-test-config.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-sieve  -I../../src/lib-sieve/util  -I../../src/lib-sieve/plugins/variables  -I../../src/lib-sieve-tool  -I/usr/local/include/dovecot    -I/usr/local/include  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT cmd-test-config.o -MD -MP -MF .deps/cmd-test-config.Tpo -c -o cmd-test-config.o cmd-test-config.c
--- testsuite-smtp.o ---
mv -f .deps/testsuite-smtp.Tpo .deps/testsuite-smtp.Po
--- cmd-test-set.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-sieve  -I../../src/lib-sieve/util  -I../../src/lib-sieve/plugins/variables  -I../../src/lib-sieve-tool  -I/usr/local/include/dovecot    -I/usr/local/include  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT cmd-test-set.o -MD -MP -MF .deps/cmd-test-set.Tpo -c -o cmd-test-set.o cmd-test-set.c
--- testsuite-mailstore.o ---
mv -f .deps/testsuite-mailstore.Tpo .deps/testsuite-mailstore.Po
--- cmd-test-result.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-sieve  -I../../src/lib-sieve/util  -I../../src/lib-sieve/plugins/variables  -I../../src/lib-sieve-tool  -I/usr/local/include/dovecot    -I/usr/local/include  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT cmd-test-result.o -MD -MP -MF .deps/cmd-test-result.Tpo -c -o cmd-test-result.o cmd-test-result.c
--- cmd-test-fail.o ---
mv -f .deps/cmd-test-fail.Tpo .deps/cmd-test-fail.Po
--- cmd-test-message.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-sieve  -I../../src/lib-sieve/util  -I../../src/lib-sieve/plugins/variables  -I../../src/lib-sieve-tool  -I/usr/local/include/dovecot    -I/usr/local/include  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT cmd-test-message.o -MD -MP -MF .deps/cmd-test-message.Tpo -c -o cmd-test-message.o cmd-test-message.c
--- cmd-test-config.o ---
mv -f .deps/cmd-test-config.Tpo .deps/cmd-test-config.Po
--- cmd-test-mailbox.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-sieve  -I../../src/lib-sieve/util  -I../../src/lib-sieve/plugins/variables  -I../../src/lib-sieve-tool  -I/usr/local/include/dovecot    -I/usr/local/include  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT cmd-test-mailbox.o -MD -MP -MF .deps/cmd-test-mailbox.Tpo -c -o cmd-test-mailbox.o cmd-test-mailbox.c
--- cmd-test-set.o ---
mv -f .deps/cmd-test-set.Tpo .deps/cmd-test-set.Po
--- cmd-test-binary.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-sieve  -I../../src/lib-sieve/util  -I../../src/lib-sieve/plugins/variables  -I../../src/lib-sieve-tool  -I/usr/local/include/dovecot    -I/usr/local/include  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT cmd-test-binary.o -MD -MP -MF .deps/cmd-test-binary.Tpo -c -o cmd-test-binary.o cmd-test-binary.c
--- cmd-test-result.o ---
mv -f .deps/cmd-test-result.Tpo .deps/cmd-test-result.Po
--- cmd-test-imap-metadata.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-sieve  -I../../src/lib-sieve/util  -I../../src/lib-sieve/plugins/variables  -I../../src/lib-sieve-tool  -I/usr/local/include/dovecot    -I/usr/local/include  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT cmd-test-imap-metadata.o -MD -MP -MF .deps/cmd-test-imap-metadata.Tpo -c -o cmd-test-imap-metadata.o cmd-test-imap-metadata.c
--- cmd-test-mailbox.o ---
mv -f .deps/cmd-test-mailbox.Tpo .deps/cmd-test-mailbox.Po
--- cmd-test-binary.o ---
mv -f .deps/cmd-test-binary.Tpo .deps/cmd-test-binary.Po
--- tst-test-script-compile.o ---
--- tst-test-script-run.o ---
--- tst-test-script-compile.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-sieve  -I../../src/lib-sieve/util  -I../../src/lib-sieve/plugins/variables  -I../../src/lib-sieve-tool  -I/usr/local/include/dovecot    -I/usr/local/include  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT tst-test-script-compile.o -MD -MP -MF .deps/tst-test-script-compile.Tpo -c -o tst-test-script-compile.o tst-test-script-compile.c
--- tst-test-script-run.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-sieve  -I../../src/lib-sieve/util  -I../../src/lib-sieve/plugins/variables  -I../../src/lib-sieve-tool  -I/usr/local/include/dovecot    -I/usr/local/include  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT tst-test-script-run.o -MD -MP -MF .deps/tst-test-script-run.Tpo -c -o tst-test-script-run.o tst-test-script-run.c
--- cmd-test-message.o ---
mv -f .deps/cmd-test-message.Tpo .deps/cmd-test-message.Po
--- tst-test-multiscript.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-sieve  -I../../src/lib-sieve/util  -I../../src/lib-sieve/plugins/variables  -I../../src/lib-sieve-tool  -I/usr/local/include/dovecot    -I/usr/local/include  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT tst-test-multiscript.o -MD -MP -MF .deps/tst-test-multiscript.Tpo -c -o tst-test-multiscript.o tst-test-multiscript.c
--- cmd-test-imap-metadata.o ---
mv -f .deps/cmd-test-imap-metadata.Tpo .deps/cmd-test-imap-metadata.Po
--- tst-test-error.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-sieve  -I../../src/lib-sieve/util  -I../../src/lib-sieve/plugins/variables  -I../../src/lib-sieve-tool  -I/usr/local/include/dovecot    -I/usr/local/include  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT tst-test-error.o -MD -MP -MF .deps/tst-test-error.Tpo -c -o tst-test-error.o tst-test-error.c
--- tst-test-script-compile.o ---
mv -f .deps/tst-test-script-compile.Tpo .deps/tst-test-script-compile.Po
--- tst-test-result-action.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-sieve  -I../../src/lib-sieve/util  -I../../src/lib-sieve/plugins/variables  -I../../src/lib-sieve-tool  -I/usr/local/include/dovecot    -I/usr/local/include  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT tst-test-result-action.o -MD -MP -MF .deps/tst-test-result-action.Tpo -c -o tst-test-result-action.o tst-test-result-action.c
--- tst-test-script-run.o ---
mv -f .deps/tst-test-script-run.Tpo .deps/tst-test-script-run.Po
--- tst-test-result-execute.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-sieve  -I../../src/lib-sieve/util  -I../../src/lib-sieve/plugins/variables  -I../../src/lib-sieve-tool  -I/usr/local/include/dovecot    -I/usr/local/include  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT tst-test-result-execute.o -MD -MP -MF .deps/tst-test-result-execute.Tpo -c -o tst-test-result-execute.o tst-test-result-execute.c
--- tst-test-multiscript.o ---
mv -f .deps/tst-test-multiscript.Tpo .deps/tst-test-multiscript.Po
--- ext-testsuite.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-sieve  -I../../src/lib-sieve/util  -I../../src/lib-sieve/plugins/variables  -I../../src/lib-sieve-tool  -I/usr/local/include/dovecot    -I/usr/local/include  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT ext-testsuite.o -MD -MP -MF .deps/ext-testsuite.Tpo -c -o ext-testsuite.o ext-testsuite.c
--- tst-test-error.o ---
mv -f .deps/tst-test-error.Tpo .deps/tst-test-error.Po
--- testsuite.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I../../src/lib-sieve  -I../../src/lib-sieve/util  -I../../src/lib-sieve/plugins/variables  -I../../src/lib-sieve-tool  -I/usr/local/include/dovecot    -I/usr/local/include  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT testsuite.o -MD -MP -MF .deps/testsuite.Tpo -c -o testsuite.o testsuite.c
--- tst-test-result-execute.o ---
mv -f .deps/tst-test-result-execute.Tpo .deps/tst-test-result-execute.Po
--- ext-testsuite.o ---
mv -f .deps/ext-testsuite.Tpo .deps/ext-testsuite.Po
--- tst-test-result-action.o ---
mv -f .deps/tst-test-result-action.Tpo .deps/tst-test-result-action.Po
--- testsuite.o ---
mv -f .deps/testsuite.Tpo .deps/testsuite.Po
--- testsuite ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../..  -export-dynamic -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o testsuite testsuite-common.o  testsuite-settings.o testsuite-objects.o  testsuite-substitutions.o  testsuite-variables.o testsuite-arguments.o  testsuite-message.o testsuite-log.o  testsuite-script.o testsuite-result.o  testsuite-smtp.o testsuite-mailstore.o  testsuite-binary.o cmd-test.o cmd-test-fail.o  cmd-test-config.o cmd-test-set.o  cmd-test-result.o cmd-test-message.o  cmd-test-mailbox.o cmd-test-binary.o  cmd-test-imap-metadata.o tst-test-script-compile.o  tst-test-script-run.o tst-test-multiscript.o  tst-test-error.o tst-test-result-action.o  tst-test-result-execute.o  ext-testsuite.o testsuite.o ../../src/lib-sieve/libdovecot-sieve.la  ../../src/lib-sieve-tool/libsieve-tool.la -ldovecot-storage -ldovecot-lda -L/usr/local/lib/dovecot -ldovecot 
libtool: link: cc -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o .libs/testsuite testsuite-common.o testsuite-settings.o testsuite-objects.o testsuite-substitutions.o testsuite-variables.o testsuite-arguments.o testsuite-message.o testsuite-log.o testsuite-script.o testsuite-result.o testsuite-smtp.o testsuite-mailstore.o testsuite-binary.o cmd-test.o cmd-test-fail.o cmd-test-config.o cmd-test-set.o cmd-test-result.o cmd-test-message.o cmd-test-mailbox.o cmd-test-binary.o cmd-test-imap-metadata.o tst-test-script-compile.o tst-test-script-run.o tst-test-multiscript.o tst-test-error.o tst-test-result-action.o tst-test-result-execute.o ext-testsuite.o testsuite.o -Wl,--export-dynamic  -L/usr/local/lib ../../src/lib-sieve/.libs/libdovecot-sieve.so ../../src/lib-sieve-tool/.libs/libsieve-tool.a -ldovecot-storage -ldovecot-lda -L/usr/local/lib/dovecot -ldovecot -pthread -Wl,-rpath -Wl,/usr/local/lib/dovecot
Making all in lib-managesieve
--- managesieve-arg.lo ---
--- managesieve-quote.lo ---
--- managesieve-parser.lo ---
--- managesieve-arg.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot  -I../.. -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT managesieve-arg.lo -MD -MP -MF .deps/managesieve-arg.Tpo -c -o managesieve-arg.lo managesieve-arg.c
--- managesieve-quote.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot  -I../.. -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT managesieve-quote.lo -MD -MP -MF .deps/managesieve-quote.Tpo -c -o managesieve-quote.lo managesieve-quote.c
--- managesieve-parser.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot  -I../.. -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT managesieve-parser.lo -MD -MP -MF .deps/managesieve-parser.Tpo -c -o managesieve-parser.lo managesieve-parser.c
--- managesieve-arg.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../.. -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT managesieve-arg.lo -MD -MP -MF .deps/managesieve-arg.Tpo -c managesieve-arg.c  -fPIC -DPIC -o .libs/managesieve-arg.o
--- managesieve-quote.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../.. -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT managesieve-quote.lo -MD -MP -MF .deps/managesieve-quote.Tpo -c managesieve-quote.c  -fPIC -DPIC -o .libs/managesieve-quote.o
--- managesieve-parser.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../.. -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT managesieve-parser.lo -MD -MP -MF .deps/managesieve-parser.Tpo -c managesieve-parser.c  -fPIC -DPIC -o .libs/managesieve-parser.o
--- managesieve-quote.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../.. -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT managesieve-quote.lo -MD -MP -MF .deps/managesieve-quote.Tpo -c managesieve-quote.c -o managesieve-quote.o >/dev/null 2>&1
--- managesieve-arg.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../.. -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT managesieve-arg.lo -MD -MP -MF .deps/managesieve-arg.Tpo -c managesieve-arg.c -o managesieve-arg.o >/dev/null 2>&1
--- managesieve-quote.lo ---
mv -f .deps/managesieve-quote.Tpo .deps/managesieve-quote.Plo
--- managesieve-arg.lo ---
mv -f .deps/managesieve-arg.Tpo .deps/managesieve-arg.Plo
--- managesieve-parser.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../.. -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT managesieve-parser.lo -MD -MP -MF .deps/managesieve-parser.Tpo -c managesieve-parser.c -o managesieve-parser.o >/dev/null 2>&1
mv -f .deps/managesieve-parser.Tpo .deps/managesieve-parser.Plo
--- libmanagesieve.la ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../..   -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o libmanagesieve.la  managesieve-arg.lo managesieve-quote.lo  managesieve-parser.lo  
libtool: link: ar cr .libs/libmanagesieve.a .libs/managesieve-arg.o .libs/managesieve-quote.o .libs/managesieve-parser.o 
libtool: link: ranlib .libs/libmanagesieve.a
libtool: link: ( cd ".libs" && rm -f "libmanagesieve.la" && ln -s "../libmanagesieve.la" "libmanagesieve.la" )
Making all in managesieve
--- managesieve-cmd-capability.o ---
--- managesieve-cmd-logout.o ---
--- managesieve-cmd-putscript.o ---
--- managesieve-cmd-getscript.o ---
--- managesieve-cmd-capability.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I/usr/local/include/dovecot    -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -I../..  -I../../src/lib-sieve  -I../../src/lib-managesieve -fPIE -DPIE -I/usr/local/include  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT managesieve-cmd-capability.o -MD -MP -MF .deps/managesieve-cmd-capability.Tpo -c -o managesieve-cmd-capability.o `test -f 'cmd-capability.c' || echo './'`cmd-capability.c
--- managesieve-cmd-logout.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I/usr/local/include/dovecot    -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -I../..  -I../../src/lib-sieve  -I../../src/lib-managesieve -fPIE -DPIE -I/usr/local/include  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT managesieve-cmd-logout.o -MD -MP -MF .deps/managesieve-cmd-logout.Tpo -c -o managesieve-cmd-logout.o `test -f 'cmd-logout.c' || echo './'`cmd-logout.c
--- managesieve-cmd-putscript.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I/usr/local/include/dovecot    -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -I../..  -I../../src/lib-sieve  -I../../src/lib-managesieve -fPIE -DPIE -I/usr/local/include  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT managesieve-cmd-putscript.o -MD -MP -MF .deps/managesieve-cmd-putscript.Tpo -c -o managesieve-cmd-putscript.o `test -f 'cmd-putscript.c' || echo './'`cmd-putscript.c
--- managesieve-cmd-getscript.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I/usr/local/include/dovecot    -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -I../..  -I../../src/lib-sieve  -I../../src/lib-managesieve -fPIE -DPIE -I/usr/local/include  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT managesieve-cmd-getscript.o -MD -MP -MF .deps/managesieve-cmd-getscript.Tpo -c -o managesieve-cmd-getscript.o `test -f 'cmd-getscript.c' || echo './'`cmd-getscript.c
--- managesieve-cmd-logout.o ---
mv -f .deps/managesieve-cmd-logout.Tpo .deps/managesieve-cmd-logout.Po
--- managesieve-cmd-setactive.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I/usr/local/include/dovecot    -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -I../..  -I../../src/lib-sieve  -I../../src/lib-managesieve -fPIE -DPIE -I/usr/local/include  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT managesieve-cmd-setactive.o -MD -MP -MF .deps/managesieve-cmd-setactive.Tpo -c -o managesieve-cmd-setactive.o `test -f 'cmd-setactive.c' || echo './'`cmd-setactive.c
--- managesieve-cmd-capability.o ---
mv -f .deps/managesieve-cmd-capability.Tpo .deps/managesieve-cmd-capability.Po
--- managesieve-cmd-deletescript.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I/usr/local/include/dovecot    -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -I../..  -I../../src/lib-sieve  -I../../src/lib-managesieve -fPIE -DPIE -I/usr/local/include  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT managesieve-cmd-deletescript.o -MD -MP -MF .deps/managesieve-cmd-deletescript.Tpo -c -o managesieve-cmd-deletescript.o `test -f 'cmd-deletescript.c' || echo './'`cmd-deletescript.c
--- managesieve-cmd-getscript.o ---
mv -f .deps/managesieve-cmd-getscript.Tpo .deps/managesieve-cmd-getscript.Po
--- managesieve-cmd-listscripts.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I/usr/local/include/dovecot    -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -I../..  -I../../src/lib-sieve  -I../../src/lib-managesieve -fPIE -DPIE -I/usr/local/include  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT managesieve-cmd-listscripts.o -MD -MP -MF .deps/managesieve-cmd-listscripts.Tpo -c -o managesieve-cmd-listscripts.o `test -f 'cmd-listscripts.c' || echo './'`cmd-listscripts.c
--- managesieve-cmd-deletescript.o ---
mv -f .deps/managesieve-cmd-deletescript.Tpo .deps/managesieve-cmd-deletescript.Po
--- managesieve-cmd-havespace.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I/usr/local/include/dovecot    -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -I../..  -I../../src/lib-sieve  -I../../src/lib-managesieve -fPIE -DPIE -I/usr/local/include  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT managesieve-cmd-havespace.o -MD -MP -MF .deps/managesieve-cmd-havespace.Tpo -c -o managesieve-cmd-havespace.o `test -f 'cmd-havespace.c' || echo './'`cmd-havespace.c
--- managesieve-cmd-setactive.o ---
mv -f .deps/managesieve-cmd-setactive.Tpo .deps/managesieve-cmd-setactive.Po
--- managesieve-cmd-renamescript.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I/usr/local/include/dovecot    -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -I../..  -I../../src/lib-sieve  -I../../src/lib-managesieve -fPIE -DPIE -I/usr/local/include  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT managesieve-cmd-renamescript.o -MD -MP -MF .deps/managesieve-cmd-renamescript.Tpo -c -o managesieve-cmd-renamescript.o `test -f 'cmd-renamescript.c' || echo './'`cmd-renamescript.c
--- managesieve-cmd-listscripts.o ---
mv -f .deps/managesieve-cmd-listscripts.Tpo .deps/managesieve-cmd-listscripts.Po
--- managesieve-cmd-noop.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I/usr/local/include/dovecot    -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -I../..  -I../../src/lib-sieve  -I../../src/lib-managesieve -fPIE -DPIE -I/usr/local/include  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT managesieve-cmd-noop.o -MD -MP -MF .deps/managesieve-cmd-noop.Tpo -c -o managesieve-cmd-noop.o `test -f 'cmd-noop.c' || echo './'`cmd-noop.c
--- managesieve-cmd-putscript.o ---
mv -f .deps/managesieve-cmd-putscript.Tpo .deps/managesieve-cmd-putscript.Po
--- managesieve-managesieve-quota.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I/usr/local/include/dovecot    -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -I../..  -I../../src/lib-sieve  -I../../src/lib-managesieve -fPIE -DPIE -I/usr/local/include  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT managesieve-managesieve-quota.o -MD -MP -MF .deps/managesieve-managesieve-quota.Tpo -c -o managesieve-managesieve-quota.o `test -f 'managesieve-quota.c' || echo './'`managesieve-quota.c
--- managesieve-cmd-havespace.o ---
mv -f .deps/managesieve-cmd-havespace.Tpo .deps/managesieve-cmd-havespace.Po
--- managesieve-managesieve-client.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I/usr/local/include/dovecot    -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -I../..  -I../../src/lib-sieve  -I../../src/lib-managesieve -fPIE -DPIE -I/usr/local/include  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT managesieve-managesieve-client.o -MD -MP -MF .deps/managesieve-managesieve-client.Tpo -c -o managesieve-managesieve-client.o `test -f 'managesieve-client.c' || echo './'`managesieve-client.c
--- managesieve-cmd-noop.o ---
mv -f .deps/managesieve-cmd-noop.Tpo .deps/managesieve-cmd-noop.Po
--- managesieve-managesieve-commands.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I/usr/local/include/dovecot    -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -I../..  -I../../src/lib-sieve  -I../../src/lib-managesieve -fPIE -DPIE -I/usr/local/include  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT managesieve-managesieve-commands.o -MD -MP -MF .deps/managesieve-managesieve-commands.Tpo -c -o managesieve-managesieve-commands.o `test -f 'managesieve-commands.c' || echo './'`managesieve-commands.c
--- managesieve-cmd-renamescript.o ---
mv -f .deps/managesieve-cmd-renamescript.Tpo .deps/managesieve-cmd-renamescript.Po
--- managesieve-managesieve-capabilities.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I/usr/local/include/dovecot    -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -I../..  -I../../src/lib-sieve  -I../../src/lib-managesieve -fPIE -DPIE -I/usr/local/include  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT managesieve-managesieve-capabilities.o -MD -MP -MF .deps/managesieve-managesieve-capabilities.Tpo -c -o managesieve-managesieve-capabilities.o `test -f 'managesieve-capabilities.c' || echo './'`managesieve-capabilities.c
--- managesieve-managesieve-quota.o ---
mv -f .deps/managesieve-managesieve-quota.Tpo .deps/managesieve-managesieve-quota.Po
--- managesieve-main.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I/usr/local/include/dovecot    -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -I../..  -I../../src/lib-sieve  -I../../src/lib-managesieve -fPIE -DPIE -I/usr/local/include  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT managesieve-main.o -MD -MP -MF .deps/managesieve-main.Tpo -c -o managesieve-main.o `test -f 'main.c' || echo './'`main.c
--- managesieve-managesieve-capabilities.o ---
mv -f .deps/managesieve-managesieve-capabilities.Tpo .deps/managesieve-managesieve-capabilities.Po
--- managesieve-settings.lo ---
--- managesieve-managesieve-commands.o ---
mv -f .deps/managesieve-managesieve-commands.Tpo .deps/managesieve-managesieve-commands.Po
--- managesieve-settings.lo ---
/bin/sh ../../libtool  --tag=CC    --mode=compile cc -DHAVE_CONFIG_H  -I. -I../..  -I/usr/local/include/dovecot    -DMODULEDIR=\""/usr/local/lib/dovecot"\"  -I../..  -I../../src/lib-sieve  -I../../src/lib-managesieve -I/usr/local/include   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT managesieve-settings.lo -MD -MP -MF .deps/managesieve-settings.Tpo -c -o managesieve-settings.lo managesieve-settings.c
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -DMODULEDIR=\"/usr/local/lib/dovecot\" -I../.. -I../../src/lib-sieve -I../../src/lib-managesieve -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT managesieve-settings.lo -MD -MP -MF .deps/managesieve-settings.Tpo -c managesieve-settings.c  -fPIC -DPIC -o .libs/managesieve-settings.o
--- managesieve-main.o ---
mv -f .deps/managesieve-main.Tpo .deps/managesieve-main.Po
--- managesieve-settings.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -DMODULEDIR=\"/usr/local/lib/dovecot\" -I../.. -I../../src/lib-sieve -I../../src/lib-managesieve -I/usr/local/include -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT managesieve-settings.lo -MD -MP -MF .deps/managesieve-settings.Tpo -c managesieve-settings.c -o managesieve-settings.o >/dev/null 2>&1
--- managesieve-managesieve-client.o ---
mv -f .deps/managesieve-managesieve-client.Tpo .deps/managesieve-managesieve-client.Po
--- managesieve-settings.lo ---
mv -f .deps/managesieve-settings.Tpo .deps/managesieve-settings.Plo
--- libmanagesieve_settings.la ---
--- managesieve ---
--- libmanagesieve_settings.la ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -module -avoid-version  -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o libmanagesieve_settings.la -rpath /usr/local/lib/dovecot/settings managesieve-settings.lo  
--- managesieve ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../..  -export-dynamic -pie -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o managesieve managesieve-cmd-capability.o  managesieve-cmd-logout.o  managesieve-cmd-putscript.o  managesieve-cmd-getscript.o  managesieve-cmd-setactive.o  managesieve-cmd-deletescript.o  managesieve-cmd-listscripts.o  managesieve-cmd-havespace.o  managesieve-cmd-renamescript.o  managesieve-cmd-noop.o  managesieve-managesieve-quota.o  managesieve-managesieve-client.o  managesieve-managesieve-commands.o  managesieve-managesieve-capabilities.o  managesieve-main.o managesieve-settings.lo  ../../src/lib-managesieve/libmanagesieve.la  ../../src/lib-sieve/libdovecot-sieve.la -ldovecot-storage -ldovecot-lda -L/usr/local/lib/dovecot -ldovecot 
--- libmanagesieve_settings.la ---
libtool: link: cc -shared  -fPIC -DPIC  .libs/managesieve-settings.o   -L/usr/local/lib  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,libmanagesieve_settings.so -o .libs/libmanagesieve_settings.so
libtool: link: ar cr .libs/libmanagesieve_settings.a  managesieve-settings.o
libtool: link: ranlib .libs/libmanagesieve_settings.a
libtool: link: ( cd ".libs" && rm -f "libmanagesieve_settings.la" && ln -s "../libmanagesieve_settings.la" "libmanagesieve_settings.la" )
--- managesieve ---
libtool: link: cc -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -pie -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o .libs/managesieve managesieve-cmd-capability.o managesieve-cmd-logout.o managesieve-cmd-putscript.o managesieve-cmd-getscript.o managesieve-cmd-setactive.o managesieve-cmd-deletescript.o managesieve-cmd-listscripts.o managesieve-cmd-havespace.o managesieve-cmd-renamescript.o managesieve-cmd-noop.o managesieve-managesieve-quota.o managesieve-managesieve-client.o managesieve-managesieve-commands.o managesieve-managesieve-capabilities.o managesieve-main.o .libs/managesieve-settings.o -Wl,--export-dynamic  -L/usr/local/lib ../../src/lib-managesieve/.libs/libmanagesieve.a ../../src/lib-sieve/.libs/libdovecot-sieve.so -ldovecot-storage -ldovecot-lda -L/usr/local/lib/dovecot -ldovecot -pthread  -Wl,-rpath -Wl,/usr/local/lib/dovecot
Making all in managesieve-login
--- libmanagesieve_login_settings_la-managesieve-login-settings.lo ---
--- managesieve_login-client.o ---
--- managesieve_login-client-authenticate.o ---
--- managesieve_login-managesieve-login-settings.o ---
--- libmanagesieve_login_settings_la-managesieve-login-settings.lo ---
/bin/sh ../../libtool  --tag=CC   --mode=compile cc -DHAVE_CONFIG_H -I. -I../..  -I/usr/local/include/dovecot      -I../..  -I../../src/lib-managesieve -I/usr/local/include   -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\" -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT libmanagesieve_login_settings_la-managesieve-login-settings.lo -MD -MP -MF .deps/libmanagesieve_login_settings_la-managesieve-login-settings.Tpo -c -o libmanagesieve_login_settings_la-managesieve-login-settings.lo `test -f 'managesieve-login-settings.c' || echo './'`managesieve-login-settings.c
--- managesieve_login-client.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I/usr/local/include/dovecot      -I../..  -I../../src/lib-managesieve -fPIE -DPIE -I/usr/local/include  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT managesieve_login-client.o -MD -MP -MF .deps/managesieve_login-client.Tpo -c -o managesieve_login-client.o `test -f 'client.c' || echo './'`client.c
--- managesieve_login-client-authenticate.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I/usr/local/include/dovecot      -I../..  -I../../src/lib-managesieve -fPIE -DPIE -I/usr/local/include  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT managesieve_login-client-authenticate.o -MD -MP -MF .deps/managesieve_login-client-authenticate.Tpo -c -o managesieve_login-client-authenticate.o `test -f 'client-authenticate.c' || echo './'`client-authenticate.c
--- managesieve_login-managesieve-login-settings.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I/usr/local/include/dovecot      -I../..  -I../../src/lib-managesieve -fPIE -DPIE -I/usr/local/include  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT managesieve_login-managesieve-login-settings.o -MD -MP -MF .deps/managesieve_login-managesieve-login-settings.Tpo -c -o managesieve_login-managesieve-login-settings.o `test -f 'managesieve-login-settings.c' || echo './'`managesieve-login-settings.c
--- libmanagesieve_login_settings_la-managesieve-login-settings.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../.. -I../../src/lib-managesieve -I/usr/local/include -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT libmanagesieve_login_settings_la-managesieve-login-settings.lo -MD -MP -MF .deps/libmanagesieve_login_settings_la-managesieve-login-settings.Tpo -c managesieve-login-settings.c  -fPIC -DPIC -o .libs/libmanagesieve_login_settings_la-managesieve-login-settings.o
--- managesieve_login-managesieve-login-settings.o ---
mv -f .deps/managesieve_login-managesieve-login-settings.Tpo .deps/managesieve_login-managesieve-login-settings.Po
--- managesieve_login-managesieve-proxy.o ---
cc -DHAVE_CONFIG_H -I. -I../..  -I/usr/local/include/dovecot      -I../..  -I../../src/lib-managesieve -fPIE -DPIE -I/usr/local/include  -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT managesieve_login-managesieve-proxy.o -MD -MP -MF .deps/managesieve_login-managesieve-proxy.Tpo -c -o managesieve_login-managesieve-proxy.o `test -f 'managesieve-proxy.c' || echo './'`managesieve-proxy.c
--- libmanagesieve_login_settings_la-managesieve-login-settings.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../.. -I../../src/lib-managesieve -I/usr/local/include -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT libmanagesieve_login_settings_la-managesieve-login-settings.lo -MD -MP -MF .deps/libmanagesieve_login_settings_la-managesieve-login-settings.Tpo -c managesieve-login-settings.c -o libmanagesieve_login_settings_la-managesieve-login-settings.o >/dev/null 2>&1
--- managesieve_login-client-authenticate.o ---
mv -f .deps/managesieve_login-client-authenticate.Tpo .deps/managesieve_login-client-authenticate.Po
--- libmanagesieve_login_settings_la-managesieve-login-settings-plugin.lo ---
/bin/sh ../../libtool  --tag=CC   --mode=compile cc -DHAVE_CONFIG_H -I. -I../..  -I/usr/local/include/dovecot      -I../..  -I../../src/lib-managesieve -I/usr/local/include   -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\" -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT libmanagesieve_login_settings_la-managesieve-login-settings-plugin.lo -MD -MP -MF .deps/libmanagesieve_login_settings_la-managesieve-login-settings-plugin.Tpo -c -o libmanagesieve_login_settings_la-managesieve-login-settings-plugin.lo `test -f 'managesieve-login-settings-plugin.c' || echo './'`managesieve-login-settings-plugin.c
--- libmanagesieve_login_settings_la-managesieve-login-settings.lo ---
mv -f .deps/libmanagesieve_login_settings_la-managesieve-login-settings.Tpo .deps/libmanagesieve_login_settings_la-managesieve-login-settings.Plo
--- libmanagesieve_login_settings_la-managesieve-login-settings-plugin.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../.. -I../../src/lib-managesieve -I/usr/local/include -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT libmanagesieve_login_settings_la-managesieve-login-settings-plugin.lo -MD -MP -MF .deps/libmanagesieve_login_settings_la-managesieve-login-settings-plugin.Tpo -c managesieve-login-settings-plugin.c  -fPIC -DPIC -o .libs/libmanagesieve_login_settings_la-managesieve-login-settings-plugin.o
--- managesieve_login-client.o ---
mv -f .deps/managesieve_login-client.Tpo .deps/managesieve_login-client.Po
--- managesieve_login-managesieve-proxy.o ---
mv -f .deps/managesieve_login-managesieve-proxy.Tpo .deps/managesieve_login-managesieve-proxy.Po
--- managesieve-login ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc   -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -pie -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong  -o managesieve-login managesieve_login-client.o  managesieve_login-client-authenticate.o  managesieve_login-managesieve-login-settings.o  managesieve_login-managesieve-proxy.o ../../src/lib-managesieve/libmanagesieve.la -ldovecot-login -L/usr/local/lib -lssl -lcrypto -L/usr/local/lib/dovecot -ldovecot 
--- libmanagesieve_login_settings_la-managesieve-login-settings-plugin.lo ---
libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include/dovecot -I../.. -I../../src/lib-managesieve -I/usr/local/include -DPKG_LIBEXECDIR=\"/usr/local/libexec/dovecot\" -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -MT libmanagesieve_login_settings_la-managesieve-login-settings-plugin.lo -MD -MP -MF .deps/libmanagesieve_login_settings_la-managesieve-login-settings-plugin.Tpo -c managesieve-login-settings-plugin.c -o libmanagesieve_login_settings_la-managesieve-login-settings-plugin.o >/dev/null 2>&1
--- managesieve-login ---
libtool: link: cc -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../.. -pie -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o managesieve-login managesieve_login-client.o managesieve_login-client-authenticate.o managesieve_login-managesieve-login-settings.o managesieve_login-managesieve-proxy.o  -L/usr/local/lib ../../src/lib-managesieve/.libs/libmanagesieve.a -ldovecot-login -lssl -lcrypto -L/usr/local/lib/dovecot -ldovecot
--- libmanagesieve_login_settings_la-managesieve-login-settings-plugin.lo ---
mv -f .deps/libmanagesieve_login_settings_la-managesieve-login-settings-plugin.Tpo .deps/libmanagesieve_login_settings_la-managesieve-login-settings-plugin.Plo
--- libmanagesieve_login_settings.la ---
/bin/sh ../../libtool  --tag=CC    --mode=link cc    -DPKG_LIBEXECDIR=\""/usr/local/libexec/dovecot"\" -std=gnu99 -O2 -pipe  -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing  -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../..  -module -avoid-version -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o libmanagesieve_login_settings.la -rpath /usr/local/lib/dovecot/settings libmanagesieve_login_settings_la-managesieve-login-settings.lo  libmanagesieve_login_settings_la-managesieve-login-settings-plugin.lo  
libtool: link: cc -shared  -fPIC -DPIC  .libs/libmanagesieve_login_settings_la-managesieve-login-settings.o .libs/libmanagesieve_login_settings_la-managesieve-login-settings-plugin.o   -L/usr/local/lib  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -Wl,-soname -Wl,libmanagesieve_login_settings.so -o .libs/libmanagesieve_login_settings.so
libtool: link: ar cr .libs/libmanagesieve_login_settings.a  libmanagesieve_login_settings_la-managesieve-login-settings.o libmanagesieve_login_settings_la-managesieve-login-settings-plugin.o
libtool: link: ranlib .libs/libmanagesieve_login_settings.a
libtool: link: ( cd ".libs" && rm -f "libmanagesieve_login_settings.la" && ln -s "../libmanagesieve_login_settings.la" "libmanagesieve_login_settings.la" )
Making all in doc
--- all-recursive ---
Making all in man
--- doveadm-sieve.1 ---
--- sievec.1 ---
--- sieve-dump.1 ---
--- sieve-test.1 ---
--- doveadm-sieve.1 ---
/bin/sh ./sed.sh . /usr/local/var/run/dovecot /usr/local/etc/dovecot  /usr/local/libexec/dovecot-2.3-pigeonhole < doveadm-sieve.1.in > doveadm-sieve.1
--- sievec.1 ---
/bin/sh ./sed.sh . /usr/local/var/run/dovecot /usr/local/etc/dovecot  /usr/local/libexec/dovecot-2.3-pigeonhole < sievec.1.in > sievec.1
--- sieve-dump.1 ---
/bin/sh ./sed.sh . /usr/local/var/run/dovecot /usr/local/etc/dovecot  /usr/local/libexec/dovecot-2.3-pigeonhole < sieve-dump.1.in > sieve-dump.1
--- sieve-test.1 ---
/bin/sh ./sed.sh . /usr/local/var/run/dovecot /usr/local/etc/dovecot  /usr/local/libexec/dovecot-2.3-pigeonhole < sieve-test.1.in > sieve-test.1
--- sieve-filter.1 ---
--- pigeonhole.7 ---
--- sieve-filter.1 ---
/bin/sh ./sed.sh . /usr/local/var/run/dovecot /usr/local/etc/dovecot  /usr/local/libexec/dovecot-2.3-pigeonhole < sieve-filter.1.in > sieve-filter.1
--- pigeonhole.7 ---
/bin/sh ./sed.sh . /usr/local/var/run/dovecot /usr/local/etc/dovecot  /usr/local/libexec/dovecot-2.3-pigeonhole < pigeonhole.7.in > pigeonhole.7
Making all in example-config
--- all-recursive ---
Making all in conf.d
Making all in rfc
Making all in extensions
Making all in locations
Making all in plugins
===>  Staging for dovecot-pigeonhole-0.5.21_2
===>   dovecot-pigeonhole-0.5.21_2 depends on package: dovecot>=2.3.9 - found
===>   dovecot-pigeonhole-0.5.21_2 depends on file: /usr/local/lib/libcrypto.so.12 - found
===>   Generating temporary packing list
if test -z 'strip'; then  /usr/bin/make  INSTALL_PROGRAM="/bin/sh /usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/install-sh -c -s"  install_sh_PROGRAM="/bin/sh /usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/install-sh -c -s" INSTALL_STRIP_FLAG=-s  install;  else  /usr/bin/make  INSTALL_PROGRAM="/bin/sh /usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/install-sh -c -s"  install_sh_PROGRAM="/bin/sh /usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/install-sh -c -s" INSTALL_STRIP_FLAG=-s  "INSTALL_PROGRAM_ENV=STRIPPROG='strip'" install;  fi
Making install in .
/bin/sh ./update-version.sh . .
 /bin/mkdir -p '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/share/aclocal'
 install  -m 0644 dovecot-pigeonhole.m4 '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/share/aclocal'
/bin/sh ./update-version.sh . .
 /bin/mkdir -p '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/include/dovecot/sieve'
 install  -m 0644 pigeonhole-version.h '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/include/dovecot/sieve'
 /bin/mkdir -p '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/include/dovecot/sieve'
 install  -m 0644 pigeonhole-config.h '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/include/dovecot/sieve'
Making install in src
Making install in lib-sieve
Making install in util
 /bin/mkdir -p '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/include/dovecot/sieve'
 install  -m 0644 mail-raw.h edit-mail.h rfc2822.h '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/include/dovecot/sieve'
Making install in storage
Making install in data
Making install in file
Making install in dict
Making install in ldap
Making install in plugins
Making install in vacation
Making install in subaddress
Making install in comparator-i-ascii-numeric
Making install in relational
Making install in regex
Making install in imap4flags
 /bin/mkdir -p '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/include/dovecot/sieve'
 install  -m 0644 sieve-ext-imap4flags.h '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/include/dovecot/sieve'
Making install in copy
 /bin/mkdir -p '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/include/dovecot/sieve'
 install  -m 0644 sieve-ext-copy.h '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/include/dovecot/sieve'
Making install in include
Making install in body
Making install in variables
 /bin/mkdir -p '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/include/dovecot/sieve'
 install  -m 0644 sieve-ext-variables.h '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/include/dovecot/sieve'
Making install in enotify
Making install in mailto
 /bin/mkdir -p '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/include/dovecot/sieve'
 install  -m 0644 sieve-ext-enotify.h '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/include/dovecot/sieve'
Making install in notify
Making install in environment
 /bin/mkdir -p '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/include/dovecot/sieve'
 install  -m 0644 sieve-ext-environment.h '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/include/dovecot/sieve'
Making install in mailbox
 /bin/mkdir -p '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/include/dovecot/sieve'
 install  -m 0644 sieve-ext-mailbox.h '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/include/dovecot/sieve'
Making install in date
Making install in spamvirustest
Making install in ihave
Making install in editheader
Making install in duplicate
Making install in index
Making install in metadata
Making install in mime
Making install in special-use
Making install in vnd.dovecot
Making install in debug
Making install in environment
Making install in report
 /bin/mkdir -p '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot'
 /bin/sh ../../libtool   --mode=install /usr/bin/install -c -s  libdovecot-sieve.la '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot'
libtool: install: /usr/bin/install -c .libs/libdovecot-sieve.so.0.0.0 /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/libdovecot-sieve.so.0.0.0
libtool: install: strip --strip-unneeded /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/libdovecot-sieve.so.0.0.0
libtool: install: (cd /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot && { ln -s -f libdovecot-sieve.so.0.0.0 libdovecot-sieve.so.0 || { rm -f libdovecot-sieve.so.0 && ln -s libdovecot-sieve.so.0.0.0 libdovecot-sieve.so.0; }; })
libtool: install: (cd /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot && { ln -s -f libdovecot-sieve.so.0.0.0 libdovecot-sieve.so || { rm -f libdovecot-sieve.so && ln -s libdovecot-sieve.so.0.0.0 libdovecot-sieve.so; }; })
libtool: install: /usr/bin/install -c .libs/libdovecot-sieve.lai /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/libdovecot-sieve.la
libtool: install: /usr/bin/install -c .libs/libdovecot-sieve.a /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/libdovecot-sieve.a
libtool: install: strip --strip-debug /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/libdovecot-sieve.a
libtool: install: chmod 644 /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/libdovecot-sieve.a
libtool: install: ranlib /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/libdovecot-sieve.a
ranlib: warning: can't find .strtab section
libtool: warning: remember to run 'libtool --finish /usr/local/lib/dovecot'
 /bin/mkdir -p '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/include/dovecot/sieve'
 install  -m 0644 sieve-config.h sieve-types.h sieve-common.h sieve-limits.h sieve-settings.h sieve-message.h sieve-smtp.h sieve-lexer.h sieve-script.h sieve-script-private.h sieve-storage.h sieve-storage-private.h sieve-ast.h sieve-binary.h sieve-binary-private.h sieve-parser.h sieve-address.h sieve-validator.h sieve-generator.h sieve-execute.h sieve-interpreter.h sieve-runtime-trace.h sieve-runtime.h sieve-code-dumper.h sieve-binary-dumper.h sieve-dump.h sieve-result.h sieve-error.h sieve-error-private.h sieve-objects.h sieve-stringlist.h sieve-match.h sieve-comparators.h sieve-match-types.h sieve-address-parts.h sieve-address-source.h sieve-commands.h sieve-code.h sieve-actions.h sieve-extensions.h '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/include/dovecot/sieve'
 install  -m 0644 sieve-plugins.h sieve.h '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/include/dovecot/sieve'
Making install in plugins
Making install in doveadm-sieve
 /bin/mkdir -p '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/doveadm'
 /bin/sh ../../../libtool   --mode=install /usr/bin/install -c -s  lib10_doveadm_sieve_plugin.la '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/doveadm'
libtool: warning: relinking 'lib10_doveadm_sieve_plugin.la'
libtool: install: (cd /usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/src/plugins/doveadm-sieve; /bin/sh "/usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/libtool"  --tag CC --mode=relink cc -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -module -avoid-version -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o lib10_doveadm_sieve_plugin.la -rpath /usr/local/lib/dovecot/doveadm doveadm-sieve-cmd-list.lo doveadm-sieve-cmd-get.lo doveadm-sieve-cmd-put.lo doveadm-sieve-cmd-delete.lo doveadm-sieve-cmd-activate.lo doveadm-sieve-cmd-rename.lo doveadm-sieve-cmd.lo doveadm-sieve-sync.lo doveadm-sieve-plugin.lo ../../../src/lib-sieve/libdovecot-sieve.la -inst-prefix-dir /usr/ports/mail/dovecot-pigeonhole/work/stage)
libtool: relink: cc -shared  -fPIC -DPIC  .libs/doveadm-sieve-cmd-list.o .libs/doveadm-sieve-cmd-get.o .libs/doveadm-sieve-cmd-put.o .libs/doveadm-sieve-cmd-delete.o .libs/doveadm-sieve-cmd-activate.o .libs/doveadm-sieve-cmd-rename.o .libs/doveadm-sieve-cmd.o .libs/doveadm-sieve-sync.o .libs/doveadm-sieve-plugin.o   -Wl,-rpath -Wl,/usr/local/lib/dovecot -L/usr/local/lib ../../../src/lib-sieve/.libs/libdovecot-sieve.so  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -pthread -Wl,-soname -Wl,lib10_doveadm_sieve_plugin.so -o .libs/lib10_doveadm_sieve_plugin.so
libtool: install: /usr/bin/install -c .libs/lib10_doveadm_sieve_plugin.soT /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/doveadm/lib10_doveadm_sieve_plugin.so
libtool: install: strip --strip-unneeded /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/doveadm/lib10_doveadm_sieve_plugin.so
libtool: install: /usr/bin/install -c .libs/lib10_doveadm_sieve_plugin.lai /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/doveadm/lib10_doveadm_sieve_plugin.la
libtool: install: /usr/bin/install -c .libs/lib10_doveadm_sieve_plugin.a /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/doveadm/lib10_doveadm_sieve_plugin.a
libtool: install: strip --strip-debug /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/doveadm/lib10_doveadm_sieve_plugin.a
libtool: install: chmod 644 /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/doveadm/lib10_doveadm_sieve_plugin.a
libtool: install: ranlib /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/doveadm/lib10_doveadm_sieve_plugin.a
libtool: warning: remember to run 'libtool --finish /usr/local/lib/dovecot/doveadm'
Making install in lda-sieve
 /bin/mkdir -p '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot'
 /bin/sh ../../../libtool   --mode=install /usr/bin/install -c -s  lib90_sieve_plugin.la '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot'
libtool: warning: relinking 'lib90_sieve_plugin.la'
libtool: install: (cd /usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/src/plugins/lda-sieve; /bin/sh "/usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/libtool"  --tag CC --mode=relink cc -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -module -avoid-version -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o lib90_sieve_plugin.la -rpath /usr/local/lib/dovecot lda-sieve-plugin.lo ../../../src/lib-sieve/libdovecot-sieve.la -inst-prefix-dir /usr/ports/mail/dovecot-pigeonhole/work/stage)
libtool: relink: cc -shared  -fPIC -DPIC  .libs/lda-sieve-plugin.o   -Wl,-rpath -Wl,/usr/local/lib/dovecot -L/usr/local/lib ../../../src/lib-sieve/.libs/libdovecot-sieve.so  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -pthread -Wl,-soname -Wl,lib90_sieve_plugin.so -o .libs/lib90_sieve_plugin.so
libtool: install: /usr/bin/install -c .libs/lib90_sieve_plugin.soT /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/lib90_sieve_plugin.so
libtool: install: strip --strip-unneeded /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/lib90_sieve_plugin.so
libtool: install: /usr/bin/install -c .libs/lib90_sieve_plugin.lai /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/lib90_sieve_plugin.la
libtool: install: /usr/bin/install -c .libs/lib90_sieve_plugin.a /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/lib90_sieve_plugin.a
libtool: install: strip --strip-debug /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/lib90_sieve_plugin.a
libtool: install: chmod 644 /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/lib90_sieve_plugin.a
libtool: install: ranlib /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/lib90_sieve_plugin.a
libtool: warning: remember to run 'libtool --finish /usr/local/lib/dovecot'
Making install in sieve-extprograms
 /bin/mkdir -p '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/sieve'
 /bin/sh ../../../libtool   --mode=install /usr/bin/install -c -s  lib90_sieve_extprograms_plugin.la '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/sieve'
libtool: install: /usr/bin/install -c .libs/lib90_sieve_extprograms_plugin.so /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/sieve/lib90_sieve_extprograms_plugin.so
libtool: install: strip --strip-unneeded /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/sieve/lib90_sieve_extprograms_plugin.so
libtool: install: /usr/bin/install -c .libs/lib90_sieve_extprograms_plugin.lai /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/sieve/lib90_sieve_extprograms_plugin.la
libtool: install: /usr/bin/install -c .libs/lib90_sieve_extprograms_plugin.a /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/sieve/lib90_sieve_extprograms_plugin.a
libtool: install: strip --strip-debug /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/sieve/lib90_sieve_extprograms_plugin.a
libtool: install: chmod 644 /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/sieve/lib90_sieve_extprograms_plugin.a
libtool: install: ranlib /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/sieve/lib90_sieve_extprograms_plugin.a
libtool: warning: remember to run 'libtool --finish /usr/local/lib/dovecot/sieve'
Making install in imapsieve
 /bin/mkdir -p '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot'
 /bin/sh ../../../libtool   --mode=install /usr/bin/install -c -s  lib95_imap_sieve_plugin.la '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot'
libtool: warning: relinking 'lib95_imap_sieve_plugin.la'
libtool: install: (cd /usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/src/plugins/imapsieve; /bin/sh "/usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/libtool"  --tag CC --mode=relink cc -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -module -avoid-version -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o lib95_imap_sieve_plugin.la -rpath /usr/local/lib/dovecot ext-imapsieve.lo ext-imapsieve-environment.lo imap-sieve.lo imap-sieve-storage.lo imap-sieve-plugin.lo ../../../src/lib-sieve/libdovecot-sieve.la -inst-prefix-dir /usr/ports/mail/dovecot-pigeonhole/work/stage)
libtool: relink: cc -shared  -fPIC -DPIC  .libs/ext-imapsieve.o .libs/ext-imapsieve-environment.o .libs/imap-sieve.o .libs/imap-sieve-storage.o .libs/imap-sieve-plugin.o   -Wl,-rpath -Wl,/usr/local/lib/dovecot -L/usr/local/lib ../../../src/lib-sieve/.libs/libdovecot-sieve.so  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -pthread -Wl,-soname -Wl,lib95_imap_sieve_plugin.so -o .libs/lib95_imap_sieve_plugin.so
libtool: install: /usr/bin/install -c .libs/lib95_imap_sieve_plugin.soT /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/lib95_imap_sieve_plugin.so
libtool: install: strip --strip-unneeded /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/lib95_imap_sieve_plugin.so
libtool: install: /usr/bin/install -c .libs/lib95_imap_sieve_plugin.lai /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/lib95_imap_sieve_plugin.la
libtool: install: /usr/bin/install -c .libs/lib95_imap_sieve_plugin.a /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/lib95_imap_sieve_plugin.a
libtool: install: strip --strip-debug /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/lib95_imap_sieve_plugin.a
libtool: install: chmod 644 /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/lib95_imap_sieve_plugin.a
libtool: install: ranlib /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/lib95_imap_sieve_plugin.a
libtool: warning: remember to run 'libtool --finish /usr/local/lib/dovecot'
 /bin/mkdir -p '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/sieve'
 /bin/sh ../../../libtool   --mode=install /usr/bin/install -c -s  lib90_sieve_imapsieve_plugin.la '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/sieve'
libtool: install: /usr/bin/install -c .libs/lib90_sieve_imapsieve_plugin.so /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/sieve/lib90_sieve_imapsieve_plugin.so
libtool: install: strip --strip-unneeded /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/sieve/lib90_sieve_imapsieve_plugin.so
libtool: install: /usr/bin/install -c .libs/lib90_sieve_imapsieve_plugin.lai /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/sieve/lib90_sieve_imapsieve_plugin.la
libtool: install: /usr/bin/install -c .libs/lib90_sieve_imapsieve_plugin.a /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/sieve/lib90_sieve_imapsieve_plugin.a
libtool: install: strip --strip-debug /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/sieve/lib90_sieve_imapsieve_plugin.a
libtool: install: chmod 644 /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/sieve/lib90_sieve_imapsieve_plugin.a
libtool: install: ranlib /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/sieve/lib90_sieve_imapsieve_plugin.a
libtool: warning: remember to run 'libtool --finish /usr/local/lib/dovecot/sieve'
Making install in imap-filter-sieve
 /bin/mkdir -p '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot'
 /bin/sh ../../../libtool   --mode=install /usr/bin/install -c -s  lib95_imap_filter_sieve_plugin.la '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot'
libtool: warning: relinking 'lib95_imap_filter_sieve_plugin.la'
libtool: install: (cd /usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/src/plugins/imap-filter-sieve; /bin/sh "/usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/libtool"  --tag CC --mode=relink cc -std=gnu99 -O2 -pipe -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -I../../.. -module -avoid-version -L/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -o lib95_imap_filter_sieve_plugin.la -rpath /usr/local/lib/dovecot cmd-filter.lo cmd-filter-sieve.lo imap-filter.lo imap-filter-sieve.lo imap-filter-sieve-plugin.lo ../../../src/lib-sieve/libdovecot-sieve.la -inst-prefix-dir /usr/ports/mail/dovecot-pigeonhole/work/stage)
libtool: relink: cc -shared  -fPIC -DPIC  .libs/cmd-filter.o .libs/cmd-filter-sieve.o .libs/imap-filter.o .libs/imap-filter-sieve.o .libs/imap-filter-sieve-plugin.o   -Wl,-rpath -Wl,/usr/local/lib/dovecot -L/usr/local/lib ../../../src/lib-sieve/.libs/libdovecot-sieve.so  -O2 -fstack-protector-strong -fstack-protector-strong -mfunction-return=keep -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong   -pthread -Wl,-soname -Wl,lib95_imap_filter_sieve_plugin.so -o .libs/lib95_imap_filter_sieve_plugin.so
libtool: install: /usr/bin/install -c .libs/lib95_imap_filter_sieve_plugin.soT /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/lib95_imap_filter_sieve_plugin.so
libtool: install: strip --strip-unneeded /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/lib95_imap_filter_sieve_plugin.so
libtool: install: /usr/bin/install -c .libs/lib95_imap_filter_sieve_plugin.lai /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/lib95_imap_filter_sieve_plugin.la
libtool: install: /usr/bin/install -c .libs/lib95_imap_filter_sieve_plugin.a /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/lib95_imap_filter_sieve_plugin.a
libtool: install: strip --strip-debug /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/lib95_imap_filter_sieve_plugin.a
libtool: install: chmod 644 /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/lib95_imap_filter_sieve_plugin.a
libtool: install: ranlib /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/lib95_imap_filter_sieve_plugin.a
libtool: warning: remember to run 'libtool --finish /usr/local/lib/dovecot'
Making install in settings
 /bin/mkdir -p '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/settings'
 /bin/sh ../../../libtool   --mode=install /usr/bin/install -c -s  libpigeonhole_settings.la '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/settings'
libtool: install: /usr/bin/install -c .libs/libpigeonhole_settings.so /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/settings/libpigeonhole_settings.so
libtool: install: strip --strip-unneeded /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/settings/libpigeonhole_settings.so
libtool: install: /usr/bin/install -c .libs/libpigeonhole_settings.lai /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/settings/libpigeonhole_settings.la
libtool: install: /usr/bin/install -c .libs/libpigeonhole_settings.a /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/settings/libpigeonhole_settings.a
libtool: install: strip --strip-debug /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/settings/libpigeonhole_settings.a
libtool: install: chmod 644 /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/settings/libpigeonhole_settings.a
libtool: install: ranlib /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/settings/libpigeonhole_settings.a
libtool: warning: remember to run 'libtool --finish /usr/local/lib/dovecot/settings'
Making install in lib-sieve-tool
Making install in sieve-tools
 /bin/mkdir -p '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/bin'
 STRIPPROG='strip' /bin/sh ../../libtool   --mode=install /bin/sh /usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/install-sh -c -s sievec sieve-dump sieve-test sieve-filter '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/bin'
libtool: warning: '../../src/lib-sieve/libdovecot-sieve.la' has not been installed in '/usr/local/lib/dovecot'
libtool: install: /bin/sh /usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/install-sh -c -s .libs/sievec /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/bin/sievec
libtool: warning: '../../src/lib-sieve/libdovecot-sieve.la' has not been installed in '/usr/local/lib/dovecot'
libtool: install: /bin/sh /usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/install-sh -c -s .libs/sieve-dump /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/bin/sieve-dump
libtool: warning: '../../src/lib-sieve/libdovecot-sieve.la' has not been installed in '/usr/local/lib/dovecot'
libtool: install: /bin/sh /usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/install-sh -c -s .libs/sieve-test /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/bin/sieve-test
libtool: warning: '../../src/lib-sieve/libdovecot-sieve.la' has not been installed in '/usr/local/lib/dovecot'
libtool: install: /bin/sh /usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/install-sh -c -s .libs/sieve-filter /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/bin/sieve-filter
Making install in testsuite
Making install in lib-managesieve
Making install in managesieve
 /bin/mkdir -p '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/libexec/dovecot'
 STRIPPROG='strip' /bin/sh ../../libtool   --mode=install /bin/sh /usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/install-sh -c -s managesieve '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/libexec/dovecot'
libtool: warning: '../../src/lib-sieve/libdovecot-sieve.la' has not been installed in '/usr/local/lib/dovecot'
libtool: install: /bin/sh /usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/install-sh -c -s .libs/managesieve /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/libexec/dovecot/managesieve
 /bin/mkdir -p '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/settings'
 /bin/sh ../../libtool   --mode=install /usr/bin/install -c -s  libmanagesieve_settings.la '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/settings'
libtool: install: /usr/bin/install -c .libs/libmanagesieve_settings.so /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/settings/libmanagesieve_settings.so
libtool: install: strip --strip-unneeded /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/settings/libmanagesieve_settings.so
libtool: install: /usr/bin/install -c .libs/libmanagesieve_settings.lai /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/settings/libmanagesieve_settings.la
libtool: install: /usr/bin/install -c .libs/libmanagesieve_settings.a /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/settings/libmanagesieve_settings.a
libtool: install: strip --strip-debug /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/settings/libmanagesieve_settings.a
libtool: install: chmod 644 /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/settings/libmanagesieve_settings.a
libtool: install: ranlib /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/settings/libmanagesieve_settings.a
libtool: warning: remember to run 'libtool --finish /usr/local/lib/dovecot/settings'
Making install in managesieve-login
 /bin/mkdir -p '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/libexec/dovecot'
 STRIPPROG='strip' /bin/sh ../../libtool   --mode=install /bin/sh /usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/install-sh -c -s managesieve-login '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/libexec/dovecot'
libtool: install: /bin/sh /usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/install-sh -c -s managesieve-login /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/libexec/dovecot/managesieve-login
 /bin/mkdir -p '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/settings'
 /bin/sh ../../libtool   --mode=install /usr/bin/install -c -s  libmanagesieve_login_settings.la '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/settings'
libtool: install: /usr/bin/install -c .libs/libmanagesieve_login_settings.so /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/settings/libmanagesieve_login_settings.so
libtool: install: strip --strip-unneeded /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/settings/libmanagesieve_login_settings.so
libtool: install: /usr/bin/install -c .libs/libmanagesieve_login_settings.lai /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/settings/libmanagesieve_login_settings.la
libtool: install: /usr/bin/install -c .libs/libmanagesieve_login_settings.a /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/settings/libmanagesieve_login_settings.a
libtool: install: strip --strip-debug /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/settings/libmanagesieve_login_settings.a
libtool: install: chmod 644 /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/settings/libmanagesieve_login_settings.a
libtool: install: ranlib /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/lib/dovecot/settings/libmanagesieve_login_settings.a
libtool: warning: remember to run 'libtool --finish /usr/local/lib/dovecot/settings'
Making install in doc
Making install in man
 /bin/mkdir -p '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/share/man/man1'
 install  -m 0644 sieved.1 doveadm-sieve.1 sievec.1 sieve-dump.1 sieve-test.1 sieve-filter.1 '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/share/man/man1'
 /bin/mkdir -p '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/share/man/man7'
 install  -m 0644 pigeonhole.7 '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/share/man/man7'
Making install in example-config
Making install in conf.d
 /bin/mkdir -p '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/share/doc/dovecot/example-config/conf.d'
 install  -m 0644 20-managesieve.conf 90-sieve.conf 90-sieve-extprograms.conf '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/share/doc/dovecot/example-config/conf.d'
 /bin/mkdir -p '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/share/doc/dovecot/example-config'
 install  -m 0644 sieve-ldap.conf '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/share/doc/dovecot/example-config'
Making install in rfc
Making install in extensions
 /bin/mkdir -p '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/share/doc/dovecot/sieve/extensions'
 install  -m 0644 duplicate.txt editheader.txt include.txt spamtest-virustest.txt vacation.txt vnd.dovecot.environment.txt vnd.dovecot.report.txt '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/share/doc/dovecot/sieve/extensions'
Making install in locations
 /bin/mkdir -p '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/share/doc/dovecot/sieve/locations'
 install  -m 0644 dict.txt file.txt ldap.txt '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/share/doc/dovecot/sieve/locations'
Making install in plugins
 /bin/mkdir -p '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/share/doc/dovecot/sieve/plugins'
 install  -m 0644 imap_filter_sieve.txt imapsieve.txt imap_filter_sieve.txt sieve_extprograms.txt '/usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/share/doc/dovecot/sieve/plugins'
cp -f /usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/examples/elvey.sieve /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/share/examples/dovecot-pigeonhole
cp -f /usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/examples/jerry.sieve /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/share/examples/dovecot-pigeonhole
cp -f /usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/examples/mjohnson.sieve /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/share/examples/dovecot-pigeonhole
cp -f /usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/examples/mklose.sieve /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/share/examples/dovecot-pigeonhole
cp -f /usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/examples/relational.rfc5231.sieve /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/share/examples/dovecot-pigeonhole
cp -f /usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/examples/rfc3028.sieve /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/share/examples/dovecot-pigeonhole
cp -f /usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/examples/sanjay.sieve /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/share/examples/dovecot-pigeonhole
cp -f /usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/examples/sieve_examples.sieve /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/share/examples/dovecot-pigeonhole
cp -f /usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/examples/subaddress.rfc5233.sieve /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/share/examples/dovecot-pigeonhole
cp -f /usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/examples/vacation.sieve /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/share/examples/dovecot-pigeonhole
cp -f /usr/ports/mail/dovecot-pigeonhole/work/dovecot-2.3-pigeonhole-0.5.21/examples/vivil.sieve /usr/ports/mail/dovecot-pigeonhole/work/stage/usr/local/share/examples/dovecot-pigeonhole
====> Compressing man pages (compress-man)
===>   Installing ldconfig configuration file
===>  Installing for dovecot-pigeonhole-0.5.21_2
===>  Checking if dovecot-pigeonhole is already installed
===>   Registering installation for dovecot-pigeonhole-0.5.21_2
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] Installing dovecot-pigeonhole-0.5.21_2...
 This port assumes you are familiar with Dovecot and have it installed
 and running on the system you have installed this plugin on.

 You can enable the plugin with this directive in your dovecot.conf:

     protocol lda {
       # Support for dynamically loadable plugins. mail_plugins is
       # a space separated list of plugins to load.
       mail_plugins = sieve # ... other plugins like quota
     }

 Further information on configuration can be found at:

  http://wiki2.dovecot.org/Pigeonhole

===>  Cleaning for dovecot-pigeonhole-0.5.21_2
Step 58: Port build spamassassin
===>  Deinstalling for spamassassin
===>   spamassassin not installed, skipping
===>  License APACHE20 accepted by the user
===>   spamassassin-4.0.1_1 depends on file: /usr/local/sbin/pkg - found
=> Mail-SpamAssassin-4.0.1.tar.gz doesn't seem to exist in /usr/ports/distfiles/.
=> Attempting to fetch https://archive.apache.org/dist/spamassassin/source/Mail-SpamAssassin-4.0.1.tar.gz
Mail-SpamAssassin-4.0.1.tar.gz                        6630 kB  983 kBps    07s
===> Fetching all distfiles required by spamassassin-4.0.1_1 for building
===>  Extracting for spamassassin-4.0.1_1
=> SHA256 Checksum OK for Mail-SpamAssassin-4.0.1.tar.gz.
===>  Patching for spamassassin-4.0.1_1
/usr/bin/sed -i.bak -e 's,B_CONFDIR)/local.cf,B_CONFDIR)/local.cf.sample,g'  -e 's,B_CONFDIR)/init.pre,B_CONFDIR)/init.pre.sample,g'  -e 's,B_CONFDIR)/v310.pre,B_CONFDIR)/v310.pre.sample,g'  -e 's,B_CONFDIR)/v312.pre,B_CONFDIR)/v312.pre.sample,g'  -e 's,B_CONFDIR)/v320.pre,B_CONFDIR)/v320.pre.sample,g'  -e 's,B_CONFDIR)/v330.pre,B_CONFDIR)/v330.pre.sample,g'  -e 's,B_CONFDIR)/v340.pre,B_CONFDIR)/v340.pre.sample,g'  -e 's,B_CONFDIR)/v341.pre,B_CONFDIR)/v341.pre.sample,g'  -e 's,B_CONFDIR)/v342.pre,B_CONFDIR)/v342.pre.sample,g'  -e 's,B_CONFDIR)/v343.pre,B_CONFDIR)/v343.pre.sample,g'  -e 's,B_CONFDIR)/v400.pre,B_CONFDIR)/v400.pre.sample,g'  -e 's,B_CONFDIR)/v401.pre,B_CONFDIR)/v401.pre.sample,g'  -e 's/require DBI/0/'  /usr/ports/mail/spamassassin/work/Mail-SpamAssassin-4.0.1/Makefile.PL
/usr/bin/sed -i.bak -e '/^CC =/d;  s|@SSLCFLAGS@|& ${CFLAGS}|g' /usr/ports/mail/spamassassin/work/Mail-SpamAssassin-4.0.1/spamc/Makefile.in
/usr/bin/sed -i.bak -e '/DCC/s/^loadplugin/\# loadplugin/' /usr/ports/mail/spamassassin/work/Mail-SpamAssassin-4.0.1/rules/*.pre
/usr/bin/sed -i.bak -e '/DKIM/s/^\#.*loadplugin/loadplugin/' /usr/ports/mail/spamassassin/work/Mail-SpamAssassin-4.0.1/rules/*.pre
/usr/bin/sed -i.bak -e '/DMARC/s/^loadplugin/\# loadplugin/' /usr/ports/mail/spamassassin/work/Mail-SpamAssassin-4.0.1/rules/*.pre
/usr/bin/sed -i.bak -e '/Pyzor/s/^loadplugin/\# loadplugin/' /usr/ports/mail/spamassassin/work/Mail-SpamAssassin-4.0.1/rules/*.pre
/usr/bin/sed -i.bak -e '/Razor2/s/^\#.*loadplugin/loadplugin/' /usr/ports/mail/spamassassin/work/Mail-SpamAssassin-4.0.1/rules/*.pre
/usr/bin/sed -i.bak -e '/RelayCountry/s/^loadplugin/\# loadplugin/' /usr/ports/mail/spamassassin/work/Mail-SpamAssassin-4.0.1/rules/*.pre
/usr/bin/sed -i.bak -e '/ResourceLimit/s/^loadplugin/\# loadplugin/' /usr/ports/mail/spamassassin/work/Mail-SpamAssassin-4.0.1/rules/*.pre
/usr/bin/sed -i.bak -e '/SPF/s/^\#.*loadplugin/loadplugin/' /usr/ports/mail/spamassassin/work/Mail-SpamAssassin-4.0.1/rules/*.pre
===>   spamassassin-4.0.1_1 depends on package: p5-Encode-Detect>=0 - found
===>   spamassassin-4.0.1_1 depends on package: p5-HTML-Parser>=3.46 - found
===>   spamassassin-4.0.1_1 depends on package: p5-HTTP-Date>=0 - found
===>   spamassassin-4.0.1_1 depends on package: p5-Net-DNS>=0.63 - found
===>   spamassassin-4.0.1_1 depends on package: p5-NetAddr-IP>=4.010 - found
===>   spamassassin-4.0.1_1 depends on file: /usr/local/lib/libcrypto.so.12 - found
===>   spamassassin-4.0.1_1 depends on package: perl5>=5.36<5.37 - found
===>   spamassassin-4.0.1_1 depends on shared library: libmysqlclient.so.21 - found (/usr/local/lib/mysql/libmysqlclient.so.21)
===>  Configuring for spamassassin-4.0.1_1
NOTE: settings for "make test" are now controlled using "t/config.dist". 
See that file if you wish to customize what tests are run, and how.

checking module dependencies and their versions...

***************************************************************************
NOTE: the optional Digest::SHA1 module is not installed.

  The Digest::SHA1 module is still required by the Razor2 plugin.
  Other modules prefer Digest::SHA, which is a Perl base module.


***************************************************************************
NOTE: the optional Net::LibIDN2 module is not installed.

  Newer version of the optional Net::LibIDN module.
  Provides mapping between Internationalized Domain Names (IDN) in
  Unicode and ASCII-compatible encoding (ACE) for use in DNS and comparisions.
  The module is optional, but without it Unicode IDN names found in mail will
  not be suitable for DNS queries and welcome/blocklisting.


***************************************************************************
NOTE: the optional MaxMind::DB::Reader module is not installed.

  Used by the RelayCountry plugin (not enabled by default) to
  determine the domain country codes of each relay in the path of an email. 
  Also used by the URILocalBL plugin (not enabled by default) to provide ISP
  and Country code based filtering.


***************************************************************************
NOTE: the optional MaxMind::DB::Reader::XS module is not installed.

  Recommended much faster version of the optional MaxMind::DB::Reader module,
  used by RelayCountry / URILocalBL plugins.


***************************************************************************
NOTE: the optional Geo::IP module is not installed.

  Used by the RelayCountry plugin (not enabled by default) to
  determine the domain country codes of each relay in the path of an email. 
  Also used by the URILocalBL plugin (not enabled by default) to provide ISP
  and Country code based filtering.


***************************************************************************
NOTE: the optional IP::Country::DB_File module is not installed.

  Used by the RelayCountry plugin (not enabled by default) to
  determine the domain country codes of each relay in the path of an email. 
  Also used by the URILocalBL plugin (not enabled by default) to provide
  Country code based filtering.


***************************************************************************
NOTE: the optional IP::Country::Fast module is not installed.

  Used by the RelayCountry plugin (not enabled by default) to
  determine the domain country codes of each relay in the path of an email. 
  Also used by the URILocalBL plugin (not enabled by default) to provide
  Country code based filtering.


***************************************************************************
NOTE: the optional Razor2 module is not installed,
minimum required version is 2.61.

  Used to check message signatures against Vipul's Razor collaborative
  filtering network. Razor has a large number of dependencies on CPAN
  modules. Feel free to skip installing it, if this makes you nervous;
  SpamAssassin will still work well without it.

  More info on installing and using Razor can be found
  at http://wiki.apache.org/spamassassin/InstallingRazor .


***************************************************************************
NOTE: the optional IO::Socket::INET6 module is not installed.

  This module is a deprecated alternative to IO::Socket::IP.
  Spamd, as well some underlying modules, will fall back to using
  IO::Socket::INET6 if IO::Socket::IP is unavailable. One or the other
  module is required to support IPv6 (e.g. in spamd/spamc protocol,
  for DNS lookups or in plugins like DCC). Some plugins or underlying
  modules may still require IO::Socket::INET6 for IPv6 support even
  if IO::Socket::IP is available.


***************************************************************************
NOTE: the optional DBD::SQLite module is not installed,
minimum required version is 1.59.

  If you intend to use SpamAssassin with SQLite as the SQL database
  backend for the DBI module, this is the DBD driver required. Version 1.59_01
  or later is needed to provide SQLite 3.25.0 or later.


***************************************************************************
NOTE: the optional LWP::Protocol::https module is not installed.

  The "sa-update" program can use this module to make HTTPS requests.
  Also used by DecodeShortURLs plugin.


***************************************************************************
NOTE: the optional LWP::UserAgent module is not installed.

  The "sa-update" program can use this module to make HTTP requests.
  Also used by DecodeShortURLs plugin.


***************************************************************************
NOTE: the optional Net::Patricia module is not installed,
minimum required version is 1.16.

  If this module is available, it will be used for IP address
  lookups in tables internal_networks, trusted_networks, msa_networks and
  uri_local_cidr.  Recommended when a number of entries in these tables is
  large, i.e.  in hundreds or thousands.  However, in case of overlapping
  (or conflicting) networks in these tables, lookup results may differ as
  Net::Patricia finds a tightest-matching entry, while a sequential
  NetAddr::IP search finds a first-matching entry.  So when overlapping
  network ranges are given, specifying more specific subnets (longest
  netmask) first, followed by wider subnets ensures predictable results.


***************************************************************************
NOTE: the optional BSD::Resource module is not installed.

  BSD::Resource provides BSD process resource limit and priority 
  functions.  It is used by the optional ResourceLimits Plugin.


***************************************************************************
NOTE: the optional Archive::Zip module is not installed.

  Archive::Zip provides an interface to ZIP archive files.
  It is used by the optional OLEVBMacro Plugin.


***************************************************************************
NOTE: the optional IO::String module is not installed.

  IO::String emulates file interface for in-core strings.
  It is used by the optional OLEVBMacro Plugin.


***************************************************************************
NOTE: the optional Email::Address::XS module is not installed.

  Email::Address::XS is used to parse email addresses from header
  fields like To/From/cc, per RFC 5322. If installed, it may additionally
  be used by internal parser to process complex lists.


***************************************************************************
NOTE: the optional Mail::DMARC module is not installed.

  Mail::DMARC is used by the optional DMARC plugin.


***************************************************************************
NOTE: the optional Devel::Cycle module is not installed.

  Devel::Cycle is used in make test in tests that will be harmelessly
  skipped if it is not available


***************************************************************************
NOTE: the optional Text::Diff module is not installed.

  Text::Diff is used in make test in tests that will be harmelessly
  skipped if it is not available

checking binary dependencies and their versions...

***************************************************************************
NOTE: the optional wget binary is not installed,
recommended version is 1.8.2 or higher.

   Sa-update will use curl, wget or fetch to download updates.  
   Because perl module LWP does not support IPv6, sa-update as of
   3.4.0 will use these standard programs to download rule updates
   leaving LWP as a fallback if none of the programs are found.

   *IMPORTANT NOTE*: You only need one of these programs 
       It's only a concern if you are warned about all 3 
       i.e. (curl, wget & fetch) missing

Warning: prerequisite Perl::Critic::Policy::Perlsecret 0 not found.
Warning: prerequisite Perl::Critic::Policy::TestingAndDebugging::ProhibitNoStrict 0 not found.
dependency check complete...

optional module missing: Digest::SHA1
optional module missing: Net::LibIDN2
optional module missing: MaxMind::DB::Reader
optional module missing: MaxMind::DB::Reader::XS
optional module missing: Geo::IP
optional module missing: IP::Country::DB_File
optional module missing: IP::Country::Fast
optional module missing: Razor2
optional module missing: IO::Socket::INET6
optional module missing: DBD::SQLite
optional module missing: LWP::Protocol::https
optional module missing: LWP::UserAgent
optional module missing: Net::Patricia
optional module missing: BSD::Resource
optional module missing: Archive::Zip
optional module missing: IO::String
optional module missing: Email::Address::XS
optional module missing: Mail::DMARC
optional module missing: Devel::Cycle
optional module missing: Text::Diff
optional binary missing or nonfunctional: wget

warning: some functionality may not be available,
please read the above report before continuing!

Checking if your kit is complete...
Looks good
'BUILD_SPAMC' is not a known MakeMaker parameter name.
'CONTACT_ADDRESS' is not a known MakeMaker parameter name.
'ENABLE_SSL' is not a known MakeMaker parameter name.
'LOCALSTATEDIR' is not a known MakeMaker parameter name.
'SYSCONFDIR' is not a known MakeMaker parameter name.
Generating a Unix-style Makefile
Writing Makefile for Mail::SpamAssassin
Writing MYMETA.yml and MYMETA.json
Makefile written by ExtUtils::MakeMaker 7.64
===>  Building for spamassassin-4.0.1_1
--- blib/lib/Mail/.exists ---
--- blib/arch/.exists ---
--- blib/lib/auto/Mail/SpamAssassin/.exists ---
--- blib/arch/auto/Mail/SpamAssassin/.exists ---
--- blib/bin/.exists ---
--- blib/script/.exists ---
--- blib/man1/.exists ---
--- blib/man3/.exists ---
--- config ---
--- subdirs ---
--- dynamic ---
--- build_rules ---
--- blibdirs ---
--- sa-awl ---
--- build_rules ---
"/usr/local/bin/perl" build/mkrules --exit_on_no_src --src rulesrc --out rules --manifest MANIFEST --manifestskip MANIFEST.SKIP
--- sa-check_spamd ---
--- sa-compile ---
--- sa-awl ---
"/usr/local/bin/perl" build/preprocessor  -Mvars  -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin"  -DINSTALLSITELIB="/usr/local/lib/perl5/site_perl"  -DCONTACT_ADDRESS="The administrator of that system"  -DRE2C_BIN="re2c" -Msharpbang  -Mconditional  -DPERL_BIN=""/usr/local/bin/perl""  -DPERL_WARN=""  -DPERL_TAINT="" -m755 -isa-awl.raw -osa-awl
--- sa-check_spamd ---
"/usr/local/bin/perl" build/preprocessor  -Mvars  -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin"  -DINSTALLSITELIB="/usr/local/lib/perl5/site_perl"  -DCONTACT_ADDRESS="The administrator of that system"  -DRE2C_BIN="re2c" -Msharpbang  -Mconditional  -DPERL_BIN=""/usr/local/bin/perl""  -DPERL_WARN=""  -DPERL_TAINT="" -m755 -isa-check_spamd.raw -osa-check_spamd
--- sa-compile ---
"/usr/local/bin/perl" build/preprocessor  -Mvars  -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin"  -DINSTALLSITELIB="/usr/local/lib/perl5/site_perl"  -DCONTACT_ADDRESS="The administrator of that system"  -DRE2C_BIN="re2c" -Msharpbang  -Mconditional  -DPERL_BIN=""/usr/local/bin/perl""  -DPERL_WARN=""  -DPERL_TAINT="" -m755 -isa-compile.raw -osa-compile
--- sa-learn ---
--- spamassassin ---
--- sa-learn ---
"/usr/local/bin/perl" build/preprocessor  -Mvars  -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin"  -DINSTALLSITELIB="/usr/local/lib/perl5/site_perl"  -DCONTACT_ADDRESS="The administrator of that system"  -DRE2C_BIN="re2c" -Msharpbang  -Mconditional  -DPERL_BIN=""/usr/local/bin/perl""  -DPERL_WARN=""  -DPERL_TAINT="" -m755 -isa-learn.raw -osa-learn
--- spamc/Makefile ---
--- spamassassin ---
"/usr/local/bin/perl" build/preprocessor  -Mvars  -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin"  -DINSTALLSITELIB="/usr/local/lib/perl5/site_perl"  -DCONTACT_ADDRESS="The administrator of that system"  -DRE2C_BIN="re2c" -Msharpbang  -Mconditional  -DPERL_BIN=""/usr/local/bin/perl""  -DPERL_WARN=""  -DPERL_TAINT="" -m755 -ispamassassin.raw -ospamassassin
--- spamc/Makefile ---
"/usr/local/bin/perl" spamc/configure.pl --prefix="/usr/local" --sysconfdir="/usr/local/etc/mail/spamassassin" --datadir="/usr/local/share/spamassassin" --enable-ssl="yes"
--- spamd/spamd ---
--- pm_to_blib ---
--- spamd/spamd ---
"/usr/local/bin/perl" build/preprocessor  -Mvars  -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin"  -DINSTALLSITELIB="/usr/local/lib/perl5/site_perl"  -DCONTACT_ADDRESS="The administrator of that system"  -DRE2C_BIN="re2c" -Msharpbang  -Mconditional  -DPERL_BIN=""/usr/local/bin/perl""  -DPERL_WARN=""  -DPERL_TAINT="" -m755 -ispamd/spamd.raw -ospamd/spamd
--- config ---
--- blib/script/sa-awl ---
cp sa-awl blib/script/sa-awl
--- pm_to_blib ---
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Conf/SQL.pm >blib/lib/Mail/SpamAssassin/Conf/SQL.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Dns.pm >blib/lib/Mail/SpamAssassin/Dns.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/PersistentAddrList.pm >blib/lib/Mail/SpamAssassin/PersistentAddrList.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Plugin/DKIM.pm >blib/lib/Mail/SpamAssassin/Plugin/DKIM.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Bayes/CombineChi.pm >blib/lib/Mail/SpamAssassin/Bayes/CombineChi.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Plugin/DNSEval.pm >blib/lib/Mail/SpamAssassin/Plugin/DNSEval.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin.pm >blib/lib/Mail/SpamAssassin.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/BayesStore.pm >blib/lib/Mail/SpamAssassin/BayesStore.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Plugin/HashBL.pm >blib/lib/Mail/SpamAssassin/Plugin/HashBL.pm
--- spamc/Makefile ---
cd spamc
/usr/local/bin/perl version.h.pl
version.h.pl: creating version.h
--- pm_to_blib ---
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Plugin/URILocalBL.pm >blib/lib/Mail/SpamAssassin/Plugin/URILocalBL.pm
--- build_rules ---
no source directory found: exiting
--- pm_to_blib ---
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Plugin/MIMEHeader.pm >blib/lib/Mail/SpamAssassin/Plugin/MIMEHeader.pm
--- blib/script/sa-check_spamd ---
cp sa-check_spamd blib/script/sa-check_spamd
--- spamc/Makefile ---
./configure --prefix=/usr/local --sysconfdir=/usr/local/etc/mail/spamassassin --datadir=/usr/local/share/spamassassin --enable-ssl=yes
--- blib/script/sa-check_spamd ---
"/usr/local/bin/perl" -MExtUtils::MY -e 'MY->fixin(shift)' -- blib/script/sa-check_spamd
--- pm_to_blib ---
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Plugin/PhishTag.pm >blib/lib/Mail/SpamAssassin/Plugin/PhishTag.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Util/DependencyInfo.pm >blib/lib/Mail/SpamAssassin/Util/DependencyInfo.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Pyzor/Digest/Pieces.pm >blib/lib/Mail/SpamAssassin/Pyzor/Digest/Pieces.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/ArchiveIterator.pm >blib/lib/Mail/SpamAssassin/ArchiveIterator.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Locales.pm >blib/lib/Mail/SpamAssassin/Locales.pm
--- spamc/Makefile ---
checking for gcc... cc
--- pm_to_blib ---
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Plugin/OLEVBMacro.pm >blib/lib/Mail/SpamAssassin/Plugin/OLEVBMacro.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Logger/Syslog.pm >blib/lib/Mail/SpamAssassin/Logger/Syslog.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Plugin/AuthRes.pm >blib/lib/Mail/SpamAssassin/Plugin/AuthRes.pm
--- blib/script/sa-compile ---
--- pm_to_blib ---
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Pyzor/Digest/StripHtml.pm >blib/lib/Mail/SpamAssassin/Pyzor/Digest/StripHtml.pm
--- blib/script/sa-compile ---
cp sa-compile blib/script/sa-compile
"/usr/local/bin/perl" -MExtUtils::MY -e 'MY->fixin(shift)' -- blib/script/sa-compile
--- pm_to_blib ---
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Message/Metadata.pm >blib/lib/Mail/SpamAssassin/Message/Metadata.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/BayesStore/SDBM.pm >blib/lib/Mail/SpamAssassin/BayesStore/SDBM.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Locker/Win32.pm >blib/lib/Mail/SpamAssassin/Locker/Win32.pm
--- spamc/Makefile ---
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
--- pm_to_blib ---
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/BayesStore/DBM.pm >blib/lib/Mail/SpamAssassin/BayesStore/DBM.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/BayesStore/PgSQL.pm >blib/lib/Mail/SpamAssassin/BayesStore/PgSQL.pm
--- spamc/Makefile ---
checking for suffix of executables... 
--- blib/script/sa-awl ---
"/usr/local/bin/perl" -MExtUtils::MY -e 'MY->fixin(shift)' -- blib/script/sa-awl
--- pm_to_blib ---
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Plugin/ReplaceTags.pm >blib/lib/Mail/SpamAssassin/Plugin/ReplaceTags.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Plugin/SpamCop.pm >blib/lib/Mail/SpamAssassin/Plugin/SpamCop.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/AutoWelcomelist.pm >blib/lib/Mail/SpamAssassin/AutoWelcomelist.pm
--- blib/script/sa-learn ---
cp sa-learn blib/script/sa-learn
"/usr/local/bin/perl" -MExtUtils::MY -e 'MY->fixin(shift)' -- blib/script/sa-learn
--- spamc/Makefile ---
checking whether we are cross compiling... no
--- pm_to_blib ---
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/HTML.pm >blib/lib/Mail/SpamAssassin/HTML.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Conf/LDAP.pm >blib/lib/Mail/SpamAssassin/Conf/LDAP.pm
--- spamc/Makefile ---
checking for suffix of object files... o
--- pm_to_blib ---
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Message/Metadata/Received.pm >blib/lib/Mail/SpamAssassin/Message/Metadata/Received.pm
--- spamc/Makefile ---
checking whether the compiler supports GNU C... yes
--- pm_to_blib ---
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/NetSet.pm >blib/lib/Mail/SpamAssassin/NetSet.pm
cp lib/spamassassin-run.pod blib/lib/spamassassin-run.pod
--- spamc/Makefile ---
checking whether cc accepts -g... yes
--- pm_to_blib ---
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Plugin/ExtractText.pm >blib/lib/Mail/SpamAssassin/Plugin/ExtractText.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Locker/UnixNFSSafe.pm >blib/lib/Mail/SpamAssassin/Locker/UnixNFSSafe.pm
--- blib/script/spamassassin ---
cp spamassassin blib/script/spamassassin
"/usr/local/bin/perl" -MExtUtils::MY -e 'MY->fixin(shift)' -- blib/script/spamassassin
--- pm_to_blib ---
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Pyzor.pm >blib/lib/Mail/SpamAssassin/Pyzor.pm
--- spamc/Makefile ---
checking for cc option to enable C11 features... none needed
--- pm_to_blib ---
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Reporter.pm >blib/lib/Mail/SpamAssassin/Reporter.pm
--- spamc/Makefile ---
checking for stdio.h... yes
--- pm_to_blib ---
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Plugin/DecodeShortURLs.pm >blib/lib/Mail/SpamAssassin/Plugin/DecodeShortURLs.pm
--- blib/script/spamd ---
cp spamd/spamd blib/script/spamd
"/usr/local/bin/perl" -MExtUtils::MY -e 'MY->fixin(shift)' -- blib/script/spamd
--- pm_to_blib ---
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/DnsResolver.pm >blib/lib/Mail/SpamAssassin/DnsResolver.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Plugin/DCC.pm >blib/lib/Mail/SpamAssassin/Plugin/DCC.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Plugin/AWL.pm >blib/lib/Mail/SpamAssassin/Plugin/AWL.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Conf/Parser.pm >blib/lib/Mail/SpamAssassin/Conf/Parser.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Plugin/OneLineBodyRuleType.pm >blib/lib/Mail/SpamAssassin/Plugin/OneLineBodyRuleType.pm
--- dynamic ---
--- sa-update ---
"/usr/local/bin/perl" build/preprocessor  -Mvars  -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin"  -DINSTALLSITELIB="/usr/local/lib/perl5/site_perl"  -DCONTACT_ADDRESS="The administrator of that system"  -DRE2C_BIN="re2c" -Msharpbang  -Mconditional  -DPERL_BIN=""/usr/local/bin/perl""  -DPERL_WARN=""  -DPERL_TAINT="" -m755 -isa-update.raw -osa-update
--- pm_to_blib ---
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Plugin/AccessDB.pm >blib/lib/Mail/SpamAssassin/Plugin/AccessDB.pm
--- linkext ---
--- blib/script/sa-update ---
cp sa-update blib/script/sa-update
--- pm_to_blib ---
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Plugin/FromNameSpoof.pm >blib/lib/Mail/SpamAssassin/Plugin/FromNameSpoof.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Plugin/Check.pm >blib/lib/Mail/SpamAssassin/Plugin/Check.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Plugin/AskDNS.pm >blib/lib/Mail/SpamAssassin/Plugin/AskDNS.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Plugin/Razor2.pm >blib/lib/Mail/SpamAssassin/Plugin/Razor2.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Plugin/Bayes.pm >blib/lib/Mail/SpamAssassin/Plugin/Bayes.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Plugin/RelayEval.pm >blib/lib/Mail/SpamAssassin/Plugin/RelayEval.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Util/Progress.pm >blib/lib/Mail/SpamAssassin/Util/Progress.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Bayes/CombineNaiveBayes.pm >blib/lib/Mail/SpamAssassin/Bayes/CombineNaiveBayes.pm
--- spamc/Makefile ---
checking for stdlib.h... yes
--- pm_to_blib ---
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Message/Node.pm >blib/lib/Mail/SpamAssassin/Message/Node.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Plugin/ASN.pm >blib/lib/Mail/SpamAssassin/Plugin/ASN.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Util.pm >blib/lib/Mail/SpamAssassin/Util.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/GeoDB.pm >blib/lib/Mail/SpamAssassin/GeoDB.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Plugin/HTMLEval.pm >blib/lib/Mail/SpamAssassin/Plugin/HTMLEval.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Logger/File.pm >blib/lib/Mail/SpamAssassin/Logger/File.pm
--- blib/script/sa-update ---
"/usr/local/bin/perl" -MExtUtils::MY -e 'MY->fixin(shift)' -- blib/script/sa-update
--- pm_to_blib ---
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/RegistryBoundaries.pm >blib/lib/Mail/SpamAssassin/RegistryBoundaries.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Locker/Flock.pm >blib/lib/Mail/SpamAssassin/Locker/Flock.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Pyzor/Digest.pm >blib/lib/Mail/SpamAssassin/Pyzor/Digest.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Plugin/Rule2XSBody.pm >blib/lib/Mail/SpamAssassin/Plugin/Rule2XSBody.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Plugin/Shortcircuit.pm >blib/lib/Mail/SpamAssassin/Plugin/Shortcircuit.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Plugin/Reuse.pm >blib/lib/Mail/SpamAssassin/Plugin/Reuse.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Locker.pm >blib/lib/Mail/SpamAssassin/Locker.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Plugin/TxRep.pm >blib/lib/Mail/SpamAssassin/Plugin/TxRep.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Plugin/FreeMail.pm >blib/lib/Mail/SpamAssassin/Plugin/FreeMail.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/PerMsgLearner.pm >blib/lib/Mail/SpamAssassin/PerMsgLearner.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Util/TinyRedis.pm >blib/lib/Mail/SpamAssassin/Util/TinyRedis.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/MailingList.pm >blib/lib/Mail/SpamAssassin/MailingList.pm
--- spamc/Makefile ---
checking for string.h... yes
--- pm_to_blib ---
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Plugin/Phishing.pm >blib/lib/Mail/SpamAssassin/Plugin/Phishing.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Plugin/Pyzor.pm >blib/lib/Mail/SpamAssassin/Plugin/Pyzor.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/BayesStore/BDB.pm >blib/lib/Mail/SpamAssassin/BayesStore/BDB.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Plugin/PDFInfo.pm >blib/lib/Mail/SpamAssassin/Plugin/PDFInfo.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Plugin/ImageInfo.pm >blib/lib/Mail/SpamAssassin/Plugin/ImageInfo.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Plugin/WelcomeListSubject.pm >blib/lib/Mail/SpamAssassin/Plugin/WelcomeListSubject.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Plugin/TextCat.pm >blib/lib/Mail/SpamAssassin/Plugin/TextCat.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/BayesStore/MySQL.pm >blib/lib/Mail/SpamAssassin/BayesStore/MySQL.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/SpamdForkScaling.pm >blib/lib/Mail/SpamAssassin/SpamdForkScaling.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Plugin/URIDNSBL.pm >blib/lib/Mail/SpamAssassin/Plugin/URIDNSBL.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Bayes.pm >blib/lib/Mail/SpamAssassin/Bayes.pm
--- spamc/Makefile ---
checking for inttypes.h... yes
--- pm_to_blib ---
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Plugin/AutoLearnThreshold.pm >blib/lib/Mail/SpamAssassin/Plugin/AutoLearnThreshold.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/BayesStore/SQL.pm >blib/lib/Mail/SpamAssassin/BayesStore/SQL.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/DBBasedAddrList.pm >blib/lib/Mail/SpamAssassin/DBBasedAddrList.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Plugin/MIMEEval.pm >blib/lib/Mail/SpamAssassin/Plugin/MIMEEval.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Plugin/HeaderEval.pm >blib/lib/Mail/SpamAssassin/Plugin/HeaderEval.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Plugin/WLBLEval.pm >blib/lib/Mail/SpamAssassin/Plugin/WLBLEval.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Plugin/Test.pm >blib/lib/Mail/SpamAssassin/Plugin/Test.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Plugin/ResourceLimits.pm >blib/lib/Mail/SpamAssassin/Plugin/ResourceLimits.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Client.pm >blib/lib/Mail/SpamAssassin/Client.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/AICache.pm >blib/lib/Mail/SpamAssassin/AICache.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/SubProcBackChannel.pm >blib/lib/Mail/SpamAssassin/SubProcBackChannel.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Util/TieOneStringHash.pm >blib/lib/Mail/SpamAssassin/Util/TieOneStringHash.pm
--- spamc/Makefile ---
checking for stdint.h... yes
--- pm_to_blib ---
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Plugin.pm >blib/lib/Mail/SpamAssassin/Plugin.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Conf.pm >blib/lib/Mail/SpamAssassin/Conf.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Plugin/VBounce.pm >blib/lib/Mail/SpamAssassin/Plugin/VBounce.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Plugin/RelayCountry.pm >blib/lib/Mail/SpamAssassin/Plugin/RelayCountry.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/BayesStore/Redis.pm >blib/lib/Mail/SpamAssassin/BayesStore/Redis.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Logger.pm >blib/lib/Mail/SpamAssassin/Logger.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Plugin/BodyRuleBaseExtractor.pm >blib/lib/Mail/SpamAssassin/Plugin/BodyRuleBaseExtractor.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/SQLBasedAddrList.pm >blib/lib/Mail/SpamAssassin/SQLBasedAddrList.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Pyzor/Client.pm >blib/lib/Mail/SpamAssassin/Pyzor/Client.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Util/ScopedTimer.pm >blib/lib/Mail/SpamAssassin/Util/ScopedTimer.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Plugin/URIEval.pm >blib/lib/Mail/SpamAssassin/Plugin/URIEval.pm
--- spamc/Makefile ---
checking for strings.h... yes
--- pm_to_blib ---
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Message.pm >blib/lib/Mail/SpamAssassin/Message.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Logger/Stderr.pm >blib/lib/Mail/SpamAssassin/Logger/Stderr.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Constants.pm >blib/lib/Mail/SpamAssassin/Constants.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Plugin/AntiVirus.pm >blib/lib/Mail/SpamAssassin/Plugin/AntiVirus.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/PluginHandler.pm >blib/lib/Mail/SpamAssassin/PluginHandler.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Plugin/BodyEval.pm >blib/lib/Mail/SpamAssassin/Plugin/BodyEval.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/PerMsgStatus.pm >blib/lib/Mail/SpamAssassin/PerMsgStatus.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Timeout.pm >blib/lib/Mail/SpamAssassin/Timeout.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Plugin/DMARC.pm >blib/lib/Mail/SpamAssassin/Plugin/DMARC.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/AsyncLoop.pm >blib/lib/Mail/SpamAssassin/AsyncLoop.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Plugin/SPF.pm >blib/lib/Mail/SpamAssassin/Plugin/SPF.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Plugin/HTTPSMismatch.pm >blib/lib/Mail/SpamAssassin/Plugin/HTTPSMismatch.pm
"/usr/local/bin/perl" build/preprocessor -Mconditional -Mvars -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin" <lib/Mail/SpamAssassin/Plugin/URIDetail.pm >blib/lib/Mail/SpamAssassin/Plugin/URIDetail.pm
--- pure_all ---
--- spamc/Makefile ---
checking for sys/stat.h... yes
checking for sys/types.h... yes
checking for unistd.h... yes
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for sys/time.h... yes
checking for syslog.h... yes
checking for unistd.h... (cached) yes
checking for errno.h... yes
checking for sys/errno.h... yes
checking for time.h... yes
checking for sysexits.h... yes
checking for sys/socket.h... yes
checking for netdb.h... yes
checking for netinet/in.h... yes
checking for pwd.h... yes
checking for signal.h... yes
checking for openssl/crypto.h... yes
checking for zlib.h... yes
checking for an ANSI C-conforming const... yes
checking for off_t... yes
checking for pid_t... yes
checking how to run the C preprocessor... cpp
checking for uid_t in sys/types.h... yes
checking for size_t... yes
checking for SHUT_RD... yes
checking for socket in -lsocket... no
checking for CRYPTO_malloc in -lcrypto... yes
checking for SSL_CTX_free in -lssl... yes
checking for connect in -linet... no
checking for t_accept in -lnsl... no
checking for deflate in -lz... yes
checking for dlopen in -ldl... yes
checking for socket... yes
checking for strdup... yes
checking for strtod... yes
checking for strtol... yes
checking for snprintf... yes
checking for shutdown... yes
checking for h_errno... yes
checking for in_addr_t... yes
checking for INADDR_NONE... yes
checking for EX__MAX... yes
checking for EAI_ADDRFAMILY... yes
checking for EAI_SYSTEM... (cached) yes
checking for EAI_NODATA... (cached) yes
configure: creating ./config.status
config.status: creating Makefile
config.status: creating spamc.h
config.status: creating config.h
--- spamc/libspamc.so ---
--- spamc/libsslspamc.so ---
--- spamc/spamc ---
--- spamc/libspamc.so ---
make -f spamc/Makefile spamc/libspamc.so
--- spamc/libsslspamc.so ---
make -f spamc/Makefile spamc/libsslspamc.so
--- spamc/spamc ---
make -f spamc/Makefile spamc/spamc
--- spamc/libspamc.so ---
--- spamc/libspamc.so ---
--- spamc/libsslspamc.so ---
--- spamc/libsslspamc.so ---
--- spamc/spamc ---
--- spamc/spamc ---
--- spamc/libspamc.so ---
cc -DPIC -fPIC spamc/libspamc.c spamc/utils.c  -o spamc/libspamc.so -shared  -L/usr/local/lib/perl5/5.36/mach/CORE -lperl -L/usr/local/lib -fstack-protector-strong -ldl -lz
--- spamc/libsslspamc.so ---
cc -DSPAMC_SSL -O2 -pipe  -I/usr/local/include -fstack-protector-strong -fno-strict-aliasing -DPIC -fPIC spamc/libspamc.c spamc/utils.c  -o spamc/libsslspamc.so -shared  -L/usr/local/lib/perl5/5.36/mach/CORE -lperl -L/usr/local/lib -fstack-protector-strong -lssl -lcrypto -ldl -lz
--- spamc/spamc ---
cc -DSPAMC_SSL -O2 -pipe  -I/usr/local/include -fstack-protector-strong -fno-strict-aliasing -O2 -pipe  -I/usr/local/include -fstack-protector-strong -fno-strict-aliasing spamc/spamc.c spamc/getopt.c spamc/libspamc.c spamc/utils.c  -o spamc/spamc -Wl,-rpath,/usr/local/lib -L/usr/local/lib -fstack-protector-strong -lssl -lcrypto -ldl -lz
--- blib/script/spamc ---
cp spamc/spamc blib/script/spamc
"/usr/local/bin/perl" -MExtUtils::MY -e 'MY->fixin(shift)' -- blib/script/spamc
--- pure_all ---
--- manifypods ---
Manifying 9 pod documents
Manifying 88 pod documents
--- all ---
===>  Staging for spamassassin-4.0.1_1
===>   spamassassin-4.0.1_1 depends on package: p5-Encode-Detect>=0 - found
===>   spamassassin-4.0.1_1 depends on package: p5-HTML-Parser>=3.46 - found
===>   spamassassin-4.0.1_1 depends on package: p5-HTTP-Date>=0 - found
===>   spamassassin-4.0.1_1 depends on package: p5-Net-DNS>=0.63 - found
===>   spamassassin-4.0.1_1 depends on package: p5-NetAddr-IP>=4.010 - found
===>   spamassassin-4.0.1_1 depends on package: p5-Net-CIDR-Lite>=0 - found
===>   spamassassin-4.0.1_1 depends on package: p5-Net-IDN-Encode>=0 - found
===>   spamassassin-4.0.1_1 depends on package: p5-Net-LibIDN>=0 - found
===>   spamassassin-4.0.1_1 depends on package: p5-URI>=0 - found
===>   spamassassin-4.0.1_1 depends on package: p5-Class-XSAccessor>=0 - found
===>   spamassassin-4.0.1_1 depends on package: p5-XString>=0 - found
===>   spamassassin-4.0.1_1 depends on package: p5-IO-Socket-INET6>=0 - not found
===>  Deinstalling for p5-IO-Socket-INET6
===>   p5-IO-Socket-INET6 not installed, skipping
===>  License ART10 GPLv1+ accepted by the user
===>   p5-IO-Socket-INET6-2.73 depends on file: /usr/local/sbin/pkg - found
=> IO-Socket-INET6-2.73.tar.gz doesn't seem to exist in /usr/ports/distfiles/.
=> Attempting to fetch https://cpan.metacpan.org/authors/id/S/SH/SHLOMIF/IO-Socket-INET6-2.73.tar.gz
IO-Socket-INET6-2.73.tar.gz                             27 kB   67 MBps    00s
===> Fetching all distfiles required by p5-IO-Socket-INET6-2.73 for building
===>  Extracting for p5-IO-Socket-INET6-2.73
=> SHA256 Checksum OK for IO-Socket-INET6-2.73.tar.gz.
===>  Patching for p5-IO-Socket-INET6-2.73
===>   p5-IO-Socket-INET6-2.73 depends on package: p5-Socket6>=0.12 - not found
===>  Deinstalling for p5-Socket6
===>   p5-Socket6 not installed, skipping
===>  License BSD3CLAUSE accepted by the user
===>   p5-Socket6-0.29 depends on file: /usr/local/sbin/pkg - found
=> Socket6-0.29.tar.gz doesn't seem to exist in /usr/ports/distfiles/.
=> Attempting to fetch https://cpan.metacpan.org/authors/id/U/UM/UMEMOTO/Socket6-0.29.tar.gz
Socket6-0.29.tar.gz                                     63 kB   13 MBps    00s
===> Fetching all distfiles required by p5-Socket6-0.29 for building
===>  Extracting for p5-Socket6-0.29
=> SHA256 Checksum OK for Socket6-0.29.tar.gz.
===>  Patching for p5-Socket6-0.29
===>  Applying FreeBSD patches for p5-Socket6-0.29 from /usr/ports/net/p5-Socket6/files
===>   p5-Socket6-0.29 depends on package: perl5>=5.36<5.37 - found
===>  Configuring for p5-Socket6-0.29
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 your Perl5 have PL_sv_undef... yes
checking how to run the C preprocessor... cc -E
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for getaddrinfo... yes
checking for getnameinfo... yes
checking for gethostbyname2... yes
checking for getipnodebyname... yes
checking for getipnodebyaddr... yes
checking for inet_pton... yes
checking for inet_ntop... yes
checking for working inet_ntop... yes
checking whether you have sa_len in struct sockaddr... yes
checking whether you have sin6_scope_id in struct sockaddr_in6... yes
checking for socklen_t... yes
configure: creating ./config.status
config.status: creating config.pl
config.status: creating gailookup.pl
config.status: creating config.h
Checking if your kit is complete...
Looks good
Generating a Unix-style Makefile
Writing Makefile for Socket6
Writing MYMETA.yml and MYMETA.json
===>  Building for p5-Socket6-0.29
--- blib/lib/.exists ---
--- blib/arch/.exists ---
--- blib/lib/auto/Socket6/.exists ---
--- blib/arch/auto/Socket6/.exists ---
--- blib/bin/.exists ---
--- blib/script/.exists ---
--- blib/man1/.exists ---
--- blib/man3/.exists ---
--- config ---
--- subdirs ---
--- dynamic ---
--- Socket6.c ---
--- blibdirs ---
--- Socket6.bs ---
--- pm_to_blib ---
--- Socket6.c ---
"/usr/local/bin/perl" "/usr/local/lib/perl5/5.36/ExtUtils/xsubpp" -noprototypes -typemap '/usr/local/lib/perl5/5.36/ExtUtils/typemap'  Socket6.xs > Socket6.xsc
--- config ---
Running Mkbootstrap for Socket6 ()
--- Socket6.bs ---
chmod 644 "Socket6.bs"
--- blib/arch/auto/Socket6/Socket6.bs ---
"/usr/local/bin/perl" -MExtUtils::Command::MM -e 'cp_nonempty' -- Socket6.bs blib/arch/auto/Socket6/Socket6.bs 644
--- pm_to_blib ---
cp Socket6.pm blib/lib/Socket6.pm
--- Socket6.c ---
mv Socket6.xsc Socket6.c
--- Socket6.o ---
cc -c    -O2 -pipe  -fstack-protector-strong -fno-strict-aliasing -O2 -pipe -fstack-protector-strong -fno-strict-aliasing    -DVERSION=\"0.29\"  -DXS_VERSION=\"0.29\" -DPIC -fPIC "-I/usr/local/lib/perl5/5.36/mach/CORE"   Socket6.c
--- blib/arch/auto/Socket6/Socket6.so ---
rm -f blib/arch/auto/Socket6/Socket6.so
cc  -shared  -L/usr/local/lib/perl5/5.36/mach/CORE -lperl -L/usr/local/lib -fstack-protector-strong  Socket6.o  -o blib/arch/auto/Socket6/Socket6.so        
chmod 755 blib/arch/auto/Socket6/Socket6.so
--- dynamic ---
--- linkext ---
--- pure_all ---
--- manifypods ---
Manifying 1 pod document
--- all ---
===>  Staging for p5-Socket6-0.29
===>   p5-Socket6-0.29 depends on package: perl5>=5.36<5.37 - found
===>   Generating temporary packing list
"/usr/local/bin/perl" -MExtUtils::Command::MM -e 'cp_nonempty' -- Socket6.bs blib/arch/auto/Socket6/Socket6.bs 644
Manifying 1 pod document
Files found in blib/arch: installing files in blib/lib into architecture dependent library tree
Installing /usr/ports/net/p5-Socket6/work/stage/usr/local/lib/perl5/site_perl/mach/5.36/auto/Socket6/Socket6.so
Installing /usr/ports/net/p5-Socket6/work/stage/usr/local/lib/perl5/site_perl/mach/5.36/Socket6.pm
Installing /usr/ports/net/p5-Socket6/work/stage/usr/local/lib/perl5/site_perl/man/man3/Socket6.3
====> Compressing man pages (compress-man)
===>  Installing for p5-Socket6-0.29
===>  Checking if p5-Socket6 is already installed
===>   Registering installation for p5-Socket6-0.29 as automatic
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] Installing p5-Socket6-0.29...
===>   p5-IO-Socket-INET6-2.73 depends on package: p5-Socket6>=0.12 - found
===>   Returning to build of p5-IO-Socket-INET6-2.73
===>   p5-IO-Socket-INET6-2.73 depends on package: perl5>=5.36<5.37 - found
===>   p5-IO-Socket-INET6-2.73 depends on package: perl5>=5.36<5.37 - found
===>  Configuring for p5-IO-Socket-INET6-2.73
Checking if your kit is complete...
Looks good
Generating a Unix-style Makefile
Writing Makefile for IO::Socket::INET6
Writing MYMETA.yml and MYMETA.json
===>  Building for p5-IO-Socket-INET6-2.73
--- blib/lib/IO/Socket/.exists ---
--- blib/arch/.exists ---
--- blib/lib/auto/IO/Socket/INET6/.exists ---
--- blib/arch/auto/IO/Socket/INET6/.exists ---
--- blib/bin/.exists ---
--- blib/script/.exists ---
--- blib/man1/.exists ---
--- blib/man3/.exists ---
--- config ---
--- subdirs ---
--- dynamic ---
--- blibdirs ---
--- pm_to_blib ---
--- config ---
--- dynamic ---
--- linkext ---
--- pm_to_blib ---
cp lib/IO/Socket/INET6.pm blib/lib/IO/Socket/INET6.pm
--- pure_all ---
--- manifypods ---
Manifying 1 pod document
--- all ---
===>  Staging for p5-IO-Socket-INET6-2.73
===>   p5-IO-Socket-INET6-2.73 depends on package: p5-Socket6>=0.12 - found
===>   p5-IO-Socket-INET6-2.73 depends on package: perl5>=5.36<5.37 - found
===>   Generating temporary packing list
Manifying 1 pod document
Installing /usr/ports/net/p5-IO-Socket-INET6/work/stage/usr/local/lib/perl5/site_perl/IO/Socket/INET6.pm
Installing /usr/ports/net/p5-IO-Socket-INET6/work/stage/usr/local/lib/perl5/site_perl/man/man3/IO::Socket::INET6.3
====> Compressing man pages (compress-man)
===>  Installing for p5-IO-Socket-INET6-2.73
===>  Checking if p5-IO-Socket-INET6 is already installed
===>   Registering installation for p5-IO-Socket-INET6-2.73 as automatic
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] Installing p5-IO-Socket-INET6-2.73...
===>   spamassassin-4.0.1_1 depends on package: p5-IO-Socket-INET6>=0 - found
===>   Returning to build of spamassassin-4.0.1_1
===>   spamassassin-4.0.1_1 depends on package: re2c>=.12.0 - found
===>   spamassassin-4.0.1_1 depends on package: p5-IO-Socket-SSL>=0 - found
===>   spamassassin-4.0.1_1 depends on package: p5-Mail-DKIM>=0.37 - found
===>   spamassassin-4.0.1_1 depends on package: p5-Crypt-OpenSSL-RSA>=0.26_1 - found
===>   spamassassin-4.0.1_1 depends on package: gnupg1>=1.4.7 - found
===>   spamassassin-4.0.1_1 depends on package: p5-DBD-mysql>=0 - found
===>   spamassassin-4.0.1_1 depends on package: razor-agents>=2.84 - not found
===>  Deinstalling for razor-agents
===>   razor-agents not installed, skipping
===>  License ART20 accepted by the user
===>   razor-agents-2.85 depends on file: /usr/local/sbin/pkg - found
=> razor-agents-2.85.tar.bz2 doesn't seem to exist in /usr/ports/distfiles/.
=> Attempting to fetch https://downloads.sourceforge.net/project/razor/razor-agents/2.85/razor-agents-2.85.tar.bz2
razor-agents-2.85.tar.bz2                               79 kB 1065 kBps    00s
===> Fetching all distfiles required by razor-agents-2.85 for building
===>  Extracting for razor-agents-2.85
=> SHA256 Checksum OK for razor-agents-2.85.tar.bz2.
===>  Patching for razor-agents-2.85
===>   razor-agents-2.85 depends on package: perl5>=5.36<5.37 - found
===>  Applying FreeBSD patches for razor-agents-2.85 from /usr/ports/mail/razor-agents/files
===>   razor-agents-2.85 depends on package: p5-Net-DNS>=0 - found
===>   razor-agents-2.85 depends on package: p5-Digest-SHA1>=0 - not found
===>  Deinstalling for p5-Digest-SHA1
===>   p5-Digest-SHA1 not installed, skipping
===>  License ART10 GPLv1+ accepted by the user
===>   p5-Digest-SHA1-2.13_2 depends on file: /usr/local/sbin/pkg - found
=> Digest-SHA1-2.13.tar.gz doesn't seem to exist in /usr/ports/distfiles/.
=> Attempting to fetch https://cpan.metacpan.org/modules/by-module/Digest/Digest-SHA1-2.13.tar.gz
Digest-SHA1-2.13.tar.gz                                 38 kB 5846 kBps    00s
===> Fetching all distfiles required by p5-Digest-SHA1-2.13_2 for building
===>  Extracting for p5-Digest-SHA1-2.13_2
=> SHA256 Checksum OK for Digest-SHA1-2.13.tar.gz.
===>  Patching for p5-Digest-SHA1-2.13_2
===>   p5-Digest-SHA1-2.13_2 depends on package: perl5>=5.36<5.37 - found
===>  Configuring for p5-Digest-SHA1-2.13_2
Checking if your kit is complete...
Looks good
Generating a Unix-style Makefile
Writing Makefile for Digest::SHA1
Writing MYMETA.yml and MYMETA.json
===>  Building for p5-Digest-SHA1-2.13_2
--- blib/lib/Digest/.exists ---
--- blib/arch/.exists ---
--- blib/lib/auto/Digest/SHA1/.exists ---
--- blib/arch/auto/Digest/SHA1/.exists ---
--- blib/bin/.exists ---
--- blib/script/.exists ---
--- blib/man1/.exists ---
--- blib/man3/.exists ---
--- config ---
--- subdirs ---
--- dynamic ---
--- SHA1.c ---
--- blibdirs ---
--- SHA1.bs ---
--- pm_to_blib ---
--- SHA1.c ---
"/usr/local/bin/perl" "/usr/local/lib/perl5/5.36/ExtUtils/xsubpp"  -typemap '/usr/local/lib/perl5/5.36/ExtUtils/typemap' -typemap '/usr/ports/security/p5-Digest-SHA1/work/Digest-SHA1-2.13/typemap'  SHA1.xs > SHA1.xsc
Running Mkbootstrap for SHA1 ()
--- config ---
--- SHA1.bs ---
chmod 644 "SHA1.bs"
--- blib/arch/auto/Digest/SHA1/SHA1.bs ---
"/usr/local/bin/perl" -MExtUtils::Command::MM -e 'cp_nonempty' -- SHA1.bs blib/arch/auto/Digest/SHA1/SHA1.bs 644
--- pm_to_blib ---
cp SHA1.pm blib/lib/Digest/SHA1.pm
--- SHA1.c ---
mv SHA1.xsc SHA1.c
--- SHA1.o ---
cc -c    -O2 -pipe  -fstack-protector-strong -fno-strict-aliasing -O2 -pipe -fstack-protector-strong -fno-strict-aliasing    -DVERSION=\"2.13\"  -DXS_VERSION=\"2.13\" -DPIC -fPIC "-I/usr/local/lib/perl5/5.36/mach/CORE"   SHA1.c
--- blib/arch/auto/Digest/SHA1/SHA1.so ---
rm -f blib/arch/auto/Digest/SHA1/SHA1.so
cc  -shared  -L/usr/local/lib/perl5/5.36/mach/CORE -lperl -L/usr/local/lib -fstack-protector-strong  SHA1.o  -o blib/arch/auto/Digest/SHA1/SHA1.so        
chmod 755 blib/arch/auto/Digest/SHA1/SHA1.so
--- dynamic ---
--- linkext ---
--- pure_all ---
--- manifypods ---
Manifying 1 pod document
--- all ---
===>  Staging for p5-Digest-SHA1-2.13_2
===>   p5-Digest-SHA1-2.13_2 depends on package: perl5>=5.36<5.37 - found
===>   Generating temporary packing list
"/usr/local/bin/perl" -MExtUtils::Command::MM -e 'cp_nonempty' -- SHA1.bs blib/arch/auto/Digest/SHA1/SHA1.bs 644
Manifying 1 pod document
Files found in blib/arch: installing files in blib/lib into architecture dependent library tree
Installing /usr/ports/security/p5-Digest-SHA1/work/stage/usr/local/lib/perl5/site_perl/mach/5.36/auto/Digest/SHA1/SHA1.so
Installing /usr/ports/security/p5-Digest-SHA1/work/stage/usr/local/lib/perl5/site_perl/mach/5.36/Digest/SHA1.pm
Installing /usr/ports/security/p5-Digest-SHA1/work/stage/usr/local/lib/perl5/site_perl/man/man3/Digest::SHA1.3
/usr/bin/strip /usr/ports/security/p5-Digest-SHA1/work/stage/usr/local/lib/perl5/site_perl/mach/5.36/auto/Digest/SHA1/SHA1.so
====> Compressing man pages (compress-man)
===>  Installing for p5-Digest-SHA1-2.13_2
===>  Checking if p5-Digest-SHA1 is already installed
===>   Registering installation for p5-Digest-SHA1-2.13_2 as automatic
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] Installing p5-Digest-SHA1-2.13_2...
===>   razor-agents-2.85 depends on package: p5-Digest-SHA1>=0 - found
===>   Returning to build of razor-agents-2.85
===>   razor-agents-2.85 depends on package: p5-URI>=0 - found
===>   razor-agents-2.85 depends on package: perl5>=5.36<5.37 - found
===>  Configuring for razor-agents-2.85
Warning: NAME must be a package name
Checking if your kit is complete...
Looks good
Checking if your kit is complete...
Looks good
Writing MYMETA.yml and MYMETA.json
Generating a Unix-style Makefile
Writing Makefile for razor-agents
Writing MYMETA.yml and MYMETA.json
===>  Building for razor-agents-2.85
cp lib/Razor2/Client/Agent.pm blib/lib/Razor2/Client/Agent.pm
cp lib/Razor2/Preproc/Manager.pm blib/lib/Razor2/Preproc/Manager.pm
cp lib/Razor2/Signature/Whiplash.pm blib/lib/Razor2/Signature/Whiplash.pm
cp lib/Razor2/Engine/VR8.pm blib/lib/Razor2/Engine/VR8.pm
cp lib/Razor2/Syslog.pm blib/lib/Razor2/Syslog.pm
AutoSplitting blib/lib/Razor2/Syslog.pm (blib/lib/auto/Razor2/Syslog)
cp lib/Razor2/Preproc/deHTML.pm blib/lib/Razor2/Preproc/deHTML.pm
cp lib/Razor2/Preproc/enBase64.pm blib/lib/Razor2/Preproc/enBase64.pm
cp lib/Razor2/Preproc/deNewline.pm blib/lib/Razor2/Preproc/deNewline.pm
cp lib/Razor2/Logger.pm blib/lib/Razor2/Logger.pm
cp lib/Razor2/Preproc/deBase64.pm blib/lib/Razor2/Preproc/deBase64.pm
cp lib/Razor2/Signature/Ephemeral.pm blib/lib/Razor2/Signature/Ephemeral.pm
cp lib/Razor2/Preproc/deQP.pm blib/lib/Razor2/Preproc/deQP.pm
cp lib/Razor2/String.pm blib/lib/Razor2/String.pm
cp lib/Razor2/Client/Engine.pm blib/lib/Razor2/Client/Engine.pm
cp lib/Razor2/Preproc/deHTML_comment.pm blib/lib/Razor2/Preproc/deHTML_comment.pm
cp lib/Razor2/Errorhandler.pm blib/lib/Razor2/Errorhandler.pm
cp lib/Razor2/Client/Config.pm blib/lib/Razor2/Client/Config.pm
cp lib/Razor2/Client/Version.pm blib/lib/Razor2/Client/Version.pm
cp lib/Razor2/Client/Core.pm blib/lib/Razor2/Client/Core.pm
cp deHTMLxs.pm ../blib/lib/Razor2/Preproc/deHTMLxs.pm
AutoSplitting ../blib/lib/Razor2/Preproc/deHTMLxs.pm (../blib/lib/auto/Razor2/Preproc/deHTMLxs)
Running Mkbootstrap for deHTMLxs ()
chmod 644 "deHTMLxs.bs"
"/usr/local/bin/perl" -MExtUtils::Command::MM -e 'cp_nonempty' -- deHTMLxs.bs ../blib/arch/auto/Razor2/Preproc/deHTMLxs/deHTMLxs.bs 644
cc -c    -O2 -pipe  -fstack-protector-strong -fno-strict-aliasing -O2 -pipe -fstack-protector-strong -fno-strict-aliasing    -DVERSION=\"2.18\"  -DXS_VERSION=\"2.18\" -DPIC -fPIC "-I/usr/local/lib/perl5/5.36/mach/CORE"   _deHTMLxs.c
"/usr/local/bin/perl" "/usr/local/lib/perl5/5.36/ExtUtils/xsubpp"  -typemap '/usr/local/lib/perl5/5.36/ExtUtils/typemap' -typemap '/usr/ports/mail/razor-agents/work/razor-agents-2.85/Razor2-Preproc-deHTMLxs/typemap'  deHTMLxs.xs > deHTMLxs.xsc
mv deHTMLxs.xsc deHTMLxs.c
cc -c    -O2 -pipe  -fstack-protector-strong -fno-strict-aliasing -O2 -pipe -fstack-protector-strong -fno-strict-aliasing    -DVERSION=\"2.18\"  -DXS_VERSION=\"2.18\" -DPIC -fPIC "-I/usr/local/lib/perl5/5.36/mach/CORE"   deHTMLxs.c
rm -f ../blib/arch/auto/Razor2/Preproc/deHTMLxs/deHTMLxs.so
cc  -shared  -L/usr/local/lib/perl5/5.36/mach/CORE -lperl -L/usr/local/lib -fstack-protector-strong  _deHTMLxs.o deHTMLxs.o  -o ../blib/arch/auto/Razor2/Preproc/deHTMLxs/deHTMLxs.so        
chmod 755 ../blib/arch/auto/Razor2/Preproc/deHTMLxs/deHTMLxs.so
Manifying 1 pod document
cp bin/razor-admin blib/script/razor-admin
"/usr/local/bin/perl" -MExtUtils::MY -e 'MY->fixin(shift)' -- blib/script/razor-admin
cp bin/razor-check blib/script/razor-check
"/usr/local/bin/perl" -MExtUtils::MY -e 'MY->fixin(shift)' -- blib/script/razor-check
cp bin/razor-client blib/script/razor-client
"/usr/local/bin/perl" -MExtUtils::MY -e 'MY->fixin(shift)' -- blib/script/razor-client
cp bin/razor-report blib/script/razor-report
"/usr/local/bin/perl" -MExtUtils::MY -e 'MY->fixin(shift)' -- blib/script/razor-report
cp bin/razor-revoke blib/script/razor-revoke
"/usr/local/bin/perl" -MExtUtils::MY -e 'MY->fixin(shift)' -- blib/script/razor-revoke
"/usr/local/bin/perl" "-MExtUtils::Command::MM" -e pod2man "--"  docs/razor-agent.conf.pod  blib/man5/razor-agent.conf.5  docs/razor-agents.pod  blib/man5/razor-agents.5  docs/razor-whitelist.pod  blib/man5/razor-whitelist.5
Manifying 3 pod documents
Manifying 4 pod documents
Manifying 2 pod documents
===>  Staging for razor-agents-2.85
===>   razor-agents-2.85 depends on package: p5-Net-DNS>=0 - found
===>   razor-agents-2.85 depends on package: p5-Digest-SHA1>=0 - found
===>   razor-agents-2.85 depends on package: p5-URI>=0 - found
===>   razor-agents-2.85 depends on package: perl5>=5.36<5.37 - found
===>   Generating temporary packing list
"/usr/local/bin/perl" -MExtUtils::Command::MM -e 'cp_nonempty' -- deHTMLxs.bs ../blib/arch/auto/Razor2/Preproc/deHTMLxs/deHTMLxs.bs 644
Manifying 1 pod document
"/usr/local/bin/perl" "-MExtUtils::Command::MM" -e pod2man "--"  docs/razor-agent.conf.pod  blib/man5/razor-agent.conf.5  docs/razor-agents.pod  blib/man5/razor-agents.5  docs/razor-whitelist.pod  blib/man5/razor-whitelist.5
Manifying 3 pod documents
Manifying 4 pod documents
Manifying 2 pod documents
Files found in blib/arch: installing files in blib/lib into architecture dependent library tree
Installing /usr/ports/mail/razor-agents/work/stage/usr/local/lib/perl5/site_perl/mach/5.36/auto/Razor2/Preproc/deHTMLxs/deHTMLxs.so
Installing /usr/ports/mail/razor-agents/work/stage/usr/local/lib/perl5/site_perl/mach/5.36/Razor2/String.pm
Installing /usr/ports/mail/razor-agents/work/stage/usr/local/lib/perl5/site_perl/mach/5.36/Razor2/Syslog.pm
Installing /usr/ports/mail/razor-agents/work/stage/usr/local/lib/perl5/site_perl/mach/5.36/Razor2/Logger.pm
Installing /usr/ports/mail/razor-agents/work/stage/usr/local/lib/perl5/site_perl/mach/5.36/Razor2/Errorhandler.pm
Installing /usr/ports/mail/razor-agents/work/stage/usr/local/lib/perl5/site_perl/mach/5.36/Razor2/Engine/VR8.pm
Installing /usr/ports/mail/razor-agents/work/stage/usr/local/lib/perl5/site_perl/mach/5.36/Razor2/Client/Core.pm
Installing /usr/ports/mail/razor-agents/work/stage/usr/local/lib/perl5/site_perl/mach/5.36/Razor2/Client/Agent.pm
Installing /usr/ports/mail/razor-agents/work/stage/usr/local/lib/perl5/site_perl/mach/5.36/Razor2/Client/Engine.pm
Installing /usr/ports/mail/razor-agents/work/stage/usr/local/lib/perl5/site_perl/mach/5.36/Razor2/Client/Config.pm
Installing /usr/ports/mail/razor-agents/work/stage/usr/local/lib/perl5/site_perl/mach/5.36/Razor2/Client/Version.pm
Installing /usr/ports/mail/razor-agents/work/stage/usr/local/lib/perl5/site_perl/mach/5.36/Razor2/Preproc/deHTMLxs.pm
Installing /usr/ports/mail/razor-agents/work/stage/usr/local/lib/perl5/site_perl/mach/5.36/Razor2/Preproc/deHTML_comment.pm
Installing /usr/ports/mail/razor-agents/work/stage/usr/local/lib/perl5/site_perl/mach/5.36/Razor2/Preproc/deBase64.pm
Installing /usr/ports/mail/razor-agents/work/stage/usr/local/lib/perl5/site_perl/mach/5.36/Razor2/Preproc/deHTML.pm
Installing /usr/ports/mail/razor-agents/work/stage/usr/local/lib/perl5/site_perl/mach/5.36/Razor2/Preproc/enBase64.pm
Installing /usr/ports/mail/razor-agents/work/stage/usr/local/lib/perl5/site_perl/mach/5.36/Razor2/Preproc/deQP.pm
Installing /usr/ports/mail/razor-agents/work/stage/usr/local/lib/perl5/site_perl/mach/5.36/Razor2/Preproc/Manager.pm
Installing /usr/ports/mail/razor-agents/work/stage/usr/local/lib/perl5/site_perl/mach/5.36/Razor2/Preproc/deNewline.pm
Installing /usr/ports/mail/razor-agents/work/stage/usr/local/lib/perl5/site_perl/mach/5.36/Razor2/Signature/Whiplash.pm
Installing /usr/ports/mail/razor-agents/work/stage/usr/local/lib/perl5/site_perl/mach/5.36/Razor2/Signature/Ephemeral.pm
Installing /usr/ports/mail/razor-agents/work/stage/usr/local/lib/perl5/site_perl/mach/5.36/auto/Razor2/Preproc/deHTMLxs/autosplit.ix
Installing /usr/ports/mail/razor-agents/work/stage/usr/local/lib/perl5/site_perl/mach/5.36/auto/Razor2/Syslog/autosplit.ix
Installing /usr/ports/mail/razor-agents/work/stage/usr/local/lib/perl5/site_perl/man/man1/razor-revoke.1
Installing /usr/ports/mail/razor-agents/work/stage/usr/local/lib/perl5/site_perl/man/man1/razor-check.1
Installing /usr/ports/mail/razor-agents/work/stage/usr/local/lib/perl5/site_perl/man/man1/razor-admin.1
Installing /usr/ports/mail/razor-agents/work/stage/usr/local/lib/perl5/site_perl/man/man1/razor-report.1
Installing /usr/ports/mail/razor-agents/work/stage/usr/local/lib/perl5/site_perl/man/man3/Razor2::Errorhandler.3
Installing /usr/ports/mail/razor-agents/work/stage/usr/local/lib/perl5/site_perl/man/man3/Razor2::Preproc::deHTMLxs.3
Installing /usr/ports/mail/razor-agents/work/stage/usr/local/lib/perl5/site_perl/man/man3/Razor2::Syslog.3
Installing /usr/ports/mail/razor-agents/work/stage/usr/local/share/man/man5/razor-agent.conf.5
Installing /usr/ports/mail/razor-agents/work/stage/usr/local/share/man/man5/razor-whitelist.5
Installing /usr/ports/mail/razor-agents/work/stage/usr/local/share/man/man5/razor-agents.5
Installing /usr/ports/mail/razor-agents/work/stage/usr/local/bin/razor-admin
Installing /usr/ports/mail/razor-agents/work/stage/usr/local/bin/razor-revoke
Installing /usr/ports/mail/razor-agents/work/stage/usr/local/bin/razor-check
Installing /usr/ports/mail/razor-agents/work/stage/usr/local/bin/razor-report
Installing /usr/ports/mail/razor-agents/work/stage/usr/local/bin/razor-client
====> Compressing man pages (compress-man)
===>  Installing for razor-agents-2.85
===>  Checking if razor-agents is already installed
===>   Registering installation for razor-agents-2.85 as automatic
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] Installing razor-agents-2.85...
===>   spamassassin-4.0.1_1 depends on package: razor-agents>=2.84 - found
===>   Returning to build of spamassassin-4.0.1_1
===>   spamassassin-4.0.1_1 depends on package: p5-Digest-SHA1>=2.13 - found
===>   spamassassin-4.0.1_1 depends on package: p5-Mail-SPF>=0 - found
===>   spamassassin-4.0.1_1 depends on package: p5-IO-Socket-SSL>=0 - found
===>   spamassassin-4.0.1_1 depends on file: /usr/local/lib/libcrypto.so.12 - found
===>   spamassassin-4.0.1_1 depends on package: perl5>=5.36<5.37 - found
===>   Generating temporary packing list
install  -s -m 0644 /usr/ports/mail/spamassassin/work/Mail-SpamAssassin-4.0.1/spamc/libspamc.so /usr/ports/mail/spamassassin/work/stage/usr/local/lib/libspamc.so.0
/bin/ln -sf libspamc.so.0 /usr/ports/mail/spamassassin/work/stage/usr/local/lib/libspamc.so
install  -s -m 0644 /usr/ports/mail/spamassassin/work/Mail-SpamAssassin-4.0.1/spamc/libsslspamc.so /usr/ports/mail/spamassassin/work/stage/usr/local/lib/libsslspamc.so.0
/bin/ln -sf libsslspamc.so.0 /usr/ports/mail/spamassassin/work/stage/usr/local/lib/libsslspamc.so
install  -m 0644 /usr/ports/mail/spamassassin/work/Mail-SpamAssassin-4.0.1/spamc/libspamc.h /usr/ports/mail/spamassassin/work/stage/usr/local/include
===> Creating groups.
===> Creating users
"/usr/local/bin/perl" build/mkrules --exit_on_no_src --src rulesrc --out rules --manifest MANIFEST --manifestskip MANIFEST.SKIP
no source directory found: exiting
"/usr/local/bin/perl" build/preprocessor  -Mvars  -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin"  -DINSTALLSITELIB="/usr/local/lib/perl5/site_perl"  -DCONTACT_ADDRESS="The administrator of that system"  -DRE2C_BIN="re2c" -Msharpbang  -Mconditional  -DPERL_BIN=""/usr/local/bin/perl""  -DPERL_WARN=""  -DPERL_TAINT="" -m755 -isa-update.raw -osa-update
cp sa-update blib/script/sa-update
"/usr/local/bin/perl" -MExtUtils::MY -e 'MY->fixin(shift)' -- blib/script/sa-update
Manifying 9 pod documents
Manifying 88 pod documents
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/spamassassin-run.pod
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/RegistryBoundaries.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Locales.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Conf.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Message.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/AutoWelcomelist.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Locker.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Bayes.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/SQLBasedAddrList.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/PerMsgLearner.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Util.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/PluginHandler.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/SpamdForkScaling.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/DBBasedAddrList.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/BayesStore.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/MailingList.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/ArchiveIterator.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Timeout.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/DnsResolver.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Logger.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/PersistentAddrList.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/AsyncLoop.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Reporter.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Dns.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Client.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/NetSet.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Constants.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Plugin.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/AICache.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/HTML.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/SubProcBackChannel.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/PerMsgStatus.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Pyzor.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/GeoDB.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Plugin/Razor2.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Plugin/DKIM.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Plugin/ReplaceTags.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Plugin/ResourceLimits.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Plugin/Rule2XSBody.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Plugin/DMARC.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Plugin/WLBLEval.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Plugin/VBounce.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Plugin/TextCat.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Plugin/ASN.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Plugin/AccessDB.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Plugin/HTMLEval.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Plugin/FreeMail.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Plugin/OneLineBodyRuleType.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Plugin/AuthRes.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Plugin/HeaderEval.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Plugin/URIEval.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Plugin/AskDNS.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Plugin/Check.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Plugin/Reuse.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Plugin/TxRep.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Plugin/DNSEval.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Plugin/MIMEHeader.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Plugin/AutoLearnThreshold.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Plugin/HashBL.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Plugin/Pyzor.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Plugin/HTTPSMismatch.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Plugin/Test.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Plugin/FromNameSpoof.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Plugin/Phishing.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Plugin/PDFInfo.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Plugin/DCC.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Plugin/RelayEval.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Plugin/PhishTag.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Plugin/ImageInfo.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Plugin/Bayes.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Plugin/OLEVBMacro.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Plugin/URIDNSBL.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Plugin/BodyRuleBaseExtractor.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Plugin/ExtractText.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Plugin/MIMEEval.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Plugin/WelcomeListSubject.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Plugin/Shortcircuit.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Plugin/SPF.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Plugin/RelayCountry.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Plugin/URILocalBL.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Plugin/URIDetail.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Plugin/SpamCop.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Plugin/DecodeShortURLs.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Plugin/BodyEval.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Plugin/AntiVirus.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Plugin/AWL.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Locker/UnixNFSSafe.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Locker/Win32.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Locker/Flock.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Pyzor/Digest.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Pyzor/Client.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Pyzor/Digest/Pieces.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Pyzor/Digest/StripHtml.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Util/Progress.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Util/DependencyInfo.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Util/TieOneStringHash.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Util/TinyRedis.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Util/ScopedTimer.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Message/Node.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Message/Metadata.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Message/Metadata/Received.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/BayesStore/SQL.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/BayesStore/PgSQL.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/BayesStore/DBM.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/BayesStore/BDB.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/BayesStore/SDBM.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/BayesStore/MySQL.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/BayesStore/Redis.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Conf/LDAP.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Conf/Parser.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Conf/SQL.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Bayes/CombineChi.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Bayes/CombineNaiveBayes.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Logger/File.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Logger/Stderr.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Logger/Syslog.pm
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man1/spamc.1
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man1/sa-awl.1
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man1/spamassassin.1
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man1/spamd.1
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man1/spamassassin-run.1
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man1/sa-learn.1
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man1/sa-compile.1
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man1/sa-check_spamd.1
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man1/sa-update.1
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::ArchiveIterator.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Plugin::Reuse.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::BayesStore::BDB.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::DnsResolver.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Pyzor::Digest.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Plugin::OneLineBodyRuleType.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Plugin::DecodeShortURLs.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Plugin::AWL.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Plugin::FreeMail.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Plugin::ASN.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Conf::Parser.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Plugin::TxRep.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Pyzor::Digest::StripHtml.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Message.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Pyzor::Client.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Conf::LDAP.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Plugin::URIDNSBL.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Plugin::AutoLearnThreshold.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Plugin::TextCat.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::PersistentAddrList.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Plugin::Shortcircuit.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Plugin::DNSEval.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::AsyncLoop.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::BayesStore::SQL.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Plugin::RelayCountry.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Plugin::Rule2XSBody.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Util.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Plugin::SPF.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Plugin::HashBL.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Plugin::DCC.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Pyzor.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Plugin::AskDNS.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::BayesStore::PgSQL.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Plugin::Test.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Plugin::ResourceLimits.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::BayesStore::MySQL.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Logger::File.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Timeout.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Plugin::BodyRuleBaseExtractor.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Util::DependencyInfo.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Plugin::DKIM.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Plugin::DMARC.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Plugin::PDFInfo.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Plugin::URIDetail.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Plugin::Bayes.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Conf::SQL.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::PerMsgLearner.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Plugin::VBounce.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::SQLBasedAddrList.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Plugin::Phishing.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::BayesStore.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Message::Metadata.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Plugin::ReplaceTags.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Plugin::FromNameSpoof.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::AICache.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Logger::Stderr.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Logger.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Plugin::OLEVBMacro.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Plugin::AntiVirus.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::BayesStore::Redis.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Util::Progress.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Plugin::PhishTag.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::PluginHandler.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Message::Node.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::SubProcBackChannel.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Plugin::URILocalBL.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Plugin::AuthRes.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Plugin::Razor2.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Plugin::MIMEHeader.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Logger::Syslog.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/spamassassin-run.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Plugin::Pyzor.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Plugin::SpamCop.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Pyzor::Digest::Pieces.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Plugin::WelcomeListSubject.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::PerMsgStatus.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Conf.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::AutoWelcomelist.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Plugin::ExtractText.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Plugin::AccessDB.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Bayes.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Client.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Plugin::MIMEEval.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Plugin::Check.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::GeoDB.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::Plugin.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/lib/perl5/site_perl/man/man3/Mail::SpamAssassin::RegistryBoundaries.3
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/bin/sa-compile
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/bin/spamc
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/bin/sa-update
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/bin/sa-awl
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/bin/sa-check_spamd
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/bin/sa-learn
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/bin/spamd
Installing /usr/ports/mail/spamassassin/work/stage/usr/local/bin/spamassassin
"/usr/local/bin/perl" -MExtUtils::Command -e 'mkpath' -- /usr/ports/mail/spamassassin/work/stage/usr/local/etc/mail/spamassassin
"/usr/local/bin/perl" -MFile::Copy -e "copy(q[rules/local.cf], q[/usr/ports/mail/spamassassin/work/stage/usr/local/etc/mail/spamassassin/local.cf.sample]) unless -f q[/usr/ports/mail/spamassassin/work/stage/usr/local/etc/mail/spamassassin/local.cf.sample]"
"/usr/local/bin/perl" -MFile::Copy -e "copy(q[rules/init.pre], q[/usr/ports/mail/spamassassin/work/stage/usr/local/etc/mail/spamassassin/init.pre.sample]) unless -f q[/usr/ports/mail/spamassassin/work/stage/usr/local/etc/mail/spamassassin/init.pre.sample]"
"/usr/local/bin/perl" -MFile::Copy -e "copy(q[rules/v310.pre], q[/usr/ports/mail/spamassassin/work/stage/usr/local/etc/mail/spamassassin/v310.pre.sample]) unless -f q[/usr/ports/mail/spamassassin/work/stage/usr/local/etc/mail/spamassassin/v310.pre.sample]"
"/usr/local/bin/perl" -MFile::Copy -e "copy(q[rules/v312.pre], q[/usr/ports/mail/spamassassin/work/stage/usr/local/etc/mail/spamassassin/v312.pre.sample]) unless -f q[/usr/ports/mail/spamassassin/work/stage/usr/local/etc/mail/spamassassin/v312.pre.sample]"
"/usr/local/bin/perl" -MFile::Copy -e "copy(q[rules/v320.pre], q[/usr/ports/mail/spamassassin/work/stage/usr/local/etc/mail/spamassassin/v320.pre.sample]) unless -f q[/usr/ports/mail/spamassassin/work/stage/usr/local/etc/mail/spamassassin/v320.pre.sample]"
"/usr/local/bin/perl" -MFile::Copy -e "copy(q[rules/v330.pre], q[/usr/ports/mail/spamassassin/work/stage/usr/local/etc/mail/spamassassin/v330.pre.sample]) unless -f q[/usr/ports/mail/spamassassin/work/stage/usr/local/etc/mail/spamassassin/v330.pre.sample]"
"/usr/local/bin/perl" -MFile::Copy -e "copy(q[rules/v340.pre], q[/usr/ports/mail/spamassassin/work/stage/usr/local/etc/mail/spamassassin/v340.pre.sample]) unless -f q[/usr/ports/mail/spamassassin/work/stage/usr/local/etc/mail/spamassassin/v340.pre.sample]"
"/usr/local/bin/perl" -MFile::Copy -e "copy(q[rules/v341.pre], q[/usr/ports/mail/spamassassin/work/stage/usr/local/etc/mail/spamassassin/v341.pre.sample]) unless -f q[/usr/ports/mail/spamassassin/work/stage/usr/local/etc/mail/spamassassin/v341.pre.sample]"
"/usr/local/bin/perl" -MFile::Copy -e "copy(q[rules/v342.pre], q[/usr/ports/mail/spamassassin/work/stage/usr/local/etc/mail/spamassassin/v342.pre.sample]) unless -f q[/usr/ports/mail/spamassassin/work/stage/usr/local/etc/mail/spamassassin/v342.pre.sample]"
"/usr/local/bin/perl" -MFile::Copy -e "copy(q[rules/v343.pre], q[/usr/ports/mail/spamassassin/work/stage/usr/local/etc/mail/spamassassin/v343.pre.sample]) unless -f q[/usr/ports/mail/spamassassin/work/stage/usr/local/etc/mail/spamassassin/v343.pre.sample]"
"/usr/local/bin/perl" -MFile::Copy -e "copy(q[rules/v400.pre], q[/usr/ports/mail/spamassassin/work/stage/usr/local/etc/mail/spamassassin/v400.pre.sample]) unless -f q[/usr/ports/mail/spamassassin/work/stage/usr/local/etc/mail/spamassassin/v400.pre.sample]"
"/usr/local/bin/perl" -MFile::Copy -e "copy(q[rules/v401.pre], q[/usr/ports/mail/spamassassin/work/stage/usr/local/etc/mail/spamassassin/v401.pre.sample]) unless -f q[/usr/ports/mail/spamassassin/work/stage/usr/local/etc/mail/spamassassin/v401.pre.sample]"
"/usr/local/bin/perl" -MExtUtils::Command -e 'mkpath' -- /usr/ports/mail/spamassassin/work/stage/usr/local/share/spamassassin
"/usr/local/bin/perl" -e "map unlink, </usr/ports/mail/spamassassin/work/stage/usr/local/share/spamassassin/*>"
"/usr/local/bin/perl" build/preprocessor -Mvars  -DVERSION="4.000001"  -DPREFIX="/usr/local"  -DDEF_RULES_DIR="/usr/local/share/spamassassin"  -DLOCAL_RULES_DIR="/usr/local/etc/mail/spamassassin"  -DLOCAL_STATE_DIR="/var/db/spamassassin"  -DINSTALLSITELIB="/usr/local/lib/perl5/site_perl"  -DCONTACT_ADDRESS="The administrator of that system"  -DRE2C_BIN="re2c" -m644 -Irules -O/usr/ports/mail/spamassassin/work/stage/usr/local/share/spamassassin user_prefs.template languages sa-update-pubkey.txt
chmod 755 /usr/ports/mail/spamassassin/work/stage/usr/local/share/spamassassin
/usr/bin/strip /usr/ports/mail/spamassassin/work/stage/usr/local/bin/spamc
install  -m 0644 /usr/ports/mail/spamassassin/work/Mail-SpamAssassin-4.0.1/CREDITS /usr/ports/mail/spamassassin/work/Mail-SpamAssassin-4.0.1/Changes /usr/ports/mail/spamassassin/work/Mail-SpamAssassin-4.0.1/INSTALL /usr/ports/mail/spamassassin/work/Mail-SpamAssassin-4.0.1/NOTICE /usr/ports/mail/spamassassin/work/Mail-SpamAssassin-4.0.1/PACKAGING /usr/ports/mail/spamassassin/work/Mail-SpamAssassin-4.0.1/README /usr/ports/mail/spamassassin/work/Mail-SpamAssassin-4.0.1/TRADEMARK /usr/ports/mail/spamassassin/work/Mail-SpamAssassin-4.0.1/UPGRADE /usr/ports/mail/spamassassin/work/Mail-SpamAssassin-4.0.1/USAGE /usr/ports/mail/spamassassin/work/Mail-SpamAssassin-4.0.1/procmailrc.example /usr/ports/mail/spamassassin/work/stage/usr/local/share/doc/spamassassin
(cd /usr/ports/mail/spamassassin/work/Mail-SpamAssassin-4.0.1 && /bin/sh -c '(/usr/bin/find -Ed $1 $3 | /usr/bin/cpio -dumpl $2 >/dev/null 2>&1) &&  /usr/bin/find -Ed $1 $3 \(   -type d -exec /bin/sh -c '\''cd '\''$2'\'' && chmod 755 "$@"'\'' . {} +  -o -type f -exec /bin/sh -c '\''cd '\''$2'\'' && chmod 0644 "$@"'\'' . {} + \)' COPYTREE_SHARE "sql ldap" /usr/ports/mail/spamassassin/work/stage/usr/local/share/doc/spamassassin)
====> Compressing man pages (compress-man)
===> Staging rc.d startup script(s)
===>  Installing for spamassassin-4.0.1_1
===>  Checking if spamassassin is already installed
===>   Registering installation for spamassassin-4.0.1_1
[mailhub-potluck-amd64-14_0.vsf00002.cpt.za.honeyguide.net] Installing spamassassin-4.0.1_1...
===> Creating groups.
Creating group 'spamd' with gid '58'.
===> Creating users
Creating user 'spamd' with uid '58'.
===> Creating homedir(s)
You should complete the following post-installation tasks:

	1) Read /usr/local/share/doc/spamassassin/INSTALL
	   and /usr/local/share/doc/spamassassin/UPGRADE
	   BEFORE enabling SpamAssassin for important changes

	2) Edit the configuration in /usr/local/etc/mail/spamassassin,
	   in particular /usr/local/etc/mail/spamassassin/init.pre
	   You may get lots of annoying (but harmless) error messages
	   if you skip this step.

	3) To run spamd, add the following to /etc/rc.conf:
	   spamd_enable="YES"

        4) If this is a new installation, you should run sa-update
           and sa-compile. If this isn't a new installation, you
           should run those commands immediately after update and
           probably run them on a regular basis.

	5) Install mail/spamass-rules if you want some third-party
	   spam-catching rulesets

        6) Remove /usr/local/etc/mail/spamassassin/sa-update-keys if this software is no
           longer needed.

SECURITY NOTE:
By default, spamd runs as root (the AS_ROOT option). If you wish
to change this, add the following to /etc/rc.conf:

	spamd_flags="-u spamd -H /var/spool/spamd"

Step 59: Change directory to /root
Step 60: Remove /usr/ports
Step 61: Package autoremove
Updating database digests format: ....... done
Checking integrity... done (0 conflicting)
Nothing to do.
Step 62: Clean package installation
The following package files will be deleted:
	/var/cache/pkg/openssl-3.0.13_2,1.pkg
	/var/cache/pkg/openssl-3.0.13_2,1~9d9aca70ca.pkg
The cleanup will free 6 MiB
Deleting files: .. done
Step 63: Clean cook artifacts
Step 64: Install pot local
Step 65: Set file ownership on cook scripts
Step 66: Make cook script executable
setting executable bit on /usr/local/bin/cook
Step 67: Create rc.d script to start cook
creating rc.d script to start cook
Step 68: Make rc.d script to start cook executable
Setting executable bit on cook rc file
Step 69: Enable cook service
enabling cook
cook enabled in /etc/rc.conf
=====>  Stop the pot mailhub-potluck-amd64-14_0
=====>  Remove p4662772a2a66e epair network interfaces
=====>  unmount /mnt/srv/pot/jails/mailhub-potluck-amd64-14_0/m/tmp
=====>  unmount /mnt/srv/pot/jails/mailhub-potluck-amd64-14_0/m/dev
===>  exporting mailhub-potluck-amd64-14_0 @ 1713862017 to /tmp/mailhub-potluck-amd64-14_0_0.12.1.xz

This site © Honeyguide Group (Pty) Ltd, all the hosted software their respective license owners 2020 - 2021 - Disclaimer