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_hosts
in 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
- Image Readme
- How To Use The Ready-Made Image
- Alternatively: Create a Jail With This Flavour Yourself
- Version History
- Manual Image Download Links
- Jenkins Pot Creation Logs
How To Use The Ready-Made Image
FreeBSD 14.1:
pot import -p mailhub-potluck-amd64-14_1 -t 0.18.2 -U https://potluck.honeyguide.net/mailhub-potluck
With Signify Verification:
fetch https://potluck.honeyguide.net/potluck.pub; pot import -p mailhub-potluck-amd64-14_1 -t 0.18.2 -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_1 -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.1) 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.18
- Version bump for new base image
- Enable milliseconds in syslog-ng for all log timestamps
0.17
- Version bump for new base image 14.1
- Extra steps to trim image size
0.16
- Version bump for new base image
0.15
- Version bump for new base image
0.14
- Version bump for new base image
- Fix postfix main.cf to replace “smtpd_use_tls” with “smtpd_tls_security_level”
0.13
- Version bump for new base image
0.12
- Version bump for new base image
- Fix node_exporter zfs issue
- Update quarterlies git branch
- Adjust cert renewal script as variables not expanding
- Update certificate renewal script
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 Thu Oct 31 23:55:04 UTC 2024
Manual Image Download Links
mailhub-potluck-amd64-14_1_0.18.2.xz (
)
mailhub-potluck-amd64-14_1_0.18.2.xz.skein (
)
mailhub-potluck-amd64-14_1_0.18.2.xz.skein.sig (
)
mailhub-potluck-amd64-14_1_0.18.2.xz.meta (
)
Jenkins Pot Creation Logs
mailhub-potluck-amd64-14_1_0.18.2:
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 "Clean freebsd-update"
rm -rf /var/db/freebsd-update
mkdir -p /var/db/freebsd-update
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
#git pull --depth=1 origin 2024Q3
git pull --depth=1 origin 2024Q4
#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 -ay
# -------------- 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_1/conf)
=====> Cloning freebsd-potluck-amd64-14_1_0_0_31 with snap
=====> clone zroot/srv/pot/jails/freebsd-potluck-amd64-14_1_0_0_31/m@1730306249 into zroot/srv/pot/jails/mailhub-potluck-amd64-14_1/m
=====> Flavour: fbsd-update
=====> Starting mailhub-potluck-amd64-14_1 pot for the initial bootstrap
=====> mount /mnt/srv/pot/jails/mailhub-potluck-amd64-14_1/m/tmp
defaultrouter: 10.192.0.1 -> 10.192.0.1
===> Starting the pot mailhub-potluck-amd64-14_1
=====> Pot mailhub-potluck-amd64-14_1 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_1 host.hostname=mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net osrelease=14.1-RELEASE-p6 path=/mnt/srv/pot/jails/mailhub-potluck-amd64-14_1/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 /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:9d:5d:d0:42: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.
Thu Oct 31 23:44:44 UTC 2024
/usr/local/etc/pot/flavours/fbsd-update.sh -> /mnt/srv/pot/jails/mailhub-potluck-amd64-14_1/m/tmp/fbsd-update.sh
=====> Executing fbsd-update script on mailhub-potluck-amd64-14_1
src component not installed, skipped
Looking up update.FreeBSD.org mirrors... 3 mirrors found.
Fetching public key from update2.freebsd.org... done.
Fetching metadata signature for 14.1-RELEASE from update2.freebsd.org... done.
Fetching metadata index... done.
Fetching 2 metadata files... done.
Inspecting system... done.
Preparing to download files... done.
No updates needed to update system to 14.1-RELEASE-p6.
No updates are available to install.
=====> Stop the pot mailhub-potluck-amd64-14_1
=====> Remove p46724166bc7ee epair network interfaces
=====> unmount /mnt/srv/pot/jails/mailhub-potluck-amd64-14_1/m/tmp
=====> unmount /mnt/srv/pot/jails/mailhub-potluck-amd64-14_1/m/dev
=====> Flavour: mailhub-potluck
=====> Executing mailhub-potluck pot commands on mailhub-potluck-amd64-14_1
=====> mount /mnt/srv/pot/jails/mailhub-potluck-amd64-14_1/m/tmp
=====> Source /usr/local/etc/pot/flavours/mailhub-potluck.d/local copied in the pot mailhub-potluck-amd64-14_1
=====> unmount /mnt/srv/pot/jails/mailhub-potluck-amd64-14_1/m/tmp
=====> /mnt/srv/pot/jails/mailhub-potluck-amd64-14_1/m/dev is already unmounted
=====> Starting mailhub-potluck-amd64-14_1 pot for the initial bootstrap
=====> mount /mnt/srv/pot/jails/mailhub-potluck-amd64-14_1/m/tmp
defaultrouter: 10.192.0.1 -> 10.192.0.1
===> Starting the pot mailhub-potluck-amd64-14_1
=====> Pot mailhub-potluck-amd64-14_1 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_1 host.hostname=mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net osrelease=14.1-RELEASE-p6 path=/mnt/srv/pot/jails/mailhub-potluck-amd64-14_1/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 /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:a8:e5:87:57: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.
Thu Oct 31 23:45:18 UTC 2024
/usr/local/etc/pot/flavours/mailhub-potluck.sh -> /mnt/srv/pot/jails/mailhub-potluck-amd64-14_1/m/tmp/mailhub-potluck.sh
=====> Executing mailhub-potluck script on mailhub-potluck-amd64-14_1
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: Clean freebsd-update
Step 8: Install package sudo
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 9: 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 10: 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 11: 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 12: 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 13: 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 14: 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 15: 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 16: 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.1
glib: 2.80.5,2
ivykis: 0.43.2
json-c: 0.18
libffi: 3.4.6
mpdecimal: 4.0.0
pcre2: 10.43
py311-packaging: 24.1
python311: 3.11.10
syslog-ng: 4.8.0_2
Number of packages to be installed: 10
The process will require 241 MiB more space.
34 MiB to be downloaded.
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/10] Fetching ivykis-0.43.2.pkg: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/10] Fetching mpdecimal-4.0.0.pkg: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/10] Fetching py311-packaging-24.1.pkg: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [4/10] Fetching glib-2.80.5,2.pkg: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [5/10] Fetching syslog-ng-4.8.0_2.pkg: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [6/10] Fetching pcre2-10.43.pkg: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [7/10] Fetching libffi-3.4.6.pkg: ........ done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [8/10] Fetching json-c-0.18.pkg: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [9/10] Fetching e2fsprogs-libuuid-1.47.1.pkg: ....... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [10/10] Fetching python311-3.11.10.pkg: .......... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/10] Installing mpdecimal-4.0.0...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/10] Extracting mpdecimal-4.0.0: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/10] Installing libffi-3.4.6...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/10] Extracting libffi-3.4.6: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/10] Installing python311-3.11.10...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/10] Extracting python311-3.11.10: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [4/10] Installing py311-packaging-24.1...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [4/10] Extracting py311-packaging-24.1: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [5/10] Installing pcre2-10.43...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [5/10] Extracting pcre2-10.43: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [6/10] Installing ivykis-0.43.2...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [6/10] Extracting ivykis-0.43.2: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [7/10] Installing glib-2.80.5,2...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [7/10] Extracting glib-2.80.5,2: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [8/10] Installing json-c-0.18...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [8/10] Extracting json-c-0.18: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [9/10] Installing e2fsprogs-libuuid-1.47.1...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [9/10] Extracting e2fsprogs-libuuid-1.47.1: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [10/10] Installing syslog-ng-4.8.0_2...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [10/10] Extracting syslog-ng-4.8.0_2: .......... done
==> Running trigger: gio-modules.ucl
Generating GIO modules cache
==> Running trigger: glib-schemas.ucl
Compiling glib schemas
No schema files found: doing nothing.
=====
Message from python311-3.11.10:
--
Note that some standard Python modules are provided as separate ports
as they require additional dependencies. They are available as:
py311-gdbm databases/py-gdbm@py311
py311-sqlite3 databases/py-sqlite3@py311
py311-tkinter x11-toolkits/py-tkinter@py311
=====
Message from syslog-ng-4.8.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 17: 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_2
Number of packages to be installed: 1
The process will require 62 MiB more space.
15 MiB to be downloaded.
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching perl5-5.36.3_2.pkg: .......... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Installing perl5-5.36.3_2...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting perl5-5.36.3_2: .......... done
Step 18: 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_1.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_1.vsf00002.cpt.za.honeyguide.net] [1/1] Installing p5-Encode-Detect-1.01_1...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting p5-Encode-Detect-1.01_1: ......... done
Step 19: 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.47
p5-Encode-Locale: 1.05
p5-HTML-Parser: 3.83
p5-HTML-Tagset: 3.24
p5-HTTP-Date: 6.06
p5-HTTP-Message: 6.46
p5-IO-HTML: 1.004
p5-LWP-MediaTypes: 6.04
p5-TimeDate: 2.33,1
p5-URI: 5.29
Number of packages to be installed: 10
382 KiB to be downloaded.
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/10] Fetching p5-HTTP-Date-6.06.pkg: .. done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/10] Fetching p5-URI-5.29.pkg: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/10] Fetching p5-Encode-Locale-1.05.pkg: .. done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [4/10] Fetching p5-HTML-Parser-3.83.pkg: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [5/10] Fetching p5-LWP-MediaTypes-6.04.pkg: ... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [6/10] Fetching p5-TimeDate-2.33,1.pkg: ....... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [7/10] Fetching p5-IO-HTML-1.004.pkg: ... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [8/10] Fetching p5-Clone-0.47.pkg: .. done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [9/10] Fetching p5-HTML-Tagset-3.24.pkg: .. done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [10/10] Fetching p5-HTTP-Message-6.46.pkg: .......... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/10] Installing p5-TimeDate-2.33,1...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/10] Extracting p5-TimeDate-2.33,1: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/10] Installing p5-HTTP-Date-6.06...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/10] Extracting p5-HTTP-Date-6.06: ....... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/10] Installing p5-URI-5.29...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/10] Extracting p5-URI-5.29: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [4/10] Installing p5-Encode-Locale-1.05...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [4/10] Extracting p5-Encode-Locale-1.05: ....... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [5/10] Installing p5-LWP-MediaTypes-6.04...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [5/10] Extracting p5-LWP-MediaTypes-6.04: ........ done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [6/10] Installing p5-IO-HTML-1.004...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [6/10] Extracting p5-IO-HTML-1.004: ....... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [7/10] Installing p5-Clone-0.47...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [7/10] Extracting p5-Clone-0.47: ......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [8/10] Installing p5-HTML-Tagset-3.24...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [8/10] Extracting p5-HTML-Tagset-3.24: ....... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [9/10] Installing p5-HTTP-Message-6.46...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [9/10] Extracting p5-HTTP-Message-6.46: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [10/10] Installing p5-HTML-Parser-3.83...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [10/10] Extracting p5-HTML-Parser-3.83: .......... done
Step 20: 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 21: 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.47,1
Number of packages to be installed: 2
342 KiB to be downloaded.
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/2] Fetching p5-Net-DNS-1.47,1.pkg: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/2] Fetching p5-Digest-HMAC-1.04.pkg: ... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/2] Installing p5-Digest-HMAC-1.04...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/2] Extracting p5-Digest-HMAC-1.04: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/2] Installing p5-Net-DNS-1.47,1...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/2] Extracting p5-Net-DNS-1.47,1: .......... done
Step 22: 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_1.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching p5-NetAddr-IP-4.079.pkg: .......... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Installing p5-NetAddr-IP-4.079...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting p5-NetAddr-IP-4.079: .......... done
Step 23: 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_1.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_1.vsf00002.cpt.za.honeyguide.net] [1/1] Installing p5-Net-CIDR-Lite-0.22...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting p5-Net-CIDR-Lite-0.22: ....... done
Step 24: 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_1
Number of packages to be installed: 1
89 KiB to be downloaded.
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching p5-Net-IDN-Encode-2.500_1.pkg: .......... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Installing p5-Net-IDN-Encode-2.500_1...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting p5-Net-IDN-Encode-2.500_1: .......... done
Step 25: 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.42
p5-Net-LibIDN: 0.12_6
Number of packages to be installed: 2
The process will require 1 MiB more space.
256 KiB to be downloaded.
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/2] Fetching p5-Net-LibIDN-0.12_6.pkg: .... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/2] Fetching libidn-1.42.pkg: .......... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/2] Installing libidn-1.42...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/2] Extracting libidn-1.42: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/2] Installing p5-Net-LibIDN-0.12_6...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/2] Extracting p5-Net-LibIDN-0.12_6: ......... done
Step 26: 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 27: 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.089
p5-Mozilla-CA: 20240924
p5-Net-SSLeay: 1.94
Number of packages to be installed: 4
The process will require 2 MiB more space.
632 KiB to be downloaded.
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/4] Fetching p5-Net-SSLeay-1.94.pkg: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/4] Fetching p5-IO-Socket-SSL-2.089.pkg: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/4] Fetching p5-IO-Socket-IP-0.42.pkg: ...... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [4/4] Fetching p5-Mozilla-CA-20240924.pkg: .......... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/4] Installing p5-Net-SSLeay-1.94...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/4] Extracting p5-Net-SSLeay-1.94: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/4] Installing p5-IO-Socket-IP-0.42...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/4] Extracting p5-IO-Socket-IP-0.42: ....... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/4] Installing p5-Mozilla-CA-20240924...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/4] Extracting p5-Mozilla-CA-20240924: ....... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [4/4] Installing p5-IO-Socket-SSL-2.089...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [4/4] Extracting p5-IO-Socket-SSL-2.089: .......... done
Step 28: 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.17
p5-CryptX: 0.081
p5-JSON: 4.10
p5-Mail-AuthenticationResults: 2.20231031
p5-Mail-DKIM: 1.20240923
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_1.vsf00002.cpt.za.honeyguide.net] [1/8] Fetching p5-Mail-AuthenticationResults-2.20231031.pkg: ....... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/8] Fetching p5-Mail-DKIM-1.20240923.pkg: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/8] Fetching p5-Crypt-OpenSSL-RSA-0.33.pkg: ..... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [4/8] Fetching p5-Crypt-OpenSSL-Random-0.17.pkg: ... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [5/8] Fetching p5-JSON-4.10.pkg: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [6/8] Fetching p5-CryptX-0.081.pkg: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [7/8] Fetching p5-Mail-Tools-2.21.pkg: .......... done
[mailhub-potluck-amd64-14_1.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_1.vsf00002.cpt.za.honeyguide.net] [1/8] Installing p5-Crypt-OpenSSL-Random-0.17...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/8] Extracting p5-Crypt-OpenSSL-Random-0.17: ........ done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/8] Installing p5-JSON-4.10...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/8] Extracting p5-JSON-4.10: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/8] Installing p5-Crypt-OpenSSL-Bignum-0.09...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/8] Extracting p5-Crypt-OpenSSL-Bignum-0.09: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [4/8] Installing p5-Mail-AuthenticationResults-2.20231031...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [4/8] Extracting p5-Mail-AuthenticationResults-2.20231031: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [5/8] Installing p5-Crypt-OpenSSL-RSA-0.33...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [5/8] Extracting p5-Crypt-OpenSSL-RSA-0.33: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [6/8] Installing p5-CryptX-0.081...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [6/8] Extracting p5-CryptX-0.081: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [7/8] Installing p5-Mail-Tools-2.21...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [7/8] Extracting p5-Mail-Tools-2.21: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [8/8] Installing p5-Mail-DKIM-1.20240923...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [8/8] Extracting p5-Mail-DKIM-1.20240923: .......... done
Step 29: 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 30: Install package p5-Mail-SPF
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-Error: 0.17029
p5-Mail-SPF: 3.20240923
Number of packages to be installed: 2
142 KiB to be downloaded.
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/2] Fetching p5-Mail-SPF-3.20240923.pkg: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/2] Fetching p5-Error-0.17029.pkg: ...... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/2] Installing p5-Error-0.17029...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/2] Extracting p5-Error-0.17029: ......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/2] Installing p5-Mail-SPF-3.20240923...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/2] Extracting p5-Mail-SPF-3.20240923: .......... done
Step 31: 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 32: 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_1.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_1.vsf00002.cpt.za.honeyguide.net] [1/1] Installing p5-Class-XSAccessor-1.19_2,1...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting p5-Class-XSAccessor-1.19_2,1: .......... done
Step 33: 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_1.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching p5-XString-0.005.pkg: .. done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Installing p5-XString-0.005...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting p5-XString-0.005: ........ done
Step 34: 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.
430 KiB to be downloaded.
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching re2c-3.0.pkg: .......... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Installing re2c-3.0...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting re2c-3.0: .......... done
Step 35: 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_1.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching gnupg1-1.4.23_4.pkg: .......... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Installing gnupg1-1.4.23_4...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting gnupg1-1.4.23_4: .......... done
Step 36: 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_5
icu: 74.2_1,1
openldap26-client: 2.6.8
postfix-ldap: 3.9.0_1,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_1.vsf00002.cpt.za.honeyguide.net] [1/4] Fetching postfix-ldap-3.9.0_1,1.pkg: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/4] Fetching cyrus-sasl-2.1.28_5.pkg: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/4] Fetching icu-74.2_1,1.pkg: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [4/4] Fetching openldap26-client-2.6.8.pkg: .......... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/4] Installing cyrus-sasl-2.1.28_5...
*** Added group `cyrus' (id 60)
*** Added user `cyrus' (id 60)
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/4] Extracting cyrus-sasl-2.1.28_5: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/4] Installing icu-74.2_1,1...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/4] Extracting icu-74.2_1,1: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/4] Installing openldap26-client-2.6.8...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/4] Extracting openldap26-client-2.6.8: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [4/4] Installing postfix-ldap-3.9.0_1,1...
===> Creating groups
Using existing group 'mail'
Creating group 'maildrop' with gid '126'
Creating group 'postfix' with gid '125'
===> Creating users
Creating user 'postfix' with uid '125'
===> Creating homedir(s)
Adding user 'postfix' to group 'mail'
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [4/4] Extracting postfix-ldap-3.9.0_1,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_5:
--
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.8:
--
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,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 37: 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.3.0,1
Number of packages to be installed: 1
83 KiB to be downloaded.
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching pkgconf-2.3.0,1.pkg: .......... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Installing pkgconf-2.3.0,1...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting pkgconf-2.3.0,1: .......... done
Step 38: 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 39: Install package python39
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:
python39: 3.9.20
Number of packages to be installed: 1
The process will require 119 MiB more space.
19 MiB to be downloaded.
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching python39-3.9.20.pkg: .......... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Installing python39-3.9.20...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting python39-3.9.20: .......... done
=====
Message from python39-3.9.20:
--
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
Step 40: 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.9
socat: 1.8.0.1
Number of packages to be installed: 2
The process will require 2 MiB more space.
435 KiB to be downloaded.
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/2] Fetching socat-1.8.0.1.pkg: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/2] Fetching acme.sh-3.0.9.pkg: .......... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/2] Installing socat-1.8.0.1...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/2] Extracting socat-1.8.0.1: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/2] Installing acme.sh-3.0.9...
===> Creating groups
Creating group 'acme' with gid '169'
===> Creating users
Creating user 'acme' with uid '169'
===> Creating homedir(s)
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/2] Extracting acme.sh-3.0.9: .......... done
=====
Message from acme.sh-3.0.9:
--
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 41: 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.4.1_2,1
libmspack: 0.11alpha
libxml2: 2.11.9
unzoo: 4.4_2
Number of packages to be installed: 6
The process will require 70 MiB more space.
15 MiB to be downloaded.
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/6] Fetching libmspack-0.11alpha.pkg: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/6] Fetching libxml2-2.11.9.pkg: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/6] Fetching unzoo-4.4_2.pkg: .... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [4/6] Fetching clamav-1.4.1_2,1.pkg: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [5/6] Fetching arj-3.10.22_12.pkg: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [6/6] Fetching arc-5.21q_1.pkg: .......... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/6] Installing libmspack-0.11alpha...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/6] Extracting libmspack-0.11alpha: ......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/6] Installing libxml2-2.11.9...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/6] Extracting libxml2-2.11.9: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/6] Installing unzoo-4.4_2...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/6] Extracting unzoo-4.4_2: ..... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [4/6] Installing arj-3.10.22_12...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [4/6] Extracting arj-3.10.22_12: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [5/6] Installing arc-5.21q_1...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [5/6] Extracting arc-5.21q_1: ....... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [6/6] Installing clamav-1.4.1_2,1...
===> Creating groups
Creating group 'clamav' with gid '106'
Using existing group 'mail'
===> Creating users
Creating user 'clamav' with uid '106'
Adding user 'clamav' to group 'mail'
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [6/6] Extracting clamav-1.4.1_2,1: .......... done
Step 42: 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.3
libedit: 3.1.20240808,1
libevent: 2.1.12
libsodium: 1.0.19
lua54: 5.4.7
opendkim: 2.10.3_20
unbound: 1.21.1
Number of packages to be installed: 7
The process will require 16 MiB more space.
4 MiB to be downloaded.
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/7] Fetching unbound-1.21.1.pkg: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/7] Fetching libedit-3.1.20240808,1.pkg: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/7] Fetching lua54-5.4.7.pkg: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [4/7] Fetching opendkim-2.10.3_20.pkg: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [5/7] Fetching libsodium-1.0.19.pkg: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [6/7] Fetching expat-2.6.3.pkg: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [7/7] Fetching libevent-2.1.12.pkg: .......... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/7] Installing libedit-3.1.20240808,1...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/7] Extracting libedit-3.1.20240808,1: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/7] Installing libsodium-1.0.19...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/7] Extracting libsodium-1.0.19: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/7] Installing expat-2.6.3...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/7] Extracting expat-2.6.3: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [4/7] Installing libevent-2.1.12...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [4/7] Extracting libevent-2.1.12: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [5/7] Installing unbound-1.21.1...
===> Creating groups
Using existing group 'unbound'
===> Creating users
Using existing user 'unbound'
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [5/7] Extracting unbound-1.21.1: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [6/7] Installing lua54-5.4.7...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [6/7] Extracting lua54-5.4.7: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [7/7] Installing opendkim-2.10.3_20...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [7/7] Extracting opendkim-2.10.3_20: .......... done
=====
Message from opendkim-2.10.3_20:
--
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 43: 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.18_2
libfido2: 1.15.0
libpaper: 1.1.28_1
libspf2: 1.2.11_2
libunwind: 20240221
mysql80-client: 8.0.39
opendmarc: 1.4.2_3
p5-DBD-mysql: 5.008
p5-DBI: 1.644
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 143 MiB more space.
11 MiB to be downloaded.
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/16] Fetching libcjson-1.7.18_2.pkg: ........ done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/16] Fetching p5-Filter-1.64.pkg: ........ done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/16] Fetching groff-1.23.0_3.pkg: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [4/16] Fetching hidapi-0.14.0.pkg: ........ done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [5/16] Fetching libunwind-20240221.pkg: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [6/16] Fetching p5-DBD-mysql-5.008.pkg: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [7/16] Fetching mysql80-client-8.0.39.pkg: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [8/16] Fetching libspf2-1.2.11_2.pkg: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [9/16] Fetching libcbor-0.11.0.pkg: ....... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [10/16] Fetching p5-DBI-1.644.pkg: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [11/16] Fetching uchardet-0.0.8_1.pkg: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [12/16] Fetching psutils-1.17_6.pkg: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [13/16] Fetching libpaper-1.1.28_1.pkg: ..... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [14/16] Fetching opendmarc-1.4.2_3.pkg: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [15/16] Fetching libfido2-1.15.0.pkg: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [16/16] Fetching p5-Switch-2.17_1.pkg: ... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/16] Installing libcjson-1.7.18_2...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/16] Extracting libcjson-1.7.18_2: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/16] Installing libpaper-1.1.28_1...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/16] Extracting libpaper-1.1.28_1: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/16] Installing libcbor-0.11.0...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/16] Extracting libcbor-0.11.0: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [4/16] Installing uchardet-0.0.8_1...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [4/16] Extracting uchardet-0.0.8_1: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [5/16] Installing psutils-1.17_6...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [5/16] Extracting psutils-1.17_6: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [6/16] Installing groff-1.23.0_3...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [6/16] Extracting groff-1.23.0_3: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [7/16] Installing hidapi-0.14.0...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [7/16] Extracting hidapi-0.14.0: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [8/16] Installing libunwind-20240221...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [8/16] Extracting libunwind-20240221: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [9/16] Installing libfido2-1.15.0...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [9/16] Extracting libfido2-1.15.0: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [10/16] Installing p5-Filter-1.64...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [10/16] Extracting p5-Filter-1.64: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [11/16] Installing mysql80-client-8.0.39...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [11/16] Extracting mysql80-client-8.0.39: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [12/16] Installing p5-DBI-1.644...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [12/16] Extracting p5-DBI-1.644: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [13/16] Installing p5-DBD-mysql-5.008...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [13/16] Extracting p5-DBD-mysql-5.008: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [14/16] Installing libspf2-1.2.11_2...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [14/16] Extracting libspf2-1.2.11_2: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [15/16] Installing p5-Switch-2.17_1...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [15/16] Extracting p5-Switch-2.17_1: ....... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [16/16] Installing opendmarc-1.4.2_3...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [16/16] Extracting opendmarc-1.4.2_3: .......... 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.39:
--
This is the mysql CLIENT without the server.
for complete server and client, please install databases/mysql80-server
Step 44: Install package mail/py-spf-engine
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 31 package(s) will be affected (of 0 checked):
New packages to be INSTALLED:
py311-aioquic: 1.2.0
py311-anyio: 4.6.0
py311-async_generator: 1.10
py311-attrs: 24.2.0
py311-authres: 1.2.0_1
py311-certifi: 2024.8.30
py311-cffi: 1.17.1
py311-cryptography: 42.0.8_3,1
py311-dnspython: 2.7.0,1
py311-h11: 0.14.0
py311-h2: 4.1.0
py311-hpack: 4.0.0
py311-httpcore: 1.0.5
py311-httpx: 0.27.2
py311-hyperframe: 6.0.0
py311-idna: 3.10
py311-milter: 1.0.5
py311-openssl: 24.1.0,1
py311-outcome: 1.3.0_1
py311-pyasn1: 0.6.0
py311-pyasn1-modules: 0.4.0
py311-pycparser: 2.22
py311-pylsqpack: 0.3.18
py311-pyspf: 2.0.14_2
py311-service-identity: 24.1.0
py311-setuptools: 63.1.0_1
py311-sniffio: 1.3.1
py311-socksio: 1.0.0_1
py311-sortedcontainers: 2.4.0
py311-spf-engine: 3.0.4
py311-trio: 0.26.2
Number of packages to be installed: 31
The process will require 47 MiB more space.
7 MiB to be downloaded.
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/31] Fetching py311-anyio-4.6.0.pkg: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/31] Fetching py311-cryptography-42.0.8_3,1.pkg: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/31] Fetching py311-service-identity-24.1.0.pkg: .... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [4/31] Fetching py311-sniffio-1.3.1.pkg: ... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [5/31] Fetching py311-httpcore-1.0.5.pkg: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [6/31] Fetching py311-hyperframe-6.0.0.pkg: .... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [7/31] Fetching py311-pycparser-2.22.pkg: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [8/31] Fetching py311-pyasn1-modules-0.4.0.pkg: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [9/31] Fetching py311-aioquic-1.2.0.pkg: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [10/31] Fetching py311-setuptools-63.1.0_1.pkg: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [11/31] Fetching py311-idna-3.10.pkg: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [12/31] Fetching py311-pyspf-2.0.14_2.pkg: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [13/31] Fetching py311-cffi-1.17.1.pkg: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [14/31] Fetching py311-httpx-0.27.2.pkg: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [15/31] Fetching py311-attrs-24.2.0.pkg: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [16/31] Fetching py311-spf-engine-3.0.4.pkg: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [17/31] Fetching py311-sortedcontainers-2.4.0.pkg: ......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [18/31] Fetching py311-trio-0.26.2.pkg: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [19/31] Fetching py311-async_generator-1.10.pkg: ......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [20/31] Fetching py311-dnspython-2.7.0,1.pkg: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [21/31] Fetching py311-certifi-2024.8.30.pkg: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [22/31] Fetching py311-hpack-4.0.0.pkg: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [23/31] Fetching py311-authres-1.2.0_1.pkg: ....... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [24/31] Fetching py311-h2-4.1.0.pkg: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [25/31] Fetching py311-outcome-1.3.0_1.pkg: ... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [26/31] Fetching py311-socksio-1.0.0_1.pkg: ..... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [27/31] Fetching py311-milter-1.0.5.pkg: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [28/31] Fetching py311-pylsqpack-0.3.18.pkg: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [29/31] Fetching py311-pyasn1-0.6.0.pkg: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [30/31] Fetching py311-openssl-24.1.0,1.pkg: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [31/31] Fetching py311-h11-0.14.0.pkg: .......... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/31] Installing py311-pycparser-2.22...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/31] Extracting py311-pycparser-2.22: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/31] Installing py311-setuptools-63.1.0_1...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/31] Extracting py311-setuptools-63.1.0_1: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/31] Installing py311-sniffio-1.3.1...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/31] Extracting py311-sniffio-1.3.1: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [4/31] Installing py311-hyperframe-6.0.0...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [4/31] Extracting py311-hyperframe-6.0.0: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [5/31] Installing py311-idna-3.10...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [5/31] Extracting py311-idna-3.10: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [6/31] Installing py311-cffi-1.17.1...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [6/31] Extracting py311-cffi-1.17.1: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [7/31] Installing py311-hpack-4.0.0...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [7/31] Extracting py311-hpack-4.0.0: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [8/31] Installing py311-pyasn1-0.6.0...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [8/31] Extracting py311-pyasn1-0.6.0: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [9/31] Installing py311-anyio-4.6.0...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [9/31] Extracting py311-anyio-4.6.0: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [10/31] Installing py311-cryptography-42.0.8_3,1...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [10/31] Extracting py311-cryptography-42.0.8_3,1: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [11/31] Installing py311-pyasn1-modules-0.4.0...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [11/31] Extracting py311-pyasn1-modules-0.4.0: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [12/31] Installing py311-attrs-24.2.0...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [12/31] Extracting py311-attrs-24.2.0: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [13/31] Installing py311-certifi-2024.8.30...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [13/31] Extracting py311-certifi-2024.8.30: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [14/31] Installing py311-h2-4.1.0...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [14/31] Extracting py311-h2-4.1.0: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [15/31] Installing py311-h11-0.14.0...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [15/31] Extracting py311-h11-0.14.0: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [16/31] Installing py311-service-identity-24.1.0...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [16/31] Extracting py311-service-identity-24.1.0: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [17/31] Installing py311-httpcore-1.0.5...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [17/31] Extracting py311-httpcore-1.0.5: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [18/31] Installing py311-sortedcontainers-2.4.0...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [18/31] Extracting py311-sortedcontainers-2.4.0: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [19/31] Installing py311-async_generator-1.10...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [19/31] Extracting py311-async_generator-1.10: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [20/31] Installing py311-outcome-1.3.0_1...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [20/31] Extracting py311-outcome-1.3.0_1: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [21/31] Installing py311-socksio-1.0.0_1...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [21/31] Extracting py311-socksio-1.0.0_1: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [22/31] Installing py311-pylsqpack-0.3.18...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [22/31] Extracting py311-pylsqpack-0.3.18: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [23/31] Installing py311-openssl-24.1.0,1...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [23/31] Extracting py311-openssl-24.1.0,1: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [24/31] Installing py311-aioquic-1.2.0...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [24/31] Extracting py311-aioquic-1.2.0: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [25/31] Installing py311-httpx-0.27.2...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [25/31] Extracting py311-httpx-0.27.2: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [26/31] Installing py311-trio-0.26.2...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [26/31] Extracting py311-trio-0.26.2: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [27/31] Installing py311-dnspython-2.7.0,1...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [27/31] Extracting py311-dnspython-2.7.0,1: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [28/31] Installing py311-authres-1.2.0_1...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [28/31] Extracting py311-authres-1.2.0_1: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [29/31] Installing py311-pyspf-2.0.14_2...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [29/31] Extracting py311-pyspf-2.0.14_2: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [30/31] Installing py311-milter-1.0.5...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [30/31] Extracting py311-milter-1.0.5: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [31/31] Installing py311-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_1.vsf00002.cpt.za.honeyguide.net] [31/31] Extracting py311-spf-engine-3.0.4: .......... done
=====
Message from py311-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
--
===> NOTICE:
The py311-spf-engine port currently does not have a maintainer. As a result, it is
more likely to have unresolved issues, not be up-to-date, or even be removed in
the future. To volunteer to maintain this port, please create an issue at:
https://bugs.freebsd.org/bugzilla
More information about port maintainership is available at:
https://docs.freebsd.org/en/articles/contributing/#ports-contributing
Step 45: 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 46: 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.19.2
Number of packages to be installed: 1
The process will require 124 MiB more space.
24 MiB to be downloaded.
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching consul-1.19.2.pkg: .......... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Installing consul-1.19.2...
===> Creating groups
Creating group 'consul' with gid '469'
===> Creating users
Creating user 'consul' with uid '469'
===> Creating homedir(s)
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting consul-1.19.2: ..... done
Step 47: 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.8.2
Number of packages to be installed: 1
The process will require 11 MiB more space.
4 MiB to be downloaded.
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching node_exporter-1.8.2.pkg: .......... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Installing node_exporter-1.8.2...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting node_exporter-1.8.2: .......... done
=====
Message from node_exporter-1.8.2:
--
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 48: 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.46.2
Number of packages to be installed: 1
The process will require 35 MiB more space.
6 MiB to be downloaded.
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching git-lite-2.46.2.pkg: .......... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Installing git-lite-2.46.2...
===> Creating groups
Creating group 'git_daemon' with gid '964'
===> Creating users
Creating user 'git_daemon' with uid '964'
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting git-lite-2.46.2: .......... done
=====
Message from git-lite-2.46.2:
--
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 49: 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_5,2
go121: 1.21.13_1
Number of packages to be installed: 2
The process will require 206 MiB more space.
42 MiB to be downloaded.
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/2] Fetching go-1.21_5,2.pkg: . done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/2] Fetching go121-1.21.13_1.pkg: .......... done
Checking integrity... done (0 conflicting)
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/2] Installing go121-1.21.13_1...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/2] Extracting go121-1.21.13_1: .......... done
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/2] Installing go-1.21_5,2...
[mailhub-potluck-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/2] Extracting go-1.21_5,2: .. done
Step 50: Add openssl and ldap settings to make.conf
Step 51: Make directory /usr/ports
Step 52: Init packages git branch main
Initialized empty Git repository in /usr/ports/.git/
Step 53: Add packages remote origin
Step 54: Git sparse checkout init
Step 55: Checkout ports and supporting files
Step 56: Pull files
From https://git.freebsd.org/ports
* branch 2024Q4 -> FETCH_HEAD
* [new branch] 2024Q4 -> origin/2024Q4
Step 57: Port build dovecot
===> License LGPL21 MIT accepted by the user
===> dovecot-2.3.21.1_1 depends on file: /usr/local/sbin/pkg - found
=> dovecot-2.3.21.1.tar.gz doesn't seem to exist in /usr/ports/distfiles/.
=> Attempting to fetch https://dovecot.org/releases/2.3/dovecot-2.3.21.1.tar.gz
dovecot-2.3.21.1.tar.gz 7658 kB 3702 kBps 02s
===> Fetching all distfiles required by dovecot-2.3.21.1_1 for building
===> Extracting for dovecot-2.3.21.1_1
=> SHA256 Checksum OK for dovecot-2.3.21.1.tar.gz.
===> Patching for dovecot-2.3.21.1_1
===> Applying FreeBSD patches for dovecot-2.3.21.1_1 from /usr/ports/mail/dovecot/files
===> dovecot-2.3.21.1_1 depends on package: libiconv>=1.14_11 - found
===> dovecot-2.3.21.1_1 depends on package: pkgconf>=1.3.0_1 - found
===> dovecot-2.3.21.1_1 depends on file: /usr/local/lib/libcrypto.so.12 - found
===> dovecot-2.3.21.1_1 depends on shared library: libzstd.so - found (/usr/local/lib/libzstd.so)
===> dovecot-2.3.21.1_1 depends on shared library: libldap.so.2 - found (/usr/local/lib/libldap.so.2)
===> dovecot-2.3.21.1_1 depends on shared library: libmysqlclient.so.21 - found (/usr/local/lib/mysql/libmysqlclient.so.21)
===> Configuring for dovecot-2.3.21.1_1
configure: loading site script /usr/ports/Templates/config.site
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p
checking for gawk... (cached) /usr/bin/awk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking whether to enable maintainer-specific portions of Makefiles... no
checking pkg-config is at least version 0.9.0... yes
checking whether make supports the include directive... yes (GNU style)
checking for gcc... cc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether cc accepts -g... yes
checking for cc option to accept ISO C89... none needed
checking whether cc understands -c and -o together... yes
checking dependency style of cc... gcc3
checking for library containing strerror... none required
checking for gcc... (cached) cc
checking whether we are using the GNU C compiler... (cached) yes
checking whether cc accepts -g... (cached) yes
checking for cc option to accept ISO C89... (cached) none needed
checking whether cc understands -c and -o together... (cached) yes
checking dependency style of cc... (cached) gcc3
checking how to run the C preprocessor... cpp
checking whether we are using the GNU C++ compiler... yes
checking whether c++ accepts -g... yes
checking dependency style of c++... gcc3
checking for flex... flex
checking for bison... no
checking for grep that handles long lines and -e... (cached) /usr/bin/grep
checking for egrep... (cached) /usr/bin/egrep
checking for ANSI C header files... (cached) yes
checking for inline... inline
checking build system type... amd64-portbld-freebsd14.1
checking host system type... amd64-portbld-freebsd14.1
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.1 file names to amd64-portbld-freebsd14.1 format... func_convert_file_noop
checking how to convert amd64-portbld-freebsd14.1 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.1 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.1 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.1_1
--- all ---
/usr/bin/make all-recursive
--- all-recursive ---
Making all in .
--- dovecot-version.h ---
--- dovecot-config ---
--- dovecot-version.h ---
/bin/sh ./update-version.sh . .
--- dovecot-config ---
old=`pwd` && cd . && abs_builddir=`pwd` && cd $old && cd . && abs_srcdir=`pwd` && cd $old && (echo "DOVECOT_INSTALLED=no"; cat dovecot-config.in | sed -e "s|\$(top_builddir)|$abs_builddir|g" -e "s|\$(incdir)|$abs_srcdir|g" -e "s|\$(LIBICONV)||g" -e "s|\$(MODULE_LIBS)|-export-dynamic|g" -e "s|^\(dovecot_pkgincludedir\)=|\1=/usr/local/include/dovecot|" -e "s|^\(dovecot_pkglibdir\)=|\1=/usr/local/lib/dovecot|" -e "s|^\(dovecot_pkglibexecdir\)=|\1=/usr/local/libexec/dovecot|" -e "s|^\(dovecot_docdir\)=|\1=/usr/local/share/doc/dovecot|" -e "s|^\(dovecot_moduledir\)=|\1=/usr/local/lib/dovecot|" -e "s|^\(dovecot_statedir\)=|\1=/var/db/dovecot|" ) > dovecot-config
Making all in src
--- all-recursive ---
Making all in lib-test
--- fuzzer.lo ---
--- 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/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -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--- 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--- 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 -o fuzzer.o >/dev/null 2>&1
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
--- fuzzer.lo ---
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 ---
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
/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
--- test-istream.lo ---
mv -f .deps/test-istream.Tpo .deps/test-istream.Plo
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-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
--- test-common.lo ---
mv -f .deps/test-common.Tpo .deps/test-common.Plo
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-char--- test-subprocess.lo ---
/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -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-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 ---
--- test_lib-test-array.o ---
mv -f .deps/test_lib-test-array.Tpo .deps/test_lib-test-array.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-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-byteorder.o ---
mv -f .deps/test_lib-test-byteorder.Tpo .deps/test_lib-test-byteorder.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-crc32.o ---
mv -f .deps/test_lib-test-crc32.Tpo .deps/test_lib-test-crc32.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 ---
--- test_lib-test-connection.o ---
mv -f .deps/test_lib-test-connection.Tpo .deps/test_lib-test-connection.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-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-guid.o ---
mv -f .deps/test_lib-test-guid.Tpo .deps/test_lib-test-guid.Po
--- test_lib-test-hash-method.o ---
--- test_lib-test-hmac.o ---
--- 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-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-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 ---
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-hmac.o ---
mv -f .deps/test_lib-test-hmac.Tpo .deps/test_lib-test-hmac.Po
--- test_lib-test-ioloop.o ---
cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -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-hash-method.o ---
mv -f .deps/test_lib-test-hash-method.Tpo .deps/test_lib-test-hash-method.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-failure-at.o ---
mv -f .deps/test_lib-test-istream-failure-at.Tpo .deps/test_lib-test-istream-failure-at.Po
--- test_lib-test-istream-multiplex.o ---
cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-istream-multiplex.o -MD -MP -MF .deps/test_lib-test-istream-multiplex.Tpo -c -o test_lib-test-istream-multiplex.o `test -f 'test-istream-multiplex.c' || echo './'`test-istream-multiplex.c
--- test_lib-test-istream-concat.o ---
mv -f .deps/test_lib-test-istream-concat.Tpo .deps/test_lib-test-istream-concat.Po
--- test_lib-test-istream-seekable.o ---
cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -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-try.o ---
mv -f .deps/test_lib-test-istream-try.Tpo .deps/test_lib-test-istream-try.Po
--- test_lib-test-lib-event.o ---
--- 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-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-lib-event.o ---
mv -f .deps/test_lib-test-lib-event.Tpo .deps/test_lib-test-lib-event.Po
--- test_lib-test-llist.o ---
cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT test_lib-test-llist.o -MD -MP -MF .deps/test_lib-test-llist.Tpo -c -o test_lib-test-llist.o `test -f 'test-llist.c' || echo './'`test-llist.c
--- test_lib-test-json-tree.o ---
mv -f .deps/test_lib-test-json-tree.Tpo .deps/test_lib-test-json-tree.Po
--- test_lib-test-log-throttle.o ---
cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -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-macros.o ---
mv -f .deps/test_lib-test-macros.Tpo .deps/test_lib-test-macros.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-log-throttle.o ---
mv -f .deps/test_lib-test-log-throttle.Tpo .deps/test_lib-test-log-throttle.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-memarea.o ---
mv -f .deps/test_lib-test-memarea.Tpo .deps/test_lib-test-memarea.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-llist.o ---
mv -f .deps/test_lib-test-llist.Tpo .deps/test_lib-test-llist.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-mempool-allocfree.o ---
mv -f .deps/test_lib-test-mempool-allocfree.Tpo .deps/test_lib-test-mempool-allocfree.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-alloconly.o ---
mv -f .deps/test_lib-test-mempool-alloconly.Tpo .deps/test_lib-test-mempool-alloconly.Po
--- test_lib-test-ostream-buffer.o ---
--- test_lib-test-pkcs5.o ---
mv -f .deps/test_lib-test-pkcs5.Tpo .deps/test_lib-test-pkcs5.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-net.o ---
mv -f .deps/test_lib-test-net.Tpo .deps/test_lib-test-net.Po
--- test_lib-test-ostream-multiplex.o ---
cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -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-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-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-ostream-multiplex.o ---
mv -f .deps/test_lib-test-ostream-multiplex.Tpo .deps/test_lib-test-ostream-multiplex.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-primes.o ---
mv -f .deps/test_lib-test-primes.Tpo .deps/test_lib-test-primes.Po
--- test_lib-test-random.o ---
cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib-test -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -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-path-util.o ---
mv -f .deps/test_lib-test-path-util.Tpo .deps/test_lib-test-path-util.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
--- test_lib-test-strfuncs.o ---
mv -f .deps/test_lib-test-strfuncs.Tpo .deps/test_lib-test-strfuncs.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-utc-mktime.o ---
mv -f .deps/test_lib-test-utc-mktime.Tpo .deps/test_lib-test-utc-mktime.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-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
--- test_lib-test-unichar.o ---
mv -f .deps/test_lib-test-unichar.Tpo .deps/test_lib-test-unichar.Po
--- array.lo ---
/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-var-expand.o ---
mv -f .deps/test_lib-test-var-expand.Tpo .deps/test_lib-test-var-expand.Po
--- test_lib-test-uri.o ---
mv -f .deps/test_lib-test-uri.Tpo .deps/test_lib-test-uri.Po
--- askpass.lo ---
--- backtrace-string.lo ---
--- 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
--- 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
--- 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
--- 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
--- 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
--- array.lo ---
mv -f .deps/array.Tpo .deps/array.Plo
--- backtrace-string.lo ---
mv -f .deps/backtrace-string.Tpo .deps/backtrace-string.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
--- 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
--- askpass.lo ---
mv -f .deps/askpass.Tpo .deps/askpass.Plo
--- bsearch-insert-pos.lo ---
/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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
--- bsearch-insert-pos.lo ---
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT bsearch-insert-pos.lo -MD -MP -MF .deps/bsearch-insert-pos.Tpo -c bsearch-insert-pos.c -fPIC -DPIC -o .libs/bsearch-insert-pos.o
--- bits.lo ---
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
--- bsearch-insert-pos.lo ---
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT bsearch-insert-pos.lo -MD -MP -MF .deps/bsearch-insert-pos.Tpo -c bsearch-insert-pos.c -o bsearch-insert-pos.o >/dev/null 2>&1
--- base32.lo ---
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT buffer-istream.lo -MD -MP -MF .deps/buffer-istream.Tpo -c buffer-istream.c -fPIC -DPIC -o .libs/buffer-istream.o
--- base32.lo ---
mv -f .deps/base32.Tpo .deps/base32.Plo
--- child-wait.lo ---
/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 -o buffer-istream.o >/dev/null 2>&1
--- base64.lo ---
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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 ---
mv -f .deps/buffer-istream.Tpo .deps/buffer-istream.Plo
--- compat.lo ---
--- 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
--- 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
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT compat.lo -MD -MP -MF .deps/compat.Tpo -c compat.c -o compat.o >/dev/null 2>&1
--- child-wait.lo ---
mv -f .deps/child-wait.Tpo .deps/child-wait.Plo
--- connection.lo ---
/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT connection.lo -MD -MP -MF .deps/connection.Tpo -c -o connection.lo connection.c
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT connection.lo -MD -MP -MF .deps/connection.Tpo -c connection.c -fPIC -DPIC -o .libs/connection.o
--- compat.lo ---
mv -f .deps/compat.Tpo .deps/compat.Plo
--- cpu-limit.lo ---
/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
--- buffer.lo ---
mv -f .deps/buffer.Tpo .deps/buffer.Plo
--- crc32.lo ---
/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT crc32.lo -MD -MP -MF .deps/crc32.Tpo -c crc32.c -fPIC -DPIC -o .libs/crc32.o
--- base64.lo ---
mv -f .deps/base64.Tpo .deps/base64.Plo
--- data-stack.lo ---
/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT data-stack.lo -MD -MP -MF .deps/data-stack.Tpo -c data-stack.c -fPIC -DPIC -o .libs/data-stack.o
--- cpu-limit.lo ---
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT cpu-limit.lo -MD -MP -MF .deps/cpu-limit.Tpo -c cpu-limit.c -o cpu-limit.o >/dev/null 2>&1
--- crc32.lo ---
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
mv -f .deps/crc32.Tpo .deps/crc32.Plo
--- eacces-error.lo ---
--- 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
--- 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
--- data-stack.lo ---
mv -f .deps/data-stack.Tpo .deps/data-stack.Plo
--- event-filter.lo ---
/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
--- env-util.lo ---
mv -f .deps/env-util.Tpo .deps/env-util.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
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
--- connection.lo ---
mv -f .deps/connection.Tpo .deps/connection.Plo
--- failures.lo ---
/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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
--- 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
--- execv-const.lo ---
mv -f .deps/execv-const.Tpo .deps/execv-const.Plo
--- 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
--- 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
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT fdpass.lo -MD -MP -MF .deps/fdpass.Tpo -c fdpass.c -fPIC -DPIC -o .libs/fdpass.o
--- failures.lo ---
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT failures.lo -MD -MP -MF .deps/failures.Tpo -c failures.c -o failures.o >/dev/null 2>&1
--- fdatasync-path.lo ---
mv -f .deps/fdatasync-path.Tpo .deps/fdatasync-path.Plo
--- file-cache.lo ---
/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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 ---
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
--- event-filter.lo ---
mv -f .deps/event-filter.Tpo .deps/event-filter.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
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
--- fdpass.lo ---
mv -f .deps/fdpass.Tpo .deps/fdpass.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
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-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
--- 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
--- 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
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT file-dotlock.lo -MD -MP -MF .deps/file-dotlock.Tpo -c file-dotlock.c -fPIC -DPIC -o .libs/file-dotlock.o
--- file-copy.lo ---
mv -f .deps/file-copy.Tpo .deps/file-copy.Plo
--- file-lock.lo ---
/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT file-lock.lo -MD -MP -MF .deps/file-lock.Tpo -c -o file-lock.lo file-lock.c
--- file-create-locked.lo ---
mv -f .deps/file-create-locked.Tpo .deps/file-create-locked.Plo
--- file-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-cache.lo ---
mv -f .deps/file-cache.Tpo .deps/file-cache.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-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 -fPIC -DPIC -o .libs/file-lock.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 -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
--- 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
--- 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
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 ---
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
--- file-dotlock.lo ---
mv -f .deps/file-dotlock.Tpo .deps/file-dotlock.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
--- hash-method.lo ---
mv -f .deps/hash-method.Tpo .deps/hash-method.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
--- 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-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
--- 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-dec.lo ---
mv -f .deps/hex-dec.Tpo .deps/hex-dec.Plo
--- hmac-cram-md5.lo ---
/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT hmac-cram-md5.lo -MD -MP -MF .deps/hmac-cram-md5.Tpo -c -o hmac-cram-md5.lo hmac-cram-md5.c
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
--- hex-binary.lo ---
mv -f .deps/hex-binary.Tpo .deps/hex-binary.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
--- 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
--- 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
--- 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-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.lo ---
mv -f .deps/hmac.Tpo .deps/hmac.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
--- hmac-cram-md5.lo ---
mv -f .deps/hmac-cram-md5.Tpo .deps/hmac-cram-md5.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
--- home-expand.lo ---
mv -f .deps/home-expand.Tpo .deps/home-expand.Plo
--- ipwd.lo ---
/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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
--- 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
--- 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-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.lo ---
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT iostream.lo -MD -MP -MF .deps/iostream.Tpo -c iostream.c -o iostream.o >/dev/null 2>&1
--- ipwd.lo ---
mv -f .deps/ipwd.Tpo .deps/ipwd.Plo
--- iostream-rawlog.lo ---
/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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-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 -fPIC -DPIC -o .libs/istream-callback.o
--- istream-chain.lo ---
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-chain.lo -MD -MP -MF .deps/istream-chain.Tpo -c istream-chain.c -fPIC -DPIC -o .libs/istream-chain.o
--- istream-base64-encoder.lo ---
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-base64-encoder.lo -MD -MP -MF .deps/istream-base64-encoder.Tpo -c istream-base64-encoder.c -o istream-base64-encoder.o >/dev/null 2>&1
--- istream-callback.lo ---
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-callback.lo -MD -MP -MF .deps/istream-callback.Tpo -c istream-callback.c -o istream-callback.o >/dev/null 2>&1
--- istream.lo ---
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-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-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-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-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
--- 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
--- 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 -o istream-crlf.o >/dev/null 2>&1
--- istream-data.lo ---
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-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
--- 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-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 -fPIC -DPIC -o .libs/istream-hash.o
--- istream.lo ---
mv -f .deps/istream.Tpo .deps/istream.Plo
--- istream-jsonstr.lo ---
/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-jsonstr.lo -MD -MP -MF .deps/istream-jsonstr.Tpo -c -o istream-jsonstr.lo istream-jsonstr.c
--- istream-failure-at.lo ---
mv -f .deps/istream-failure-at.Tpo .deps/istream-failure-at.Plo
--- istream-limit.lo ---
/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-limit.lo -MD -MP -MF .deps/istream-limit.Tpo -c -o istream-limit.lo istream-limit.c
--- istream-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-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 -fPIC -DPIC -o .libs/istream-jsonstr.o
--- istream-limit.lo ---
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-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-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
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-rawlog.lo -MD -MP -MF .deps/istream-rawlog.Tpo -c istream-rawlog.c -fPIC -DPIC -o .libs/istream-rawlog.o
--- istream-limit.lo ---
mv -f .deps/istream-limit.Tpo .deps/istream-limit.Plo
--- istream-seekable.lo ---
/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-seekable.lo -MD -MP -MF .deps/istream-seekable.Tpo -c -o istream-seekable.lo istream-seekable.c
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-jsonstr.lo ---
mv -f .deps/istream-jsonstr.Tpo .deps/istream-jsonstr.Plo
--- istream-sized.lo ---
/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-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
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-sized.lo ---
mv -f .deps/istream-sized.Tpo .deps/istream-sized.Plo
--- istream-timeout.lo ---
--- 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
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT istream-timeout.lo -MD -MP -MF .deps/istream-timeout.Tpo -c istream-timeout.c -fPIC -DPIC -o .libs/istream-timeout.o
--- istream-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-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 -o istream-timeout.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
--- 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
--- 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 -fPIC -DPIC -o .libs/istream-unix.o
--- ioloop.lo ---
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-try.lo ---
mv -f .deps/istream-try.Tpo .deps/istream-try.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-timeout.lo ---
mv -f .deps/istream-timeout.Tpo .deps/istream-timeout.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
--- 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
--- 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-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
--- 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-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 -fPIC -DPIC -o .libs/ioloop-notify-fd.o
--- 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-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-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-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
--- 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
--- 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 -fPIC -DPIC -o .libs/ioloop-poll.o
--- 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 -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
--- 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-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 -fPIC -DPIC -o .libs/ioloop-epoll.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 -fPIC -DPIC -o .libs/ioloop-kqueue.o
--- json-parser.lo ---
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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 ---
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
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
--- 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 -fPIC -DPIC -o .libs/json-tree.o
--- ioloop-kqueue.lo ---
mv -f .deps/ioloop-kqueue.Tpo .deps/ioloop-kqueue.Plo
--- 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
--- 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-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
--- 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
--- 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
--- 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 -fPIC -DPIC -o .libs/lib-event.o
--- lib.lo ---
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
--- 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
--- 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 -fPIC -DPIC -o .libs/lib-signals.o
--- log-throttle.lo ---
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
--- log-throttle.lo ---
mv -f .deps/log-throttle.Tpo .deps/log-throttle.Plo
--- 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 -fPIC -DPIC -o .libs/md4.o
--- 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
--- 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-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
--- 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
--- 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
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mempool.lo -MD -MP -MF .deps/mempool.Tpo -c mempool.c -fPIC -DPIC -o .libs/mempool.o
--- memarea.lo ---
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
--- md5.lo ---
mv -f .deps/md5.Tpo .deps/md5.Plo
--- mempool-allocfree.lo ---
/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mempool-allocfree.lo -MD -MP -MF .deps/mempool-allocfree.Tpo -c -o mempool-allocfree.lo mempool-allocfree.c
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT mempool-allocfree.lo -MD -MP -MF .deps/mempool-allocfree.Tpo -c mempool-allocfree.c -fPIC -DPIC -o .libs/mempool-allocfree.o
--- mempool.lo ---
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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 ---
mv -f .deps/memarea.Tpo .deps/memarea.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
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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.lo ---
mv -f .deps/mempool.Tpo .deps/mempool.Plo
--- mempool-datastack.lo ---
/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-allocfree.lo ---
mv -f .deps/mempool-allocfree.Tpo .deps/mempool-allocfree.Plo
--- mempool-system.lo ---
/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-datastack.lo ---
mv -f .deps/mempool-datastack.Tpo .deps/mempool-datastack.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
--- 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
--- 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-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
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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
--- 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
--- 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
--- 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-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
--- 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-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-anon.lo ---
mv -f .deps/mmap-anon.Tpo .deps/mmap-anon.Plo
--- net.lo ---
/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT net.lo -MD -MP -MF .deps/net.Tpo -c -o net.lo net.c
--- mmap-util.lo ---
mv -f .deps/mmap-util.Tpo .deps/mmap-util.Plo
--- nfs-workarounds.lo ---
/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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
--- 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 -fPIC -DPIC -o .libs/numpack.o
--- module-dir.lo ---
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ostream.lo -MD -MP -MF .deps/ostream.Tpo -c ostream.c -fPIC -DPIC -o .libs/ostream.o
--- numpack.lo ---
mv -f .deps/numpack.Tpo .deps/numpack.Plo
--- ostream-buffer.lo ---
/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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 ---
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ostream-buffer.lo -MD -MP -MF .deps/ostream-buffer.Tpo -c ostream-buffer.c -o ostream-buffer.o >/dev/null 2>&1
mv -f .deps/ostream-buffer.Tpo .deps/ostream-buffer.Plo
--- ostream-failure-at.lo ---
/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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
--- 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 -fPIC -DPIC -o .libs/ostream-failure-at.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 -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
--- net.lo ---
mv -f .deps/net.Tpo .deps/net.Plo
--- ostream-hash.lo ---
/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ostream-hash.lo -MD -MP -MF .deps/ostream-hash.Tpo -c -o ostream-hash.lo ostream-hash.c
--- ostream-failure-at.lo ---
mv -f .deps/ostream-failure-at.Tpo .deps/ostream-failure-at.Plo
--- ostream-multiplex.lo ---
/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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 -fPIC -DPIC -o .libs/ostream-hash.o
--- ostream-multiplex.lo ---
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ostream-multiplex.lo -MD -MP -MF .deps/ostream-multiplex.Tpo -c ostream-multiplex.c -fPIC -DPIC -o .libs/ostream-multiplex.o
--- ostream-hash.lo ---
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ostream-hash.lo -MD -MP -MF .deps/ostream-hash.Tpo -c ostream-hash.c -o ostream-hash.o >/dev/null 2>&1
mv -f .deps/ostream-hash.Tpo .deps/ostream-hash.Plo
--- ostream.lo ---
mv -f .deps/ostream.Tpo .deps/ostream.Plo
--- ostream-null.lo ---
--- ostream-rawlog.lo ---
--- 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
--- 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
--- 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 -fPIC -DPIC -o .libs/ostream-null.o
--- ostream-rawlog.lo ---
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ostream-rawlog.lo -MD -MP -MF .deps/ostream-rawlog.Tpo -c ostream-rawlog.c -fPIC -DPIC -o .libs/ostream-rawlog.o
--- ostream-multiplex.lo ---
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-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-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
--- 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
--- 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 -fPIC -DPIC -o .libs/ostream-unix.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 -fPIC -DPIC -o .libs/ostream-wrapper.o
--- ostream-multiplex.lo ---
mv -f .deps/ostream-multiplex.Tpo .deps/ostream-multiplex.Plo
--- path-util.lo ---
/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT path-util.lo -MD -MP -MF .deps/path-util.Tpo -c -o path-util.lo path-util.c
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT path-util.lo -MD -MP -MF .deps/path-util.Tpo -c path-util.c -fPIC -DPIC -o .libs/path-util.o
--- ostream-unix.lo ---
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT ostream-unix.lo -MD -MP -MF .deps/ostream-unix.Tpo -c ostream-unix.c -o ostream-unix.o >/dev/null 2>&1
mv -f .deps/ostream-unix.Tpo .deps/ostream-unix.Plo
--- pkcs5.lo ---
/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT pkcs5.lo -MD -MP -MF .deps/pkcs5.Tpo -c -o pkcs5.lo pkcs5.c
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT pkcs5.lo -MD -MP -MF .deps/pkcs5.Tpo -c pkcs5.c -fPIC -DPIC -o .libs/pkcs5.o
--- path-util.lo ---
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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
--- 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 -o pkcs5.o >/dev/null 2>&1
--- 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
--- 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
--- primes.lo ---
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 -fPIC -DPIC -o .libs/printf-format-fix.o
--- 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
--- 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
--- 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 -fPIC -DPIC -o .libs/process-title.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
--- 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-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
--- 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
--- printf-format-fix.lo ---
mv -f .deps/printf-format-fix.Tpo .deps/printf-format-fix.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
--- 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 -fPIC -DPIC -o .libs/priorityq.o
--- randgen.lo ---
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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
--- 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
--- 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
--- 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 -fPIC -DPIC -o .libs/rand.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 rand.lo -MD -MP -MF .deps/rand.Tpo -c rand.c -o rand.o >/dev/null 2>&1
--- randgen.lo ---
mv -f .deps/randgen.Tpo .deps/randgen.Plo
--- read-full.lo ---
/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
--- priorityq.lo ---
mv -f .deps/priorityq.Tpo .deps/priorityq.Plo
--- restrict-access.lo ---
/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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
--- 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
--- 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 -fPIC -DPIC -o .libs/safe-memset.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 -o restrict-process-size.o >/dev/null 2>&1
--- 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
--- 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
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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 ---
mv -f .deps/safe-memset.Tpo .deps/safe-memset.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
--- restrict-process-size.lo ---
mv -f .deps/restrict-process-size.Tpo .deps/restrict-process-size.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-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
--- 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
--- 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
--- 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
--- 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
--- 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
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
--- seq-range-array.lo ---
mv -f .deps/seq-range-array.Tpo .deps/seq-range-array.Plo
--- sort.lo ---
/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT sort.lo -MD -MP -MF .deps/sort.Tpo -c -o sort.lo sort.c
--- sha3.lo ---
mv -f .deps/sha3.Tpo .deps/sha3.Plo
--- stats-dist.lo ---
/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT stats-dist.lo -MD -MP -MF .deps/stats-dist.Tpo -c -o stats-dist.lo stats-dist.c
--- sleep.lo ---
mv -f .deps/sleep.Tpo .deps/sleep.Plo
--- str.lo ---
/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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
--- 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 -fPIC -DPIC -o .libs/str-find.o
--- 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
--- 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
--- 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 -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
--- 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
--- 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-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
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT strfuncs.lo -MD -MP -MF .deps/strfuncs.Tpo -c strfuncs.c -fPIC -DPIC -o .libs/strfuncs.o
--- str-table.lo ---
mv -f .deps/str-table.Tpo .deps/str-table.Plo
--- strnum.lo ---
--- str-find.lo ---
mv -f .deps/str-find.Tpo .deps/str-find.Plo
--- strnum.lo ---
/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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
mv -f .deps/unix-socket-create.Tpo .deps/unix-socket-create.Plo
--- unlink-old-files.lo ---
--- 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
--- 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
--- 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
--- unlink-directory.lo ---
mv -f .deps/unlink-directory.Tpo .deps/unlink-directory.Plo
--- unichar.lo ---
/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
--- utc-offset.lo ---
mv -f .deps/utc-offset.Tpo .deps/utc-offset.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
--- unichar.lo ---
mv -f .deps/unichar.Tpo .deps/unichar.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
--- 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
--- 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
--- 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
--- utc-mktime.lo ---
mv -f .deps/utc-mktime.Tpo .deps/utc-mktime.Plo
--- wildcard-match.lo ---
/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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
--- wildcard-match.lo ---
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
--- var-expand-if.lo ---
mv -f .deps/var-expand-if.Tpo .deps/var-expand-if.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
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
--- wildcard-match.lo ---
mv -f .deps/wildcard-match.Tpo .deps/wildcard-match.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
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT event-filter-lexer.lo -MD -MP -MF .deps/event-filter-lexer.Tpo -c event-filter-lexer.c -fPIC -DPIC -o .libs/event-filter-lexer.o
--- var-expand.lo ---
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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 -o write-full.o >/dev/null 2>&1
mv -f .deps/write-full.Tpo .deps/write-full.Plo
--- event-filter-parser.lo ---
/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT event-filter-parser.lo -MD -MP -MF .deps/event-filter-parser.Tpo -c -o event-filter-parser.lo event-filter-parser.c
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -MT event-filter-parser.lo -MD -MP -MF .deps/event-filter-parser.Tpo -c event-filter-parser.c -fPIC -DPIC -o .libs/event-filter-parser.o
--- uri-util.lo ---
mv -f .deps/uri-util.Tpo .deps/uri-util.Plo
--- event-filter-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 ---
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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.lo ---
mv -f .deps/var-expand.Tpo .deps/var-expand.Plo
--- event-filter-parser.lo ---
mv -f .deps/event-filter-parser.Tpo .deps/event-filter-parser.Plo
--- event-filter-lexer.lo ---
mv -f .deps/event-filter-lexer.Tpo .deps/event-filter-lexer.Plo
--- liblib.la ---
/bin/sh ../../libtool --tag=CC --mode=link cc -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -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
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
--- 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
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-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-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 ---
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
--- 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.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
--- 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
--- 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
--- 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 -fPIC -DPIC -o .libs/dns-util.o
--- test_dns_util-test-dns-util.o ---
mv -f .deps/test_dns_util-test-dns-util.Tpo .deps/test_dns_util-test-dns-util.Po
--- dns-util.lo ---
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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
--- test-master-service-settings-cache.o ---
mv -f .deps/test-master-service-settings-cache.Tpo .deps/test-master-service-settings-cache.Po
--- ipc-server.lo ---
/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-dns -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-ssl-iostream -DPKG_RUNDIR=\""/var/run/dovecot"\" -DPKG_STATEDIR=\""/var/db/dovecot"\" -DSYSCONFDIR=\""/usr/local/etc/dovecot"\" -DBINDIR=\""/usr/local/bin"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-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-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
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
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 ---
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-settings.lo ---
mv -f .deps/master-service-settings.Tpo .deps/master-service-settings.Plo
--- stats-client.lo ---
/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-dns -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-ssl-iostream -DPKG_RUNDIR=\""/var/run/dovecot"\" -DPKG_STATEDIR=\""/var/db/dovecot"\" -DSYSCONFDIR=\""/usr/local/etc/dovecot"\" -DBINDIR=\""/usr/local/bin"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-ssl.lo ---
mv -f .deps/master-service-ssl.Tpo .deps/master-service-ssl.Plo
--- syslog-util.lo ---
/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-auth -I../../src/lib-dns -I../../src/lib-test -I../../src/lib-settings -I../../src/lib-ssl-iostream -DPKG_RUNDIR=\""/var/run/dovecot"\" -DPKG_STATEDIR=\""/var/db/dovecot"\" -DSYSCONFDIR=\""/usr/local/etc/dovecot"\" -DBINDIR=\""/usr/local/bin"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
--- 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.lo ---
mv -f .deps/master-service.Tpo .deps/master-service.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
--- 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 -o syslog-util.o >/dev/null 2>&1
--- 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
--- syslog-util.lo ---
mv -f .deps/syslog-util.Tpo .deps/syslog-util.Plo
--- stats-client.lo ---
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.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
--- 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 ---
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
--- 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.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
--- 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
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
--- 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.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]
79 | ENGINE_finish(dovecot_openssl_engine);
| ^
/usr/local/include/openssl/engine.h:628:1: note: 'ENGINE_finish' has been explicitly marked deprecated here
628 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dovecot-openssl-common.c:113:2: warning: 'ENGINE_load_builtin_engines' is deprecated [-Wdeprecated-declarations]
113 | ENGINE_load_builtin_engines();
| ^
/usr/local/include/openssl/engine.h:358:1: note: 'ENGINE_load_builtin_engines' has been explicitly marked deprecated here
358 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dovecot-openssl-common.c:114:27: warning: 'ENGINE_by_id' is deprecated [-Wdeprecated-declarations]
114 | dovecot_openssl_engine = ENGINE_by_id(engine);
| ^
--- iostream-openssl-common.lo ---
iostream-openssl-common.c:273:16: warning: 'ERR_get_error_line_data' is deprecated [-Wdeprecated-declarations]
273 | 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
424 | OSSL_DEPRECATEDIN_3_0
| ^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
--- dovecot-openssl-common.lo ---
/usr/local/include/openssl/engine.h:336:1: note: 'ENGINE_by_id' has been explicitly marked deprecated here
336 | OSSL_DEPRECATEDIN_3_0 ENGINE *ENGINE_by_id(const char *id);
| ^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dovecot-openssl-common.c:119:6: warning: 'ENGINE_init' is deprecated [-Wdeprecated-declarations]
119 | if (ENGINE_init(dovecot_openssl_engine) == 0) {
| ^
/usr/local/include/openssl/engine.h:620:1: note: 'ENGINE_init' has been explicitly marked deprecated here
620 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dovecot-openssl-common.c:121:3: warning: 'ENGINE_free' is deprecated [-Wdeprecated-declarations]
121 | ENGINE_free(dovecot_openssl_engine);
| ^
/usr/local/include/openssl/engine.h:493:1: note: 'ENGINE_free' has been explicitly marked deprecated here
493 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dovecot-openssl-common.c:125:6: warning: 'ENGINE_set_default' is deprecated [-Wdeprecated-declarations]
125 | 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
708 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dovecot-openssl-common.c:127:3: warning: 'ENGINE_free' is deprecated [-Wdeprecated-declarations]
127 | ENGINE_free(dovecot_openssl_engine);
| ^
/usr/local/include/openssl/engine.h:493:1: note: 'ENGINE_free' has been explicitly marked deprecated here
493 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # 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]
--- iostream-openssl-common.lo ---
mv -f .deps/iostream-openssl-common.Tpo .deps/iostream-openssl-common.Plo
--- 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-context.lo ---
34 | RSA *rsa = RSA_new();
| ^
/usr/local/include/openssl/rsa.h:201:1: note: 'RSA_new' has been explicitly marked deprecated here
201 | OSSL_DEPRECATEDIN_3_0 RSA *RSA_new(void);
| ^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
iostream-openssl-context.c:37:6: warning: 'RSA_generate_key_ex' is deprecated [-Wdeprecated-declarations]
37 | 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
--- ostream-openssl.lo ---
--- iostream-openssl-context.lo ---
260 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
iostream-openssl-context.c:45:3: warning: 'RSA_free' is deprecated [-Wdeprecated-declarations]
45 | RSA_free(rsa);
| ^
/usr/local/include/openssl/rsa.h:293:1: note: 'RSA_free' has been explicitly marked deprecated here
293 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
iostream-openssl-context.c:136:7: warning: 'PEM_read_bio_DHparams' is deprecated [-Wdeprecated-declarations]
136 | 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
469 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
--- 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
--- iostream-openssl-context.lo ---
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
iostream-openssl-context.c:185:2: warning: 'DH_free' is deprecated [-Wdeprecated-declarations]
185 | DH_free(dh);
| ^
/usr/local/include/openssl/dh.h:204:1: note: 'DH_free' has been explicitly marked deprecated here
204 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
iostream-openssl-context.c:564:3: warning: 'SSL_CTX_set_tmp_dh_callback' is deprecated [-Wdeprecated-declarations]
564 | 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
2226 | OSSL_DEPRECATEDIN_3_0
| ^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
--- 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 -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
--- istream-openssl.lo ---
mv -f .deps/istream-openssl.Tpo .deps/istream-openssl.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
--- iostream-openssl-context.lo ---
mv -f .deps/iostream-openssl-context.Tpo .deps/iostream-openssl-context.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.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-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
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.lo ---
mv -f .deps/iostream-ssl.Tpo .deps/iostream-ssl.Plo
--- 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-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]
255 | 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
1062 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:256:6: warning: 'EC_KEY_get0_group' is deprecated [-Wdeprecated-declarations]
256 | 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
1034 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:583:2: warning: 'HMAC_CTX_free' is deprecated [-Wdeprecated-declarations]
583 | HMAC_CTX_free((*ctx)->ctx);
| ^
dcrypt-openssl.c:98:15: note: expanded from macro 'HMAC_CTX_free'
98 | 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
35 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:631:13: warning: 'HMAC_CTX_new' is deprecated [-Wdeprecated-declarations]
631 | ctx->ctx = HMAC_CTX_new();
| ^
/usr/local/include/openssl/hmac.h:33:1: note: 'HMAC_CTX_new' has been explicitly marked deprecated here
33 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:635:7: warning: 'HMAC_Init_ex' is deprecated [-Wdeprecated-declarations]
635 | 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
43 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:648:7: warning: 'HMAC_Update' is deprecated [-Wdeprecated-declarations]
648 | 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
45 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:662:7: warning: 'HMAC_Final' is deprecated [-Wdeprecated-declarations]
662 | ec = HMAC_Final(ctx->ctx, buf, &outl);
| ^
/usr/local/include/openssl/hmac.h:47:1: note: 'HMAC_Final' has been explicitly marked deprecated here
47 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:663:2: warning: 'HMAC_CTX_free' is deprecated [-Wdeprecated-declarations]
663 | HMAC_CTX_free(ctx->ctx);
| ^
dcrypt-openssl.c:98:15: note: expanded from macro 'HMAC_CTX_free'
98 | 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
35 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:706:2: warning: 'EC_KEY_set_asn1_flag' is deprecated [-Wdeprecated-declarations]
706 | 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
1087 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:706:23: warning: 'EVP_PKEY_get0_EC_KEY' is deprecated [-Wdeprecated-declarations]
706 | 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
1373 | OSSL_DEPRECATEDIN_3_0
| ^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # 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]
706 | 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
1087 | OSSL_DEPRECATEDIN_3_0 void EC_KEY_set_asn1_flag(EC_KEY *eckey, int asn1_flag);
| ^
--- 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:777:24: warning: 'EC_KEY_get0_group' is deprecated [-Wdeprecated-declarations]
777 | 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
1034 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:777:42: warning: 'EVP_PKEY_get0_EC_KEY' is deprecated [-Wdeprecated-declarations]
777 | 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
1373 | OSSL_DEPRECATEDIN_3_0
| ^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:788:19: warning: 'EC_KEY_new' is deprecated [-Wdeprecated-declarations]
788 | 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
968 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:793:6: warning: 'EC_KEY_set_group' is deprecated [-Wdeprecated-declarations]
793 | 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
1042 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:794:6: warning: 'EC_KEY_set_public_key' is deprecated [-Wdeprecated-declarations]
794 | 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
1070 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:801:18: warning: 'EC_KEY_check_key' is deprecated [-Wdeprecated-declarations]
801 | 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
1107 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:802:3: warning: 'EC_KEY_free' is deprecated [-Wdeprecated-declarations]
802 | EC_KEY_free(ec_key);
| ^
/usr/local/include/openssl/ec.h:1003:1: note: 'EC_KEY_free' has been explicitly marked deprecated here
1003 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:808:3: warning: 'EC_KEY_free' is deprecated [-Wdeprecated-declarations]
808 | EC_KEY_free(ec_key);
| ^
/usr/local/include/openssl/ec.h:1003:1: note: 'EC_KEY_free' has been explicitly marked deprecated here
1003 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:811:2: warning: 'EVP_PKEY_set1_EC_KEY' is deprecated [-Wdeprecated-declarations]
811 | 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
1371 | OSSL_DEPRECATEDIN_3_0
| ^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:812:2: warning: 'EC_KEY_free' is deprecated [-Wdeprecated-declarations]
812 | EC_KEY_free(ec_key);
| ^
/usr/local/include/openssl/ec.h:1003:1: note: 'EC_KEY_free' has been explicitly marked deprecated here
1003 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:842:3: warning: 'EC_KEY_get0_group' is deprecated [-Wdeprecated-declarations]
842 | 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
1034 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:842:21: warning: 'EVP_PKEY_get0_EC_KEY' is deprecated [-Wdeprecated-declarations]
842 | 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
1373 | OSSL_DEPRECATEDIN_3_0
| ^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:858:24: warning: 'EC_KEY_get0_public_key' is deprecated [-Wdeprecated-declarations]
858 | 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
1062 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:858:47: warning: 'EVP_PKEY_get0_EC_KEY' is deprecated [-Wdeprecated-declarations]
858 | 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
1373 | OSSL_DEPRECATEDIN_3_0
| ^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:859:24: warning: 'EC_KEY_get0_group' is deprecated [-Wdeprecated-declarations]
859 | 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
1034 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:859:42: warning: 'EVP_PKEY_get0_EC_KEY' is deprecated [-Wdeprecated-declarations]
859 | 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
1373 | OSSL_DEPRECATEDIN_3_0
| ^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1099:18: warning: 'EC_KEY_new_by_curve_name' is deprecated [-Wdeprecated-declarations]
1099 | 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
998 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1105:3: warning: 'EC_KEY_free' is deprecated [-Wdeprecated-declarations]
1105 | EC_KEY_free(eckey);
| ^
/usr/local/include/openssl/ec.h:1003:1: note: 'EC_KEY_free' has been explicitly marked deprecated here
1003 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1108:2: warning: 'EC_KEY_set_private_key' is deprecated [-Wdeprecated-declarations]
1108 | 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
1056 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1109:2: warning: 'EC_KEY_precompute_mult' is deprecated [-Wdeprecated-declarations]
1109 | 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
1095 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1110:2: warning: 'EC_KEY_set_asn1_flag' is deprecated [-Wdeprecated-declarations]
1110 | 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
1087 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1111:31: warning: 'EC_KEY_get0_group' is deprecated [-Wdeprecated-declarations]
1111 | 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
1034 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1113:3: warning: 'EC_KEY_free' is deprecated [-Wdeprecated-declarations]
1113 | EC_KEY_free(eckey);
| ^
/usr/local/include/openssl/ec.h:1003:1: note: 'EC_KEY_free' has been explicitly marked deprecated here
1003 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1118:20: warning: 'EC_KEY_get0_group' is deprecated [-Wdeprecated-declarations]
1118 | 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
1034 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1120:2: warning: 'EC_KEY_set_public_key' is deprecated [-Wdeprecated-declarations]
1120 | 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
1070 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1126:17: warning: 'EC_KEY_check_key' is deprecated [-Wdeprecated-declarations]
1126 | 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
1107 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1131:4: warning: 'EC_KEY_free' is deprecated [-Wdeprecated-declarations]
1131 | EC_KEY_free(eckey);
| ^
/usr/local/include/openssl/ec.h:1003:1: note: 'EC_KEY_free' has been explicitly marked deprecated here
1003 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1140:4: warning: 'EC_KEY_free' is deprecated [-Wdeprecated-declarations]
1140 | EC_KEY_free(eckey);
| ^
/usr/local/include/openssl/ec.h:1003:1: note: 'EC_KEY_free' has been explicitly marked deprecated here
1003 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1145:4: warning: 'EC_KEY_free' is deprecated [-Wdeprecated-declarations]
1145 | EC_KEY_free(eckey);
| ^
/usr/local/include/openssl/ec.h:1003:1: note: 'EC_KEY_free' has been explicitly marked deprecated here
1003 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1148:3: warning: 'EVP_PKEY_set1_EC_KEY' is deprecated [-Wdeprecated-declarations]
1148 | 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
1371 | OSSL_DEPRECATEDIN_3_0
| ^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1149:3: warning: 'EC_KEY_free' is deprecated [-Wdeprecated-declarations]
1149 | EC_KEY_free(eckey);
| ^
/usr/local/include/openssl/ec.h:1003:1: note: 'EC_KEY_free' has been explicitly marked deprecated here
1003 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1156:2: warning: 'EC_KEY_free' is deprecated [-Wdeprecated-declarations]
1156 | EC_KEY_free(eckey);
| ^
/usr/local/include/openssl/ec.h:1003:1: note: 'EC_KEY_free' has been explicitly marked deprecated here
1003 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1346:14: warning: 'RSA_new' is deprecated [-Wdeprecated-declarations]
1346 | RSA *rsa = RSA_new();
| ^
/usr/local/include/openssl/rsa.h:201:1: note: 'RSA_new' has been explicitly marked deprecated here
201 | OSSL_DEPRECATEDIN_3_0 RSA *RSA_new(void);
| ^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1349:7: warning: 'd2i_RSAPrivateKey' is deprecated [-Wdeprecated-declarations]
1349 | 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
309 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1350:7: warning: 'RSA_check_key' is deprecated [-Wdeprecated-declarations]
1350 | RSA_check_key(rsa) != 1) {
| ^
/usr/local/include/openssl/rsa.h:278:1: note: 'RSA_check_key' has been explicitly marked deprecated here
278 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1353:4: warning: 'RSA_free' is deprecated [-Wdeprecated-declarations]
1353 | RSA_free(rsa);
| ^
/usr/local/include/openssl/rsa.h:293:1: note: 'RSA_free' has been explicitly marked deprecated here
293 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1361:4: warning: 'RSA_free' is deprecated [-Wdeprecated-declarations]
1361 | RSA_free(rsa);
| ^
/usr/local/include/openssl/rsa.h:293:1: note: 'RSA_free' has been explicitly marked deprecated here
293 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1364:3: warning: 'EVP_PKEY_set1_RSA' is deprecated [-Wdeprecated-declarations]
1364 | 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
1345 | OSSL_DEPRECATEDIN_3_0
| ^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1365:3: warning: 'RSA_free' is deprecated [-Wdeprecated-declarations]
1365 | RSA_free(rsa);
| ^
/usr/local/include/openssl/rsa.h:293:1: note: 'RSA_free' has been explicitly marked deprecated here
293 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1379:19: warning: 'EC_KEY_new_by_curve_name' is deprecated [-Wdeprecated-declarations]
1379 | 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
998 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1386:4: warning: 'EC_KEY_free' is deprecated [-Wdeprecated-declarations]
1386 | EC_KEY_free(eckey);
| ^
/usr/local/include/openssl/ec.h:1003:1: note: 'EC_KEY_free' has been explicitly marked deprecated here
1003 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1390:3: warning: 'EC_KEY_set_private_key' is deprecated [-Wdeprecated-declarations]
1390 | 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
1056 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1391:3: warning: 'EC_KEY_precompute_mult' is deprecated [-Wdeprecated-declarations]
1391 | 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
1095 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1392:3: warning: 'EC_KEY_set_asn1_flag' is deprecated [-Wdeprecated-declarations]
1392 | 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
1087 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1393:32: warning: 'EC_KEY_get0_group' is deprecated [-Wdeprecated-declarations]
1393 | 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
1034 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1398:22: warning: 'EC_KEY_get0_group' is deprecated [-Wdeprecated-declarations]
1398 | 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
1034 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1400:4: warning: 'EC_KEY_set_public_key' is deprecated [-Wdeprecated-declarations]
1400 | 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
1070 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1407:33: warning: 'EC_KEY_check_key' is deprecated [-Wdeprecated-declarations]
1407 | if (ec == 1 && key != NULL && EC_KEY_check_key(eckey) == 1) {
| ^
--- 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 ---
/usr/local/include/openssl/ec.h:1107:1: note: 'EC_KEY_check_key' has been explicitly marked deprecated here
1107 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1408:4: warning: 'EVP_PKEY_set1_EC_KEY' is deprecated [-Wdeprecated-declarations]
1408 | 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
1371 | OSSL_DEPRECATEDIN_3_0
| ^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1409:4: warning: 'EC_KEY_free' is deprecated [-Wdeprecated-declarations]
1409 | EC_KEY_free(eckey);
| ^
/usr/local/include/openssl/ec.h:1003:1: note: 'EC_KEY_free' has been explicitly marked deprecated here
1003 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1415:4: warning: 'EC_KEY_free' is deprecated [-Wdeprecated-declarations]
1415 | EC_KEY_free(eckey);
| ^
/usr/local/include/openssl/ec.h:1003:1: note: 'EC_KEY_free' has been explicitly marked deprecated here
1003 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1536:19: warning: 'EC_KEY_new_by_curve_name' is deprecated [-Wdeprecated-declarations]
1536 | 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
998 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1547:3: warning: 'EC_KEY_free' is deprecated [-Wdeprecated-declarations]
1547 | EC_KEY_free(ec_key);
| ^
/usr/local/include/openssl/ec.h:1003:1: note: 'EC_KEY_free' has been explicitly marked deprecated here
1003 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1553:12: warning: 'EC_KEY_set_public_key_affine_coordinates' is deprecated [-Wdeprecated-declarations]
1553 | 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
1122 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1558:3: warning: 'EC_KEY_free' is deprecated [-Wdeprecated-declarations]
1558 | EC_KEY_free(ec_key);
| ^
/usr/local/include/openssl/ec.h:1003:1: note: 'EC_KEY_free' has been explicitly marked deprecated here
1003 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1567:4: warning: 'EC_KEY_free' is deprecated [-Wdeprecated-declarations]
1567 | EC_KEY_free(ec_key);
| ^
/usr/local/include/openssl/ec.h:1003:1: note: 'EC_KEY_free' has been explicitly marked deprecated here
1003 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1570:9: warning: 'EC_KEY_set_private_key' is deprecated [-Wdeprecated-declarations]
1570 | 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
1056 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1573:4: warning: 'EC_KEY_free' is deprecated [-Wdeprecated-declarations]
1573 | EC_KEY_free(ec_key);
| ^
/usr/local/include/openssl/ec.h:1003:1: note: 'EC_KEY_free' has been explicitly marked deprecated here
1003 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1578:6: warning: 'EC_KEY_check_key' is deprecated [-Wdeprecated-declarations]
1578 | 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
1107 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1579:3: warning: 'EC_KEY_free' is deprecated [-Wdeprecated-declarations]
1579 | EC_KEY_free(ec_key);
| ^
/usr/local/include/openssl/ec.h:1003:1: note: 'EC_KEY_free' has been explicitly marked deprecated here
1003 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1583:2: warning: 'EC_KEY_precompute_mult' is deprecated [-Wdeprecated-declarations]
1583 | 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
1095 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1584:2: warning: 'EC_KEY_set_asn1_flag' is deprecated [-Wdeprecated-declarations]
1584 | 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
1087 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1588:2: warning: 'EVP_PKEY_set1_EC_KEY' is deprecated [-Wdeprecated-declarations]
1588 | 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
1371 | OSSL_DEPRECATEDIN_3_0
| ^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1589:2: warning: 'EC_KEY_free' is deprecated [-Wdeprecated-declarations]
1589 | EC_KEY_free(ec_key);
| ^
/usr/local/include/openssl/ec.h:1003:1: note: 'EC_KEY_free' has been explicitly marked deprecated here
1003 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1732:17: warning: 'RSA_new' is deprecated [-Wdeprecated-declarations]
1732 | RSA *rsa_key = RSA_new();
| ^
/usr/local/include/openssl/rsa.h:201:1: note: 'RSA_new' has been explicitly marked deprecated here
201 | OSSL_DEPRECATEDIN_3_0 RSA *RSA_new(void);
| ^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1741:6: warning: 'RSA_set0_key' is deprecated [-Wdeprecated-declarations]
1741 | 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
207 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1746:3: warning: 'RSA_free' is deprecated [-Wdeprecated-declarations]
1746 | RSA_free(rsa_key);
| ^
/usr/local/include/openssl/rsa.h:293:1: note: 'RSA_free' has been explicitly marked deprecated here
293 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1768:7: warning: 'RSA_set0_factors' is deprecated [-Wdeprecated-declarations]
1768 | 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
208 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1769:4: warning: 'RSA_free' is deprecated [-Wdeprecated-declarations]
1769 | RSA_free(rsa_key);
| ^
/usr/local/include/openssl/rsa.h:293:1: note: 'RSA_free' has been explicitly marked deprecated here
293 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1776:14: warning: 'RSA_set0_crt_params' is deprecated [-Wdeprecated-declarations]
1776 | } 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
209 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1777:4: warning: 'RSA_free' is deprecated [-Wdeprecated-declarations]
1777 | RSA_free(rsa_key);
| ^
/usr/local/include/openssl/rsa.h:293:1: note: 'RSA_free' has been explicitly marked deprecated here
293 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1787:2: warning: 'EVP_PKEY_set1_RSA' is deprecated [-Wdeprecated-declarations]
1787 | 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
1345 | OSSL_DEPRECATEDIN_3_0
| ^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1788:2: warning: 'RSA_free' is deprecated [-Wdeprecated-declarations]
1788 | RSA_free(rsa_key);
| ^
/usr/local/include/openssl/rsa.h:293:1: note: 'RSA_free' has been explicitly marked deprecated here
293 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1936:25: warning: 'EVP_PKEY_get0_EC_KEY' is deprecated [-Wdeprecated-declarations]
1936 | 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
1373 | OSSL_DEPRECATEDIN_3_0
| ^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1939:36: warning: 'EC_KEY_get0_group' is deprecated [-Wdeprecated-declarations]
1939 | 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
1034 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1940:33: warning: 'EC_KEY_get0_public_key' is deprecated [-Wdeprecated-declarations]
1940 | 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
1062 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1945:6: warning: 'EC_POINT_get_affine_coordinates_GFp' is deprecated [-Wdeprecated-declarations]
1945 | 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
659 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1945:42: warning: 'EC_KEY_get0_group' is deprecated [-Wdeprecated-declarations]
1945 | 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
1034 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:1973:21: warning: 'EC_KEY_get0_private_key' is deprecated [-Wdeprecated-declarations]
1973 | 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
1048 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:2039:18: warning: 'EC_KEY_new_by_curve_name' is deprecated [-Wdeprecated-declarations]
2039 | 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
998 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:2045:2: warning: 'EC_KEY_set_asn1_flag' is deprecated [-Wdeprecated-declarations]
2045 | 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
1087 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:2048:33: warning: 'EC_KEY_get0_group' is deprecated [-Wdeprecated-declarations]
2048 | 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
1034 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:2050:25: warning: 'EC_KEY_get0_group' is deprecated [-Wdeprecated-declarations]
2050 | 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
1034 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:2053:3: warning: 'EC_KEY_free' is deprecated [-Wdeprecated-declarations]
2053 | EC_KEY_free(eckey);
| ^
/usr/local/include/openssl/ec.h:1003:1: note: 'EC_KEY_free' has been explicitly marked deprecated here
1003 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:2060:2: warning: 'EC_KEY_set_public_key' is deprecated [-Wdeprecated-declarations]
2060 | 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
1070 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:2061:2: warning: 'EC_KEY_set_asn1_flag' is deprecated [-Wdeprecated-declarations]
2061 | 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
1087 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:2065:6: warning: 'EC_KEY_check_key' is deprecated [-Wdeprecated-declarations]
2065 | 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
1107 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:2067:3: warning: 'EVP_PKEY_set1_EC_KEY' is deprecated [-Wdeprecated-declarations]
2067 | 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
1371 | OSSL_DEPRECATEDIN_3_0
| ^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:2068:3: warning: 'EC_KEY_free' is deprecated [-Wdeprecated-declarations]
2068 | EC_KEY_free(eckey);
| ^
/usr/local/include/openssl/ec.h:1003:1: note: 'EC_KEY_free' has been explicitly marked deprecated here
1003 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:2255:4: warning: 'EC_KEY_get0_group' is deprecated [-Wdeprecated-declarations]
2255 | 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
1034 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:2255:22: warning: 'EVP_PKEY_get0_EC_KEY' is deprecated [-Wdeprecated-declarations]
2255 | 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
1373 | OSSL_DEPRECATEDIN_3_0
| ^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:2256:3: warning: 'EC_KEY_set_conv_form' is deprecated [-Wdeprecated-declarations]
2256 | 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
1075 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:2256:24: warning: 'EVP_PKEY_get0_EC_KEY' is deprecated [-Wdeprecated-declarations]
2256 | 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
1373 | OSSL_DEPRECATEDIN_3_0
| ^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # 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]
2256 | 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
1075 | 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]
2277 | RSA *rsa = EVP_PKEY_get0_RSA(pkey);
| ^ ~~~~~~~~~~~~~~~~~~~~~~~
dcrypt-openssl.c:2277:14: warning: 'EVP_PKEY_get0_RSA' is deprecated [-Wdeprecated-declarations]
2277 | 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
1347 | OSSL_DEPRECATEDIN_3_0
| ^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:2278:13: warning: 'i2d_RSAPrivateKey' is deprecated [-Wdeprecated-declarations]
2278 | int len = i2d_RSAPrivateKey(rsa, &ptr);
| ^
/usr/local/include/openssl/rsa.h:309:41: note: 'i2d_RSAPrivateKey' has been explicitly marked deprecated here
309 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # 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]
2284 | EC_KEY *eckey = EVP_PKEY_get0_EC_KEY(pkey);
| ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~
dcrypt-openssl.c:2284:19: warning: 'EVP_PKEY_get0_EC_KEY' is deprecated [-Wdeprecated-declarations]
2284 | 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
1373 | OSSL_DEPRECATEDIN_3_0
| ^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:2285:22: warning: 'EC_KEY_get0_private_key' is deprecated [-Wdeprecated-declarations]
2285 | 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
1048 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:2350:3: warning: 'EC_KEY_set_conv_form' is deprecated [-Wdeprecated-declarations]
2350 | 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
1075 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:2350:24: warning: 'EVP_PKEY_get0_EC_KEY' is deprecated [-Wdeprecated-declarations]
2350 | 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
1373 | OSSL_DEPRECATEDIN_3_0
| ^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # 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]
2350 | 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
1075 | 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]
2422 | 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
1087 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:2422:24: warning: 'EVP_PKEY_get0_EC_KEY' is deprecated [-Wdeprecated-declarations]
2422 | 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
1373 | OSSL_DEPRECATEDIN_3_0
| ^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # 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]
2422 | 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
1087 | 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]
2484 | 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
634 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:2486:4: warning: 'EC_KEY_set_asn1_flag' is deprecated [-Wdeprecated-declarations]
2486 | 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
1087 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:2489:5: warning: 'EVP_PKEY_set1_EC_KEY' is deprecated [-Wdeprecated-declarations]
2489 | 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
1371 | OSSL_DEPRECATEDIN_3_0
| ^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:2490:4: warning: 'EC_KEY_free' is deprecated [-Wdeprecated-declarations]
2490 | EC_KEY_free(eckey);
| ^
/usr/local/include/openssl/ec.h:1003:1: note: 'EC_KEY_free' has been explicitly marked deprecated here
1003 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:2535:3: warning: 'EC_KEY_set_conv_form' is deprecated [-Wdeprecated-declarations]
2535 | 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
1075 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:2535:24: warning: 'EVP_PKEY_get0_EC_KEY' is deprecated [-Wdeprecated-declarations]
2535 | 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
1373 | OSSL_DEPRECATEDIN_3_0
| ^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # 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]
2535 | 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
1075 | 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]
2597 | 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
1075 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:2597:24: warning: 'EVP_PKEY_get0_EC_KEY' is deprecated [-Wdeprecated-declarations]
2597 | 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
1373 | OSSL_DEPRECATEDIN_3_0
| ^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # 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]
2597 | 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
1075 | 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]
2612 | 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
635 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:2612:31: warning: 'EVP_PKEY_get0_EC_KEY' is deprecated [-Wdeprecated-declarations]
2612 | 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
1373 | OSSL_DEPRECATEDIN_3_0
| ^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:2649:14: warning: 'RSAPublicKey_dup' is deprecated [-Wdeprecated-declarations]
2649 | 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
448 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:2649:31: warning: 'EVP_PKEY_get0_RSA' is deprecated [-Wdeprecated-declarations]
2649 | 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
1347 | OSSL_DEPRECATEDIN_3_0
| ^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:2650:3: warning: 'EVP_PKEY_set1_RSA' is deprecated [-Wdeprecated-declarations]
2650 | 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
1345 | OSSL_DEPRECATEDIN_3_0
| ^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:2651:3: warning: 'RSA_free' is deprecated [-Wdeprecated-declarations]
2651 | RSA_free(rsa);
| ^
/usr/local/include/openssl/rsa.h:293:1: note: 'RSA_free' has been explicitly marked deprecated here
293 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:2653:17: warning: 'EVP_PKEY_get1_EC_KEY' is deprecated [-Wdeprecated-declarations]
2653 | 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
1375 | OSSL_DEPRECATEDIN_3_0
| ^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:2654:3: warning: 'EC_KEY_set_asn1_flag' is deprecated [-Wdeprecated-declarations]
2654 | 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
1087 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:2655:3: warning: 'EVP_PKEY_set1_EC_KEY' is deprecated [-Wdeprecated-declarations]
2655 | 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
1371 | OSSL_DEPRECATEDIN_3_0
| ^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:2656:3: warning: 'EC_KEY_free' is deprecated [-Wdeprecated-declarations]
2656 | EC_KEY_free(eck);
| ^
/usr/local/include/openssl/ec.h:1003:1: note: 'EC_KEY_free' has been explicitly marked deprecated here
1003 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:3004:46: warning: 'EVP_PKEY_get0_EC_KEY' is deprecated [-Wdeprecated-declarations]
3004 | 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
1373 | OSSL_DEPRECATEDIN_3_0
| ^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:3027:46: warning: 'EVP_PKEY_get0_EC_KEY' is deprecated [-Wdeprecated-declarations]
3027 | 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
1373 | OSSL_DEPRECATEDIN_3_0
| ^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:3047:3: warning: 'EC_KEY_set_conv_form' is deprecated [-Wdeprecated-declarations]
3047 | 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
1075 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:3047:24: warning: 'EVP_PKEY_get0_EC_KEY' is deprecated [-Wdeprecated-declarations]
3047 | 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
1373 | OSSL_DEPRECATEDIN_3_0
| ^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # 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]
3047 | 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
1075 | 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]
3163 | 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]
3163 | 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
1373 | OSSL_DEPRECATEDIN_3_0
| ^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:3165:35: warning: 'EC_KEY_get0_group' is deprecated [-Wdeprecated-declarations]
3165 | 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
1034 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:3174:16: warning: 'ECDSA_do_sign' is deprecated [-Wdeprecated-declarations]
3174 | 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
1365 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # 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]
3281 | 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]
3281 | 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
1373 | OSSL_DEPRECATEDIN_3_0
| ^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:3310:7: warning: 'ECDSA_do_verify' is deprecated [-Wdeprecated-declarations]
3310 | 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
1391 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # 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]
3399 | EC_KEY *key = EVP_PKEY_get0_EC_KEY(priv);
| ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~
dcrypt-openssl.c:3399:17: warning: 'EVP_PKEY_get0_EC_KEY' is deprecated [-Wdeprecated-declarations]
3399 | 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
1373 | OSSL_DEPRECATEDIN_3_0
| ^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:3400:3: warning: 'EC_KEY_set_conv_form' is deprecated [-Wdeprecated-declarations]
3400 | 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
1075 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:3401:37: warning: 'EC_KEY_get0_group' is deprecated [-Wdeprecated-declarations]
3401 | 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
1034 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:3415:21: warning: 'EC_KEY_get0_private_key' is deprecated [-Wdeprecated-declarations]
3415 | 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
1048 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # 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]
3450 | EC_KEY *key = EVP_PKEY_get0_EC_KEY(pub);
| ^ ~~~~~~~~~~~~~~~~~~~~~~~~~
dcrypt-openssl.c:3450:17: warning: 'EVP_PKEY_get0_EC_KEY' is deprecated [-Wdeprecated-declarations]
3450 | 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
1373 | OSSL_DEPRECATEDIN_3_0
| ^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:3451:3: warning: 'EC_KEY_set_conv_form' is deprecated [-Wdeprecated-declarations]
3451 | 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
1075 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:3452:37: warning: 'EC_KEY_get0_group' is deprecated [-Wdeprecated-declarations]
3452 | 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
1034 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:3467:27: warning: 'EC_KEY_get0_public_key' is deprecated [-Wdeprecated-declarations]
3467 | 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
1062 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:3468:28: warning: 'EC_KEY_get0_group' is deprecated [-Wdeprecated-declarations]
3468 | 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
1034 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:3475:26: warning: 'EC_KEY_get0_group' is deprecated [-Wdeprecated-declarations]
3475 | 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
1034 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:3526:17: warning: 'EC_KEY_new_by_curve_name' is deprecated [-Wdeprecated-declarations]
3526 | 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
998 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:3527:8: warning: 'EC_KEY_set_private_key' is deprecated [-Wdeprecated-declarations]
3527 | 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
1056 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:3531:4: warning: 'EC_KEY_free' is deprecated [-Wdeprecated-declarations]
3531 | EC_KEY_free(key);
| ^
/usr/local/include/openssl/ec.h:1003:1: note: 'EC_KEY_free' has been explicitly marked deprecated here
1003 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:3536:32: warning: 'EC_KEY_get0_group' is deprecated [-Wdeprecated-declarations]
3536 | 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
1034 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:3538:4: warning: 'EC_KEY_free' is deprecated [-Wdeprecated-declarations]
3538 | EC_KEY_free(key);
| ^
/usr/local/include/openssl/ec.h:1003:1: note: 'EC_KEY_free' has been explicitly marked deprecated here
1003 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:3542:21: warning: 'EC_KEY_get0_group' is deprecated [-Wdeprecated-declarations]
3542 | 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
1034 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:3543:7: warning: 'EC_KEY_get0_private_key' is deprecated [-Wdeprecated-declarations]
3543 | 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
1048 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:3546:9: warning: 'EC_KEY_set_public_key' is deprecated [-Wdeprecated-declarations]
3546 | 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
1070 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:3550:18: warning: 'EC_KEY_check_key' is deprecated [-Wdeprecated-declarations]
3550 | 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
1107 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:3551:4: warning: 'EC_KEY_free' is deprecated [-Wdeprecated-declarations]
3551 | EC_KEY_free(key);
| ^
/usr/local/include/openssl/ec.h:1003:1: note: 'EC_KEY_free' has been explicitly marked deprecated here
1003 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:3554:3: warning: 'EC_KEY_set_asn1_flag' is deprecated [-Wdeprecated-declarations]
3554 | 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
1087 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:3557:3: warning: 'EVP_PKEY_set1_EC_KEY' is deprecated [-Wdeprecated-declarations]
3557 | 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
1371 | OSSL_DEPRECATEDIN_3_0
| ^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:3558:3: warning: 'EC_KEY_free' is deprecated [-Wdeprecated-declarations]
3558 | EC_KEY_free(key);
| ^
/usr/local/include/openssl/ec.h:1003:1: note: 'EC_KEY_free' has been explicitly marked deprecated here
1003 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:3616:17: warning: 'EC_KEY_new' is deprecated [-Wdeprecated-declarations]
3616 | EC_KEY *key = EC_KEY_new();
| ^
/usr/local/include/openssl/ec.h:968:1: note: 'EC_KEY_new' has been explicitly marked deprecated here
968 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:3617:8: warning: 'EC_KEY_set_group' is deprecated [-Wdeprecated-declarations]
3617 | 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
1042 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:3619:9: warning: 'EC_KEY_set_public_key' is deprecated [-Wdeprecated-declarations]
3619 | 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
1070 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:3623:18: warning: 'EC_KEY_check_key' is deprecated [-Wdeprecated-declarations]
3623 | 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
1107 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:3624:4: warning: 'EC_KEY_free' is deprecated [-Wdeprecated-declarations]
3624 | EC_KEY_free(key);
| ^
/usr/local/include/openssl/ec.h:1003:1: note: 'EC_KEY_free' has been explicitly marked deprecated here
1003 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:3628:3: warning: 'EC_KEY_precompute_mult' is deprecated [-Wdeprecated-declarations]
3628 | 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
1095 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:3629:3: warning: 'EC_KEY_set_asn1_flag' is deprecated [-Wdeprecated-declarations]
3629 | 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
1087 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:3631:3: warning: 'EVP_PKEY_set1_EC_KEY' is deprecated [-Wdeprecated-declarations]
3631 | 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
1371 | OSSL_DEPRECATEDIN_3_0
| ^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:3632:3: warning: 'EC_KEY_free' is deprecated [-Wdeprecated-declarations]
3632 | EC_KEY_free(key);
| ^
/usr/local/include/openssl/ec.h:1003:1: note: 'EC_KEY_free' has been explicitly marked deprecated here
1003 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:3657:5: warning: 'EC_KEY_get0_group' is deprecated [-Wdeprecated-declarations]
3657 | 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
1034 | 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'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # define OSSL_DEPRECATED(since) __attribute__((deprecated))
| ^
dcrypt-openssl.c:3657:23: warning: 'EVP_PKEY_get0_EC_KEY' is deprecated [-Wdeprecated-declarations]
3657 | 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
1373 | OSSL_DEPRECATEDIN_3_0
| ^
/usr/local/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
182 | # define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
| ^
/usr/local/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
62 | # 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.1/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
--- 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.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
--- 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
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
--- 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 -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
--- 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 ---
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-client.lo ---
mv -f .deps/dict-client.Tpo .deps/dict-client.Plo
--- dict-transaction-memory.lo ---
mv -f .deps/dict-transaction-memory.Tpo .deps/dict-transaction-memory.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-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-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-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
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 ---
/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
--- mech-login.lo ---
mv -f .deps/mech-login.Tpo .deps/mech-login.Plo
--- dsasl-client.lo ---
--- mech-plain.lo ---
mv -f .deps/mech-plain.Tpo .deps/mech-plain.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
--- test-sasl-client.o ---
mv -f .deps/test-sasl-client.Tpo .deps/test-sasl-client.Po
--- 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
--- 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-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-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
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
--- http-transfer-chunked.lo ---
mv -f .deps/http-transfer-chunked.Tpo .deps/http-transfer-chunked.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-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 -fPIC -DPIC -o .libs/http-response.o
--- http-message-parser.lo ---
mv -f .deps/http-message-parser.Tpo .deps/http-message-parser.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-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 ---
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
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
mv -f .deps/http-response-parser.Tpo .deps/http-response-parser.Plo
--- http-client-peer.lo ---
/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-ssl-iostream -I../../src/lib-master -DPKG_RUNDIR=\""/var/run/dovecot"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-request-parser.lo ---
mv -f .deps/http-request-parser.Tpo .deps/http-request-parser.Plo
--- http-client-queue.lo ---
/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dns -I../../src/lib-ssl-iostream -I../../src/lib-master -DPKG_RUNDIR=\""/var/run/dovecot"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
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-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-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-client.lo ---
mv -f .deps/http-client.Tpo .deps/http-client.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-server-ostream.lo ---
mv -f .deps/http-server-ostream.Tpo .deps/http-server-ostream.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-response.lo ---
mv -f .deps/http-server-response.Tpo .deps/http-server-response.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
--- 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.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 -fPIC -DPIC -o .libs/http-server.o
--- http-server-resource.lo ---
mv -f .deps/http-server-resource.Tpo .deps/http-server-resource.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
mv -f .deps/http-server.Tpo .deps/http-server.Plo
--- http-server-request.lo ---
mv -f .deps/http-server-request.Tpo .deps/http-server-request.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-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-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-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-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 ---
*** Warning: Linking the executable test-http-client against the loadable module
*** libssl_iostream_openssl.so is not portable!
libtool: link: cc -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wno-duplicate-decl-specifier -Wstrict-aliasing=2 -I/usr/local/include -Wl,--as-needed -Wl,-rpath -Wl,/usr/local/lib -fstack-protector-strong -o .libs/test-http-client test-http-client.o -Wl,--export-dynamic -L/usr/local/lib ./.libs/libhttp.a ../lib-dns/.libs/libdns.a ../lib-ssl-iostream/.libs/libssl_iostream.a ../lib-master/.libs/libmaster.a ../lib-auth/.libs/libauth.a ../lib-settings/.libs/libsettings.a ../lib-test/.libs/libtest.a ../lib/.libs/liblib.a ../lib-ssl-iostream/.libs/libssl_iostream_openssl.so -Wl,-rpath -Wl,/usr/local/lib/dovecot
--- test-http-header-parser ---
--- test-http-payload ---
--- test-http-header-parser ---
/bin/sh ../../libtool --tag=CC --mode=link cc -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -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
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
--- 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
--- 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-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-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-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
--- 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
--- 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 -fPIC -DPIC -o .libs/fs-sis.o
--- fs-sis-common.lo ---
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-ssl-iostream -DMODULE_DIR=\"/usr/local/lib/dovecot\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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
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-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
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 ---
/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
--- fs-sis.lo ---
mv -f .deps/fs-sis.Tpo .deps/fs-sis.Plo
--- istream-fs-stats.lo ---
/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I../.. -I../../src/lib -I../../src/lib-test -I../../src/lib-dict -I../../src/lib-ssl-iostream -DMODULE_DIR=\""/usr/local/lib/dovecot"\" -I/usr/local/include -I/usr/local/include -DLIBICONV_PLUG -std=gnu99 -O2 -pipe -DLIBICONV_PLUG -DLDAP_DEPRECATED -fstack-protector-strong -fno-strict-aliasing -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -mfunction-return=keep -Wall -W -Wmissing-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-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
--- 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
--- 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-file.lo ---
mv -f .deps/istream-fs-file.Tpo .deps/istream-fs-file.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-stats.lo ---
mv -f .deps/istream-fs-stats.Tpo .deps/istream-fs-stats.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
--- istream-metawrap.lo ---
mv -f .deps/istream-metawrap.Tpo .deps/istream-metawrap.Plo
--- ostream-metawrap.lo ---
mv -f .deps/ostream-metawrap.Tpo .deps/ostream-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-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
--- 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 ---
mv -f .deps/test-istream-binary-converter.Tpo .deps/test-istream-binary-converter.Po
--- test-istream-qp-decoder.o ---
--- test-istream-dot.o ---
mv -f .deps/test-istream-dot.Tpo .deps/test-istream-dot.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-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-html2te