Recently I had notice a whopping 600MB a second http request to china. Not good. It flooded our little 100mb line and killed the firewalls creating 3k new states a second.
The new states were coming from one of the instances in my openstack environment! Awww man what did I screw up? Answer is nothing, the user never changed anything on his default instance and it was what i believe to be auto hacked by a botnet exploiting web apps using default configuration.
What did I do? Luckily its openstack. I shutoff the instance, detached the volume and rebuilt using a clean image. I also altered the rules to discourage this happening again.
When I get time I will be opening this volume and looking at what is going on.
System and Server Manipulation Notes
Things I have managed to break over the years.
Monday, December 5, 2016
Thursday, December 17, 2015
Use'[less|ful]' One-Liners
shutdown all xen domains on a server:
for i in `xm list | awk 'NR>2{ print l} {l=$1}'`;do xm shutdown $i;done
for i in `xm list | awk 'NR>2{ print l} {l=$1}'`;do xm shutdown $i;done
get the state of all xen domains on a physical
for i in `xm list | awk 'NR>2{ print l} {l=$1}'`;do xm domstate $i;done
destroy all domains on server
for i in `xm list | awk 'NR>2{ print l} {l=$1}'`;do xm destroy $i;done
Ansible exploration - notes and musings
So I ran across ansible as an automation tool today....
Design Principles
- Have a dead simple setup process and a minimal learning curve
- Manage machines very quickly and in parallel
- Avoid custom-agents and additional open ports, be agentless by leveraging the existing SSH daemon
- Describe infrastructure in a language that is both machine and human friendly
- Focus on security and easy auditability/review/rewriting of content
- Manage new remote machines instantly, without bootstrapping any software
- Allow module development in any dynamic language, not just Python
- Be usable as non-root
- Be the easiest IT automation system to use, ever.
MariaDB 10.1 Galera Cluster in CentOS 7 using AWS
Read a couple posts that were pretty helpful into getting mariadb 10.0 setup with galera cluster with CentOS 7 but could not find anything on 10.1. I recently setup an architecture for this using AWS.
The architecture is 2 servers with an app and db on each using tomcat session replication and mariadb galera cluster. The architecture writes from the app to the local db node and replicates this across subnets in aws over a private network (no internet gateway on the private subnets) to the second node. Each server can act independently as a standalone node or expand later by cloning the node and making minor config changes using a few scripts or a chef / automation environment of your choice. Expansion of this enviornment can go two ways. Either you can clone a node out and have another standalone node with clustering or as time evolves the architecture it can be expanded by separating the db and app tiers to allow for a two tier architecture of app and db. For now the solution looks like this:
Here's the simple of it for the impatient:
Using the AWS CentOS7 AMI with a few tweaks. The key is to create a VPC with 4 subnets
2 public and 2 private in one vpc across 2 availability zones (east-1a and east-1b) the private for cluster traffic and the public with elastic ip addresses only available from the company network and the loadbalancer.
Repo installed from MariaDB site:
[root@ip-172-31-2-124 tomcat]# cat /etc/yum.repos.d/MariaDB.repo
[mariadb]
name = MariaDB
baseurl = http://yum.mariadb.org/10.1/centos7-amd64
gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB
gpgcheck=1
[centos@ip-172-31-2-124 ~]$ cat /etc/sysconfig/network-scripts/route-eth1
Login to mysql and execute:
vi /etc/my.cnf
[mysql] # CLIENT #
port = 3306 socket = /data/mysql.sock [mysqld]
# GENERAL #
user = mysql default-storage-engine = InnoDB socket = /data/mysql.sock
pid-file = /data/mysql.pid
lower_case_table_names = 1
# MyISAM #
key-buffer-size = 32M
myisam-recover = FORCE,BACKUP
# SAFETY #
max-allowed-packet = 16M
max-connect-errors = 1000000
skip-name-resolve
sql-mode = STRICT_TRANS_TABLES,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_AUTO_VALUE_ON_ZERO,NO_ENGINE_SUBSTITUTION,NO_ZERO_DATE,NO_ZERO_IN_DATE,ONLY_FULL_GROUP_BY
sysdate-is-now = 1
innodb = FORCE
# DATA STORAGE #
datadir = /data/
# BINARY LOGGING #
log-bin = /data/mysql-bin
expire-logs-days = 14
sync-binlog = 1
# CACHES AND LIMITS #
tmp-table-size = 32M
max-heap-table-size = 32M
query-cache-type = 0
query-cache-size = 0
max-connections = 500
thread-cache-size = 50
open-files-limit = 65535
table-definition-cache = 4096
table-open-cache = 4096
# INNODB #
innodb-flush-method = O_DIRECT
innodb-log-files-in-group = 2
innodb-log-file-size = 1G
innodb-flush-log-at-trx-commit = 1
innodb-file-per-table = 1
innodb-buffer-pool-size = 5G
# LOGGING #
log-error = /data/mysql-error.log
log-queries-not-using-indexes = 1
slow-query-log = 1
slow-query-log-file = /data/mysql-slow.log
#
# * Galera-related settings
#
[galera]
# Mandatory settings
wsrep_on=ON
wsrep_provider=/usr/lib64/galera/libgalera_smm.so
wsrep_cluster_address="gcomm://172.31.10.10,172.31.20.10"
binlog_format=row
innodb_autoinc_lock_mode=2
#
# Allow server to accept connections on all interfaces.
#
bind-address=0.0.0.0
#
# Optional setting
wsrep_cluster_name="Orbit_Data_DB"
wsrep_node_address="172.31.20.10"
wsrep_node_name="orb_db2"
wsrep_sst_method=rsync
wsrep_slave_threads=1
The architecture is 2 servers with an app and db on each using tomcat session replication and mariadb galera cluster. The architecture writes from the app to the local db node and replicates this across subnets in aws over a private network (no internet gateway on the private subnets) to the second node. Each server can act independently as a standalone node or expand later by cloning the node and making minor config changes using a few scripts or a chef / automation environment of your choice. Expansion of this enviornment can go two ways. Either you can clone a node out and have another standalone node with clustering or as time evolves the architecture it can be expanded by separating the db and app tiers to allow for a two tier architecture of app and db. For now the solution looks like this:
Here's the simple of it for the impatient:
Using the AWS CentOS7 AMI with a few tweaks. The key is to create a VPC with 4 subnets
2 public and 2 private in one vpc across 2 availability zones (east-1a and east-1b) the private for cluster traffic and the public with elastic ip addresses only available from the company network and the loadbalancer.
Repo installed from MariaDB site:
[root@ip-172-31-2-124 tomcat]# cat /etc/yum.repos.d/MariaDB.repo
[mariadb]
name = MariaDB
baseurl = http://yum.mariadb.org/10.1/centos7-amd64
gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB
gpgcheck=1
Install MariaDB 10.1 and supporting packages. Don't worry, package dependencies will work themselves out.
yum install mariadb-server socat rsync
Important for AWS static routes:
Created 2 AWS private Subnets, one in each availability zone.
Created 2 Private static interfaces.
Created a static host route from one subnet to the other on the private side.
Interface Config:
[centos@ip-172-31-1-126 ~]$ cat /etc/sysconfig/network-scripts/ifcfg-eth1
DEVICE="eth1"
BOOTPROTO="static"
ONBOOT="yes"
TYPE="Ethernet"
USERCTL="yes"
PEERDNS="yes"
IPV6INIT="no"
IPADDR="172.31.10.10"
NETMASK="255.255.255.0"
[centos@ip-172-31-2-124 ~]$ cat /etc/sysconfig/network-scripts/ifcfg-eth1
DEVICE="eth1"
BOOTPROTO="static"
ONBOOT="yes"
TYPE="Ethernet"
USERCTL="yes"
PEERDNS="yes"
IPV6INIT="no"
IPADDR="172.31.20.10"
NETMASK="255.255.255.0"
Routing Config:
[centos@ip-172-31-1-126 ~]$ cat /etc/sysconfig/network-scripts/route-eth1
172.31.20.0/24 via 172.31.10.1 dev eth1
[centos@ip-172-31-2-124 ~]$ cat /etc/sysconfig/network-scripts/route-eth1
172.31.10.0/24 via 172.31.20.1 dev eth1
Ensure you can ping the other node with your routing configuration.
Now setup you Mariadb Cluster.
On each Node:
Start Mysql:
sudo service mysql start
Setup Mysql:
sudo mysql_secure_installation
Setup priv users:
Login to mysql and execute:
GRANT ALL ON *.* TO 'root'@'%' IDENTIFIED BY 'USERPASS';
GRANT USAGE ON *.* to repl_user@'%' IDENTIFIED BY 'replpass';
GRANT ALL PRIVILEGES on *.* to repl_user@'%';
FLUSH PRIVILEGES;
quit;
Shutdown and configure for glaera:
sudo service mysql stop
GRANT USAGE ON *.* to repl_user@'%' IDENTIFIED BY 'replpass';
GRANT ALL PRIVILEGES on *.* to repl_user@'%';
FLUSH PRIVILEGES;
quit;
Shutdown and configure for glaera:
sudo service mysql stop
vi /etc/my.cnf
[mysql] # CLIENT #
port = 3306 socket = /data/mysql.sock [mysqld]
# GENERAL #
user = mysql default-storage-engine = InnoDB socket = /data/mysql.sock
pid-file = /data/mysql.pid
lower_case_table_names = 1
# MyISAM #
key-buffer-size = 32M
myisam-recover = FORCE,BACKUP
# SAFETY #
max-allowed-packet = 16M
max-connect-errors = 1000000
skip-name-resolve
sql-mode = STRICT_TRANS_TABLES,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_AUTO_VALUE_ON_ZERO,NO_ENGINE_SUBSTITUTION,NO_ZERO_DATE,NO_ZERO_IN_DATE,ONLY_FULL_GROUP_BY
sysdate-is-now = 1
innodb = FORCE
# DATA STORAGE #
datadir = /data/
# BINARY LOGGING #
log-bin = /data/mysql-bin
expire-logs-days = 14
sync-binlog = 1
# CACHES AND LIMITS #
tmp-table-size = 32M
max-heap-table-size = 32M
query-cache-type = 0
query-cache-size = 0
max-connections = 500
thread-cache-size = 50
open-files-limit = 65535
table-definition-cache = 4096
table-open-cache = 4096
# INNODB #
innodb-flush-method = O_DIRECT
innodb-log-files-in-group = 2
innodb-log-file-size = 1G
innodb-flush-log-at-trx-commit = 1
innodb-file-per-table = 1
innodb-buffer-pool-size = 5G
# LOGGING #
log-error = /data/mysql-error.log
log-queries-not-using-indexes = 1
slow-query-log = 1
slow-query-log-file = /data/mysql-slow.log
#
# * Galera-related settings
#
[galera]
# Mandatory settings
wsrep_on=ON
wsrep_provider=/usr/lib64/galera/libgalera_smm.so
wsrep_cluster_address="gcomm://172.31.10.10,172.31.20.10"
binlog_format=row
innodb_autoinc_lock_mode=2
#
# Allow server to accept connections on all interfaces.
#
bind-address=0.0.0.0
#
# Optional setting
wsrep_cluster_name="Orbit_Data_DB"
wsrep_node_address="172.31.20.10"
wsrep_node_name="orb_db2"
wsrep_sst_method=rsync
wsrep_slave_threads=1
On each node, change the wsrep_node_address and wsrep_node_name.
Once done, start the first node with:
galera_new_cluster
Check The cluster with a query:
mysql -uroot -p -e "show status like 'wsrep%'
Complete.
Complete.
Monday, February 9, 2015
Why I Left Oracle Virtual Machine Manager for Openstack
So I have to now migrate all my things into an openstack configuration anyway, why not go with openstack proper instead of oracles outdated and wrapped awkwardly around OVMM, version of openstack? I could see no reason to not drop the ocfs2 dependant OVMM and its management style completely for a more robust platform. But for thoughs who need support. Oracle has an openstack version. I would explore this option before any OVS/OVMM or VCA.
Oracle VCA
I today got to explore this as an option and it is not entirely off the table. I just want the OVS/OVMM Architecture to disappear and openstack integration to naturally occur.
Note to Oracle - You have the hardware (badass hardware, I was a longtime sunos\solaris admin), you have the appliance configuration, nicely done using the infiniband btw. You even have openstack!!
Instead of skinning the old OVMM / OVS and including "SOME" cloud components, use all of the features of openstack that even you support.
You have the capability already, stand up a control node with puppet and packstack (with custom configs) the environment and present the user with an infiniband integrated, local cinder and swift ring with appliance node expansion capabilities. Why would that not be ideal? I know it is possible today I have built this arch without the appliance, with it the configs should be easier as the hw configuration for base deployment is pretty static and openstack can organically grow.....
Oracle VCA
I today got to explore this as an option and it is not entirely off the table. I just want the OVS/OVMM Architecture to disappear and openstack integration to naturally occur.
Note to Oracle - You have the hardware (badass hardware, I was a longtime sunos\solaris admin), you have the appliance configuration, nicely done using the infiniband btw. You even have openstack!!
Instead of skinning the old OVMM / OVS and including "SOME" cloud components, use all of the features of openstack that even you support.
You have the capability already, stand up a control node with puppet and packstack (with custom configs) the environment and present the user with an infiniband integrated, local cinder and swift ring with appliance node expansion capabilities. Why would that not be ideal? I know it is possible today I have built this arch without the appliance, with it the configs should be easier as the hw configuration for base deployment is pretty static and openstack can organically grow.....
Wednesday, January 28, 2015
What they don't seem to be showing in an openstack neutron config.... (Openstack, bonding, lacp and vlans)
What they don't seem to be showing in an openstack neutron config
After MONTHS of digging and research, I came across an article and cross referenced it.
XEN
Companies like RackSpace are running a xen hypervisor, Bonding and trunking the interfaces and deploying a nova-compute (openstack hypervisor connector) on a (paravirtual) domU (virtual) with vlan tagging. All done outside openstack. The dom then needs only one unbonded interface after that.....
Do note that running nova-compute inside dom0 is not recommended for XenServer. Openstack uses something call XAPI (xen application programming interface) to communicate from a paravirtual domU to dom0. Intresting concept to keep in mind when planning a real working openstack. I still havent gotten bonding and LACP working in openvswitch... but this makes it a really worthwhile workaround....
Dont want this but want xen?
Install Oracle Virtual Server 3.3
Running nova-compute inside dom0 is supported by oracle. Configure bonding, vlans, etc. on xen bridge.
"Managing Oracle VM with OpenStack To connect Oracle VM to OpenStack, we currently use the libvirt driver. Xen is fully supported by the libvirt driver, so the integration is very natural. The version of Oracle VM used in the technology preview uses the Unbreakable Enterprise Kernel Release 3 (also known as, UEK3), which is a new 3.8 upstream kernel. As a result, Oracle VM uses the latest version of the hardware drivers and Open vSwitch."
Reference:
http://www.oracle.com/technetwork/server-storage/vm/ovm-linux-openstack-2202503.pdf
Also, I read Controllers (core services like glance,keystone,nova,cinder,etc) should not be run on top of xen.
So for now. Just another note from the impatient.
Controllers- 4 x NON-XEN Fedora
Hypervisor - 1X Oracle VM Xen 3.3 + Dom0 (XAPI) + 1 Fedora (paravirtual) DomU (xen nova-compute host)
I'm going to test OracleVM versus a xen fedora with a paravirt domU........
Oh BTW: http://docs.openstack.org/trunk/config-reference/content/introduction-to-xen.html
Sunday, January 11, 2015
RHEL 7 Install node.js and npm for the impaitent.
sudo yum install nodejs npm --enablerepo=epel
ends in tragedy:
--> Finished Dependency Resolution
Error: Package: nodejs-devel-0.10.33-1.el7.x86_64 (epel)
Requires: c-ares-devel(x86-64)
You could try using --skip-broken to work around the problem
You could try running: rpm -Va --nofiles --nodigest
ends in tragedy:
--> Finished Dependency Resolution
Error: Package: nodejs-devel-0.10.33-1.el7.x86_64 (epel)
Requires: c-ares-devel(x86-64)
You could try using --skip-broken to work around the problem
You could try running: rpm -Va --nofiles --nodigest
Well we could whine about it, or build it ourselves. luckly I found source fo the current RHEL package (as of 1-11-15) here: http://rpm.pbone.net/index.php3/stat/26/dist/93/size/819199/name/c-ares-1.10.0-3.el7.src.rpm
with a quick wget for the source and an rpmbuild--rebuild on my little aws rhel machine produced the correct rpm and was installed with rpm -i.
ends in a successful run of the command above. now get on to doing better things.
Output, for the ones who wish to know:
[ec2-user@ip-172-31-31-178 ~]$ wget ftp://ftp.sunet.se/pub/Linux/distributions/scientific/7rolling/SRPMS/vendor/c-ares-1.10.0-3.el7.src.rpm
--2015-01-11 17:15:57-- ftp://ftp.sunet.se/pub/Linux/distributions/scientific/7rolling/SRPMS/vendor/c-ares-1.10.0-3.el7.src.rpm
=> ‘c-ares-1.10.0-3.el7.src.rpm’
Resolving ftp.sunet.se (ftp.sunet.se)... 194.71.11.69, 2001:6b0:19::64
Connecting to ftp.sunet.se (ftp.sunet.se)|194.71.11.69|:21... connected.
Logging in as anonymous ... Logged in!
==> SYST ... done. ==> PWD ... done.
==> TYPE I ... done. ==> CWD (1) /pub/Linux/distributions/scientific/7rolling/SRPMS/vendor ... done.
==> SIZE c-ares-1.10.0-3.el7.src.rpm ... 819199
==> PASV ... done. ==> RETR c-ares-1.10.0-3.el7.src.rpm ... done.
Length: 819199 (800K) (unauthoritative)
100%[======================================================================================================================================================>] 819,199 320KB/s in 2.5s
2015-01-11 17:16:03 (320 KB/s) - ‘c-ares-1.10.0-3.el7.src.rpm’ saved [819199]
[ec2-user@ip-172-31-31-178 ~]$ rpmbuild -vvvvv --rebuild c-ares-1.10.0-3.el7.src.rpm
Installing c-ares-1.10.0-3.el7.src.rpm
warning: user mockbuild does not exist - using root
warning: group mockbuild does not exist - using root
warning: user mockbuild does not exist - using root
warning: group mockbuild does not exist - using root
warning: user mockbuild does not exist - using root
warning: group mockbuild does not exist - using root
warning: user mockbuild does not exist - using root
warning: group mockbuild does not exist - using root
warning: user mockbuild does not exist - using root
warning: group mockbuild does not exist - using root
Executing(%prep): /bin/sh -e /var/tmp/rpm-tmp.CjmlDm
+ umask 022
+ cd /home/ec2-user/rpmbuild/BUILD
+ cd /home/ec2-user/rpmbuild/BUILD
+ rm -rf c-ares-1.10.0
+ /usr/bin/tar -xf -
+ /usr/bin/gzip -dc /home/ec2-user/rpmbuild/SOURCES/c-ares-1.10.0.tar.gz
+ STATUS=0
+ '[' 0 -ne 0 ']'
+ cd c-ares-1.10.0
+ /usr/bin/chmod -Rf a+rX,u+w,g-w,o-w .
+ echo 'Patch #0 (0001-Use-RPM-compiler-options.patch):'
Patch #0 (0001-Use-RPM-compiler-options.patch):
+ /usr/bin/patch -p1 -b --suffix .optflags --fuzz=0
+ /usr/bin/cat /home/ec2-user/rpmbuild/SOURCES/0001-Use-RPM-compiler-options.patch
patching file m4/cares-compilers.m4
Hunk #1 succeeded at 142 (offset -1 lines).
+ echo 'Patch #1 (c-ares-1.10.0-multilib.patch):'
Patch #1 (c-ares-1.10.0-multilib.patch):
+ /usr/bin/cat /home/ec2-user/rpmbuild/SOURCES/c-ares-1.10.0-multilib.patch
+ /usr/bin/patch -p1 -b --suffix .multilib --fuzz=0
patching file ares_build.h.in
patching file configure.ac
+ cp /home/ec2-user/rpmbuild/SOURCES/LICENSE .
+ f=CHANGES
+ iconv -f iso-8859-1 -t utf-8 CHANGES -o CHANGES.utf8
+ mv CHANGES.utf8 CHANGES
+ exit 0
Executing(%build): /bin/sh -e /var/tmp/rpm-tmp.Ji5Ll1
+ umask 022
+ cd /home/ec2-user/rpmbuild/BUILD
+ cd c-ares-1.10.0
+ autoreconf -if
libtoolize: putting auxiliary files in `.'.
libtoolize: copying file `./ltmain.sh'
libtoolize: putting macros in AC_CONFIG_MACRO_DIR, `m4'.
libtoolize: copying file `m4/libtool.m4'
libtoolize: copying file `m4/ltoptions.m4'
libtoolize: copying file `m4/ltsugar.m4'
libtoolize: copying file `m4/ltversion.m4'
libtoolize: copying file `m4/lt~obsolete.m4'
libtoolize: Remember to add `LT_INIT' to configure.ac.
+ CFLAGS='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic'
+ export CFLAGS
+ CXXFLAGS='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic'
+ export CXXFLAGS
+ FFLAGS='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -I/usr/lib64/gfortran/modules'
+ export FFLAGS
+ FCFLAGS='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -I/usr/lib64/gfortran/modules'
+ export FCFLAGS
+ LDFLAGS='-Wl,-z,relro '
+ export LDFLAGS
++ find . -name config.guess -o -name config.sub
+ for i in '$(find . -name config.guess -o -name config.sub)'
++ basename ./config.sub
+ '[' -f /usr/lib/rpm/redhat/config.sub ']'
+ /usr/bin/rm -f ./config.sub
++ basename ./config.sub
+ /usr/bin/cp -fv /usr/lib/rpm/redhat/config.sub ./config.sub
'/usr/lib/rpm/redhat/config.sub' -> './config.sub'
+ for i in '$(find . -name config.guess -o -name config.sub)'
++ basename ./config.guess
+ '[' -f /usr/lib/rpm/redhat/config.guess ']'
+ /usr/bin/rm -f ./config.guess
++ basename ./config.guess
+ /usr/bin/cp -fv /usr/lib/rpm/redhat/config.guess ./config.guess
'/usr/lib/rpm/redhat/config.guess' -> './config.guess'
+ ./configure --build=x86_64-redhat-linux-gnu --host=x86_64-redhat-linux-gnu --program-prefix= --disable-dependency-tracking --prefix=/usr --exec-prefix=/usr --bindir=/usr/bin --sbindir=/usr/sbin --sysconfdir=/etc --datadir=/usr/share --includedir=/usr/include --libdir=/usr/lib64 --libexecdir=/usr/libexec --localstatedir=/var --sharedstatedir=/var/lib --mandir=/usr/share/man --infodir=/usr/share/info --enable-shared --disable-static --disable-dependency-tracking
checking whether to enable maintainer-specific portions of Makefiles... no
checking whether to enable debug build options... no
checking whether to enable compiler optimizer... not specified (assuming yes)
checking whether to enable strict compiler warnings... no
checking whether to enable compiler warnings as errors... no
checking whether to enable curl debug memory tracking... no
checking whether to enable hiding of library internal symbols... yes
checking for path separator... :
checking for sed... /usr/bin/sed
checking for grep... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for x86_64-redhat-linux-gnu-ar... no
checking for ar... /usr/bin/ar
checking build system type... x86_64-redhat-linux-gnu
checking host system type... x86_64-redhat-linux-gnu
checking for a BSD-compatible install... /usr/bin/install -c
checking for x86_64-redhat-linux-gnu-gcc... no
checking for gcc... gcc
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 gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking whether gcc and cc understand -c and -o together... yes
checking how to run the C preprocessor... gcc -E
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking for style of include used by make... GNU
checking whether make supports nested variables... yes
checking dependency style of gcc... none
checking for grep that handles long lines and -e... (cached) /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking if OS is AIX (to define _ALL_SOURCE)... no
checking if _THREAD_SAFE is already defined... no
checking if _THREAD_SAFE is actually needed... no
checking if _THREAD_SAFE is onwards defined... no
checking if _REENTRANT is already defined... no
checking if _REENTRANT is actually needed... no
checking if _REENTRANT is onwards defined... no
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... no
checking how to print strings... printf
checking for a sed that does not truncate output... (cached) /usr/bin/sed
checking for fgrep... /usr/bin/grep -F
checking for ld used by gcc... /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 -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 1572864
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking how to convert x86_64-redhat-linux-gnu file names to x86_64-redhat-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-redhat-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /usr/bin/ld option to reload object files... -r
checking for x86_64-redhat-linux-gnu-objdump... no
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for x86_64-redhat-linux-gnu-dlltool... no
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for x86_64-redhat-linux-gnu-ar... /usr/bin/ar
checking for archiver @FILE support... @
checking for x86_64-redhat-linux-gnu-strip... no
checking for strip... strip
checking for x86_64-redhat-linux-gnu-ranlib... no
checking for ranlib... ranlib
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for sysroot... no
checking for x86_64-redhat-linux-gnu-mt... no
checking for mt... no
checking if : is a manifest tool... no
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for dlfcn.h... yes
checking for objdir... .libs
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... yes
checking if gcc static flag -static works... no
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux 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... no
checking whether to build shared libraries with -version-info... yes
checking whether to build shared libraries with -no-undefined... no
checking whether to build shared libraries with -mimpure-text... no
checking whether to build shared libraries with PIC... yes
checking whether to build static libraries with PIC... yes
checking whether to build shared libraries only... yes
checking whether to build static libraries only... no
checking if compiler is DEC/Compaq/HP C... no
checking if compiler is HP-UX C... no
checking if compiler is IBM C... no
checking if compiler is Intel C... no
checking if compiler is clang... no
checking if compiler is GNU C... yes
checking if compiler is LCC... no
checking if compiler is SGI MIPSpro C... no
checking if compiler is SGI MIPS C... no
checking if compiler is SunPro C... no
checking if compiler is Tiny C... no
checking if compiler is Watcom C... no
checking if compiler accepts debug disabling options... yes
configure: compiler options added:
checking if compiler optimizer assumed setting might be used... yes
checking if compiler accepts optimizer enabling options... yes
configure: compiler options added:
checking if compiler accepts strict warning options... yes
configure: compiler options added: -Wno-system-headers
checking if compiler halts on compilation errors... yes
checking if compiler halts on negative sized arrays... yes
checking if compiler halts on function prototype mismatch... yes
checking if compiler supports hiding library internal symbols... yes
checking for windows.h... no
checking whether build target is a native Windows one... no
checking if X/Open network library is required... no
checking for gethostbyname... yes
checking for strcasecmp... yes
checking for windows.h... (cached) no
checking for winsock.h... (cached) no
checking for winsock2.h... (cached) no
checking for connect in libraries... yes
checking whether time.h and sys/time.h may both be included... yes
checking for sys/types.h... (cached) yes
checking sys/time.h usability... yes
checking sys/time.h presence... yes
checking for sys/time.h... yes
checking time.h usability... yes
checking time.h presence... yes
checking for time.h... yes
checking for monotonic clock_gettime... yes
checking for clock_gettime in libraries... no additional lib required
checking if monotonic clock_gettime works... yes
checking whether to use libgcc... no
checking for ANSI C header files... (cached) yes
checking for malloc.h... yes
checking for memory.h... (cached) yes
checking for sys/types.h... (cached) yes
checking for sys/time.h... (cached) yes
checking for sys/select.h... yes
checking for sys/socket.h... yes
checking for sys/ioctl.h... yes
checking for sys/param.h... yes
checking for sys/uio.h... yes
checking for assert.h... yes
checking for netdb.h... yes
checking for netinet/in.h... yes
checking for netinet/tcp.h... yes
checking for net/if.h... yes
checking for errno.h... yes
checking for socket.h... no
checking for strings.h... (cached) yes
checking for stdbool.h... yes
checking for time.h... (cached) yes
checking for limits.h... yes
checking for arpa/nameser.h... yes
checking for arpa/nameser_compat.h... yes
checking for arpa/inet.h... yes
checking for an ANSI C-conforming const... yes
checking for size_t... yes
checking whether time.h and sys/time.h may both be included... (cached) yes
checking for sys/types.h... (cached) yes
checking for sys/time.h... (cached) yes
checking for time.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for struct timeval... yes
checking size of size_t... 8
checking size of long... 8
checking size of int... 4
checking size of short... 2
checking size of time_t... 8
checking for long long... yes
checking if numberLL works... yes
checking for ssize_t... yes
checking for bool... yes
checking for windows.h... (cached) no
checking for winsock2.h... (cached) no
checking for ws2tcpip.h... (cached) no
checking for sys/types.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for ares_socklen_t data type... socklen_t
checking size of ares_socklen_t... 4
checking for in_addr_t... yes
checking for struct sockaddr_storage... yes
checking signal.h usability... yes
checking signal.h presence... yes
checking for signal.h... yes
checking for sig_atomic_t... yes
checking if sig_atomic_t is already defined as volatile... no
checking return type of signal handlers... void
checking for sys/types.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for recv... yes
checking types of args and return type for recv... int,void *,size_t,int,ssize_t
checking for sys/types.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for recvfrom... yes
checking types of args and return type for recvfrom... int,void *,size_t,int,struct sockaddr *,socklen_t *,ssize_t
checking for sys/types.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for send... yes
checking types of args and return type for send... int,const void *,size_t,int,ssize_t
checking for sys/types.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for MSG_NOSIGNAL... yes
checking for sys/types.h... (cached) yes
checking for socket.h... (cached) no
checking if closesocket can be linked... no
checking if closesocket might be used... no
checking if CloseSocket can be linked... no
checking if CloseSocket might be used... no
checking if connect can be linked... yes
checking if connect is prototyped... yes
checking if connect is compilable... yes
checking if connect usage allowed... yes
checking if connect might be used... yes
checking for sys/types.h... (cached) yes
checking for unistd.h... (cached) yes
checking for fcntl.h... yes
checking if fcntl can be linked... yes
checking if fcntl is prototyped... yes
checking if fcntl is compilable... yes
checking if fcntl usage allowed... yes
checking if fcntl might be used... yes
checking if fcntl O_NONBLOCK is compilable... yes
checking if fcntl O_NONBLOCK usage allowed... yes
checking if fcntl O_NONBLOCK might be used... yes
checking for sys/types.h... (cached) yes
checking for netdb.h... (cached) yes
checking if freeaddrinfo can be linked... yes
checking if freeaddrinfo is prototyped... yes
checking if freeaddrinfo is compilable... yes
checking if freeaddrinfo usage allowed... yes
checking if freeaddrinfo might be used... yes
checking for sys/types.h... (cached) yes
checking for stdlib.h... (cached) yes
checking for sys/types.h... (cached) yes
checking for string.h... (cached) yes
checking for strings.h... (cached) yes
checking if getaddrinfo can be linked... yes
checking if getaddrinfo is prototyped... yes
checking if getaddrinfo is compilable... yes
checking if getaddrinfo seems to work... yes
checking if getaddrinfo usage allowed... yes
checking if getaddrinfo might be used... yes
checking if getaddrinfo is threadsafe... yes
checking if getenv can be linked... yes
checking if getenv is prototyped... yes
checking if getenv is compilable... yes
checking if getenv usage allowed... yes
checking if getenv might be used... yes
checking if gethostbyaddr can be linked... yes
checking if gethostbyaddr is prototyped... yes
checking if gethostbyaddr is compilable... yes
checking if gethostbyaddr usage allowed... yes
checking if gethostbyaddr might be used... yes
checking if gethostbyname can be linked... yes
checking if gethostbyname is prototyped... yes
checking if gethostbyname is compilable... yes
checking if gethostbyname usage allowed... yes
checking if gethostbyname might be used... yes
checking for sys/types.h... (cached) yes
checking for unistd.h... (cached) yes
checking if gethostname can be linked... yes
checking if gethostname is prototyped... yes
checking if gethostname is compilable... yes
checking for gethostname arg 2 data type... size_t
checking if gethostname usage allowed... yes
checking if gethostname might be used... yes
checking if getservbyport_r can be linked... yes
checking if getservbyport_r is prototyped... yes
checking if getservbyport_r takes 4 args.... no
checking if getservbyport_r takes 5 args.... no
checking if getservbyport_r takes 6 args.... yes
checking if getservbyport_r is compilable... yes
checking if getservbyport_r usage allowed... yes
checking if getservbyport_r might be used... yes
checking for sys/types.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for netinet/in.h... (cached) yes
checking for arpa/inet.h... (cached) yes
checking if inet_net_pton can be linked... no
checking if inet_net_pton might be used... no
checking if inet_ntop can be linked... yes
checking if inet_ntop is prototyped... yes
checking if inet_ntop is compilable... yes
checking if inet_ntop seems to work... yes
checking if inet_ntop usage allowed... yes
checking if inet_ntop might be used... yes
checking if inet_pton can be linked... yes
checking if inet_pton is prototyped... yes
checking if inet_pton is compilable... yes
checking if inet_pton seems to work... yes
checking if inet_pton usage allowed... yes
checking if inet_pton might be used... yes
checking for sys/types.h... (cached) yes
checking for unistd.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for sys/ioctl.h... (cached) yes
checking for stropts.h... no
checking if ioctl can be linked... yes
checking if ioctl is prototyped... yes
checking if ioctl is compilable... yes
checking if ioctl usage allowed... yes
checking if ioctl might be used... yes
checking if ioctl FIONBIO is compilable... yes
checking if ioctl FIONBIO usage allowed... yes
checking if ioctl FIONBIO might be used... yes
checking if ioctl SIOCGIFADDR is compilable... yes
checking if ioctl SIOCGIFADDR usage allowed... yes
checking if ioctl SIOCGIFADDR might be used... yes
checking if ioctlsocket can be linked... no
checking if ioctlsocket might be used... no
checking if IoctlSocket can be linked... no
checking if IoctlSocket might be used... no
checking if setsockopt can be linked... yes
checking if setsockopt is prototyped... yes
checking if setsockopt is compilable... yes
checking if setsockopt usage allowed... yes
checking if setsockopt might be used... yes
checking if setsockopt SO_NONBLOCK is compilable... no
checking if setsockopt SO_NONBLOCK might be used... no
checking if socket can be linked... yes
checking if socket is prototyped... yes
checking if socket is compilable... yes
checking if socket usage allowed... yes
checking if socket might be used... yes
checking if strcasecmp can be linked... yes
checking if strcasecmp is prototyped... yes
checking if strcasecmp is compilable... yes
checking if strcasecmp usage allowed... yes
checking if strcasecmp might be used... yes
checking if strcmpi can be linked... no
checking if strcmpi might be used... no
checking if strdup can be linked... yes
checking if strdup is prototyped... yes
checking if strdup is compilable... yes
checking if strdup usage allowed... yes
checking if strdup might be used... yes
checking if stricmp can be linked... no
checking if stricmp might be used... no
checking if strncasecmp can be linked... yes
checking if strncasecmp is prototyped... yes
checking if strncasecmp is compilable... yes
checking if strncasecmp usage allowed... yes
checking if strncasecmp might be used... yes
checking if strncmpi can be linked... no
checking if strncmpi might be used... no
checking if strnicmp can be linked... no
checking if strnicmp might be used... no
checking for sys/types.h... (cached) yes
checking for sys/uio.h... (cached) yes
checking if writev can be linked... yes
checking if writev is prototyped... yes
checking if writev is compilable... yes
checking if writev usage allowed... yes
checking if writev might be used... yes
checking for PF_INET6... yes
checking for AF_INET6... yes
checking for struct in6_addr... yes
checking for struct sockaddr_in6... yes
checking for struct sockaddr_in6.sin6_scope_id... yes
checking for struct addrinfo.ai_flags... yes
checking for bitncmp... no
checking deeper for bitncmp... but still no
checking for gettimeofday... yes
checking for if_indextoname... yes
checking size of struct in6_addr... 16
checking size of struct in_addr... 4
checking for sys/types.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for netdb.h... (cached) yes
checking for getnameinfo... yes
checking types of arguments for getnameinfo... const struct sockaddr *,socklen_t,socklen_t,int
checking whether byte ordering is bigendian... no
checking for "/dev/urandom"... yes
checking whether to enable non-blocking communications... yes
checking how to set a socket into non-blocking mode... fcntl O_NONBLOCK
checking whether hiding of library internal symbols will actually happen... yes
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating libcares.pc
config.status: creating ares_config.h
config.status: creating ares_build.h
config.status: executing depfiles commands
config.status: executing libtool commands
+ /usr/bin/make
/usr/bin/make all-am
make[1]: Entering directory `/home/ec2-user/rpmbuild/BUILD/c-ares-1.10.0'
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c -o libcares_la-ares__close_sockets.lo `test -f 'ares__close_sockets.c' || echo './'`ares__close_sockets.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c ares__close_sockets.c -fPIC -DPIC -o .libs/libcares_la-ares__close_sockets.o
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c -o libcares_la-ares__get_hostent.lo `test -f 'ares__get_hostent.c' || echo './'`ares__get_hostent.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c ares__get_hostent.c -fPIC -DPIC -o .libs/libcares_la-ares__get_hostent.o
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c -o libcares_la-ares__read_line.lo `test -f 'ares__read_line.c' || echo './'`ares__read_line.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c ares__read_line.c -fPIC -DPIC -o .libs/libcares_la-ares__read_line.o
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c -o libcares_la-ares__timeval.lo `test -f 'ares__timeval.c' || echo './'`ares__timeval.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c ares__timeval.c -fPIC -DPIC -o .libs/libcares_la-ares__timeval.o
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c -o libcares_la-ares_cancel.lo `test -f 'ares_cancel.c' || echo './'`ares_cancel.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c ares_cancel.c -fPIC -DPIC -o .libs/libcares_la-ares_cancel.o
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c -o libcares_la-ares_data.lo `test -f 'ares_data.c' || echo './'`ares_data.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c ares_data.c -fPIC -DPIC -o .libs/libcares_la-ares_data.o
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c -o libcares_la-ares_destroy.lo `test -f 'ares_destroy.c' || echo './'`ares_destroy.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c ares_destroy.c -fPIC -DPIC -o .libs/libcares_la-ares_destroy.o
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c -o libcares_la-ares_expand_name.lo `test -f 'ares_expand_name.c' || echo './'`ares_expand_name.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c ares_expand_name.c -fPIC -DPIC -o .libs/libcares_la-ares_expand_name.o
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c -o libcares_la-ares_expand_string.lo `test -f 'ares_expand_string.c' || echo './'`ares_expand_string.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c ares_expand_string.c -fPIC -DPIC -o .libs/libcares_la-ares_expand_string.o
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c -o libcares_la-ares_fds.lo `test -f 'ares_fds.c' || echo './'`ares_fds.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c ares_fds.c -fPIC -DPIC -o .libs/libcares_la-ares_fds.o
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c -o libcares_la-ares_free_hostent.lo `test -f 'ares_free_hostent.c' || echo './'`ares_free_hostent.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c ares_free_hostent.c -fPIC -DPIC -o .libs/libcares_la-ares_free_hostent.o
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c -o libcares_la-ares_free_string.lo `test -f 'ares_free_string.c' || echo './'`ares_free_string.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c ares_free_string.c -fPIC -DPIC -o .libs/libcares_la-ares_free_string.o
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c -o libcares_la-ares_getenv.lo `test -f 'ares_getenv.c' || echo './'`ares_getenv.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c ares_getenv.c -fPIC -DPIC -o .libs/libcares_la-ares_getenv.o
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c -o libcares_la-ares_gethostbyaddr.lo `test -f 'ares_gethostbyaddr.c' || echo './'`ares_gethostbyaddr.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c ares_gethostbyaddr.c -fPIC -DPIC -o .libs/libcares_la-ares_gethostbyaddr.o
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c -o libcares_la-ares_gethostbyname.lo `test -f 'ares_gethostbyname.c' || echo './'`ares_gethostbyname.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c ares_gethostbyname.c -fPIC -DPIC -o .libs/libcares_la-ares_gethostbyname.o
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c -o libcares_la-ares_getnameinfo.lo `test -f 'ares_getnameinfo.c' || echo './'`ares_getnameinfo.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c ares_getnameinfo.c -fPIC -DPIC -o .libs/libcares_la-ares_getnameinfo.o
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c -o libcares_la-ares_getsock.lo `test -f 'ares_getsock.c' || echo './'`ares_getsock.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c ares_getsock.c -fPIC -DPIC -o .libs/libcares_la-ares_getsock.o
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c -o libcares_la-ares_init.lo `test -f 'ares_init.c' || echo './'`ares_init.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c ares_init.c -fPIC -DPIC -o .libs/libcares_la-ares_init.o
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c -o libcares_la-ares_library_init.lo `test -f 'ares_library_init.c' || echo './'`ares_library_init.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c ares_library_init.c -fPIC -DPIC -o .libs/libcares_la-ares_library_init.o
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c -o libcares_la-ares_llist.lo `test -f 'ares_llist.c' || echo './'`ares_llist.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c ares_llist.c -fPIC -DPIC -o .libs/libcares_la-ares_llist.o
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c -o libcares_la-ares_mkquery.lo `test -f 'ares_mkquery.c' || echo './'`ares_mkquery.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c ares_mkquery.c -fPIC -DPIC -o .libs/libcares_la-ares_mkquery.o
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c -o libcares_la-ares_create_query.lo `test -f 'ares_create_query.c' || echo './'`ares_create_query.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c ares_create_query.c -fPIC -DPIC -o .libs/libcares_la-ares_create_query.o
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c -o libcares_la-ares_nowarn.lo `test -f 'ares_nowarn.c' || echo './'`ares_nowarn.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c ares_nowarn.c -fPIC -DPIC -o .libs/libcares_la-ares_nowarn.o
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c -o libcares_la-ares_options.lo `test -f 'ares_options.c' || echo './'`ares_options.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c ares_options.c -fPIC -DPIC -o .libs/libcares_la-ares_options.o
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c -o libcares_la-ares_parse_a_reply.lo `test -f 'ares_parse_a_reply.c' || echo './'`ares_parse_a_reply.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c ares_parse_a_reply.c -fPIC -DPIC -o .libs/libcares_la-ares_parse_a_reply.o
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c -o libcares_la-ares_parse_aaaa_reply.lo `test -f 'ares_parse_aaaa_reply.c' || echo './'`ares_parse_aaaa_reply.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c ares_parse_aaaa_reply.c -fPIC -DPIC -o .libs/libcares_la-ares_parse_aaaa_reply.o
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c -o libcares_la-ares_parse_mx_reply.lo `test -f 'ares_parse_mx_reply.c' || echo './'`ares_parse_mx_reply.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c ares_parse_mx_reply.c -fPIC -DPIC -o .libs/libcares_la-ares_parse_mx_reply.o
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c -o libcares_la-ares_parse_naptr_reply.lo `test -f 'ares_parse_naptr_reply.c' || echo './'`ares_parse_naptr_reply.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c ares_parse_naptr_reply.c -fPIC -DPIC -o .libs/libcares_la-ares_parse_naptr_reply.o
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c -o libcares_la-ares_parse_ns_reply.lo `test -f 'ares_parse_ns_reply.c' || echo './'`ares_parse_ns_reply.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c ares_parse_ns_reply.c -fPIC -DPIC -o .libs/libcares_la-ares_parse_ns_reply.o
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c -o libcares_la-ares_parse_ptr_reply.lo `test -f 'ares_parse_ptr_reply.c' || echo './'`ares_parse_ptr_reply.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c ares_parse_ptr_reply.c -fPIC -DPIC -o .libs/libcares_la-ares_parse_ptr_reply.o
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c -o libcares_la-ares_parse_soa_reply.lo `test -f 'ares_parse_soa_reply.c' || echo './'`ares_parse_soa_reply.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c ares_parse_soa_reply.c -fPIC -DPIC -o .libs/libcares_la-ares_parse_soa_reply.o
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c -o libcares_la-ares_parse_srv_reply.lo `test -f 'ares_parse_srv_reply.c' || echo './'`ares_parse_srv_reply.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c ares_parse_srv_reply.c -fPIC -DPIC -o .libs/libcares_la-ares_parse_srv_reply.o
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c -o libcares_la-ares_parse_txt_reply.lo `test -f 'ares_parse_txt_reply.c' || echo './'`ares_parse_txt_reply.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c ares_parse_txt_reply.c -fPIC -DPIC -o .libs/libcares_la-ares_parse_txt_reply.o
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c -o libcares_la-ares_platform.lo `test -f 'ares_platform.c' || echo './'`ares_platform.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c ares_platform.c -fPIC -DPIC -o .libs/libcares_la-ares_platform.o
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c -o libcares_la-ares_process.lo `test -f 'ares_process.c' || echo './'`ares_process.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c ares_process.c -fPIC -DPIC -o .libs/libcares_la-ares_process.o
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c -o libcares_la-ares_query.lo `test -f 'ares_query.c' || echo './'`ares_query.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c ares_query.c -fPIC -DPIC -o .libs/libcares_la-ares_query.o
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c -o libcares_la-ares_search.lo `test -f 'ares_search.c' || echo './'`ares_search.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c ares_search.c -fPIC -DPIC -o .libs/libcares_la-ares_search.o
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c -o libcares_la-ares_send.lo `test -f 'ares_send.c' || echo './'`ares_send.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c ares_send.c -fPIC -DPIC -o .libs/libcares_la-ares_send.o
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c -o libcares_la-ares_strcasecmp.lo `test -f 'ares_strcasecmp.c' || echo './'`ares_strcasecmp.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c ares_strcasecmp.c -fPIC -DPIC -o .libs/libcares_la-ares_strcasecmp.o
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c -o libcares_la-ares_strdup.lo `test -f 'ares_strdup.c' || echo './'`ares_strdup.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c ares_strdup.c -fPIC -DPIC -o .libs/libcares_la-ares_strdup.o
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c -o libcares_la-ares_strerror.lo `test -f 'ares_strerror.c' || echo './'`ares_strerror.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c ares_strerror.c -fPIC -DPIC -o .libs/libcares_la-ares_strerror.o
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c -o libcares_la-ares_timeout.lo `test -f 'ares_timeout.c' || echo './'`ares_timeout.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c ares_timeout.c -fPIC -DPIC -o .libs/libcares_la-ares_timeout.o
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c -o libcares_la-ares_version.lo `test -f 'ares_version.c' || echo './'`ares_version.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c ares_version.c -fPIC -DPIC -o .libs/libcares_la-ares_version.o
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c -o libcares_la-ares_writev.lo `test -f 'ares_writev.c' || echo './'`ares_writev.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c ares_writev.c -fPIC -DPIC -o .libs/libcares_la-ares_writev.o
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c -o libcares_la-bitncmp.lo `test -f 'bitncmp.c' || echo './'`bitncmp.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c bitncmp.c -fPIC -DPIC -o .libs/libcares_la-bitncmp.o
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c -o libcares_la-inet_net_pton.lo `test -f 'inet_net_pton.c' || echo './'`inet_net_pton.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c inet_net_pton.c -fPIC -DPIC -o .libs/libcares_la-inet_net_pton.o
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c -o libcares_la-inet_ntop.lo `test -f 'inet_ntop.c' || echo './'`inet_ntop.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c inet_ntop.c -fPIC -DPIC -o .libs/libcares_la-inet_ntop.o
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c -o libcares_la-windows_port.lo `test -f 'windows_port.c' || echo './'`windows_port.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I. -DCARES_BUILDING_LIBRARY -DCARES_SYMBOL_HIDING -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c windows_port.c -fPIC -DPIC -o .libs/libcares_la-windows_port.o
/bin/sh ./libtool --tag=CC --mode=link gcc -fvisibility=hidden -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -version-info 3:0:1 -Wl,-z,relro -o libcares.la -rpath /usr/lib64 libcares_la-ares__close_sockets.lo libcares_la-ares__get_hostent.lo libcares_la-ares__read_line.lo libcares_la-ares__timeval.lo libcares_la-ares_cancel.lo libcares_la-ares_data.lo libcares_la-ares_destroy.lo libcares_la-ares_expand_name.lo libcares_la-ares_expand_string.lo libcares_la-ares_fds.lo libcares_la-ares_free_hostent.lo libcares_la-ares_free_string.lo libcares_la-ares_getenv.lo libcares_la-ares_gethostbyaddr.lo libcares_la-ares_gethostbyname.lo libcares_la-ares_getnameinfo.lo libcares_la-ares_getsock.lo libcares_la-ares_init.lo libcares_la-ares_library_init.lo libcares_la-ares_llist.lo libcares_la-ares_mkquery.lo libcares_la-ares_create_query.lo libcares_la-ares_nowarn.lo libcares_la-ares_options.lo libcares_la-ares_parse_a_reply.lo libcares_la-ares_parse_aaaa_reply.lo libcares_la-ares_parse_mx_reply.lo libcares_la-ares_parse_naptr_reply.lo libcares_la-ares_parse_ns_reply.lo libcares_la-ares_parse_ptr_reply.lo libcares_la-ares_parse_soa_reply.lo libcares_la-ares_parse_srv_reply.lo libcares_la-ares_parse_txt_reply.lo libcares_la-ares_platform.lo libcares_la-ares_process.lo libcares_la-ares_query.lo libcares_la-ares_search.lo libcares_la-ares_send.lo libcares_la-ares_strcasecmp.lo libcares_la-ares_strdup.lo libcares_la-ares_strerror.lo libcares_la-ares_timeout.lo libcares_la-ares_version.lo libcares_la-ares_writev.lo libcares_la-bitncmp.lo libcares_la-inet_net_pton.lo libcares_la-inet_ntop.lo libcares_la-windows_port.lo
libtool: link: gcc -shared -fPIC -DPIC .libs/libcares_la-ares__close_sockets.o .libs/libcares_la-ares__get_hostent.o .libs/libcares_la-ares__read_line.o .libs/libcares_la-ares__timeval.o .libs/libcares_la-ares_cancel.o .libs/libcares_la-ares_data.o .libs/libcares_la-ares_destroy.o .libs/libcares_la-ares_expand_name.o .libs/libcares_la-ares_expand_string.o .libs/libcares_la-ares_fds.o .libs/libcares_la-ares_free_hostent.o .libs/libcares_la-ares_free_string.o .libs/libcares_la-ares_getenv.o .libs/libcares_la-ares_gethostbyaddr.o .libs/libcares_la-ares_gethostbyname.o .libs/libcares_la-ares_getnameinfo.o .libs/libcares_la-ares_getsock.o .libs/libcares_la-ares_init.o .libs/libcares_la-ares_library_init.o .libs/libcares_la-ares_llist.o .libs/libcares_la-ares_mkquery.o .libs/libcares_la-ares_create_query.o .libs/libcares_la-ares_nowarn.o .libs/libcares_la-ares_options.o .libs/libcares_la-ares_parse_a_reply.o .libs/libcares_la-ares_parse_aaaa_reply.o .libs/libcares_la-ares_parse_mx_reply.o .libs/libcares_la-ares_parse_naptr_reply.o .libs/libcares_la-ares_parse_ns_reply.o .libs/libcares_la-ares_parse_ptr_reply.o .libs/libcares_la-ares_parse_soa_reply.o .libs/libcares_la-ares_parse_srv_reply.o .libs/libcares_la-ares_parse_txt_reply.o .libs/libcares_la-ares_platform.o .libs/libcares_la-ares_process.o .libs/libcares_la-ares_query.o .libs/libcares_la-ares_search.o .libs/libcares_la-ares_send.o .libs/libcares_la-ares_strcasecmp.o .libs/libcares_la-ares_strdup.o .libs/libcares_la-ares_strerror.o .libs/libcares_la-ares_timeout.o .libs/libcares_la-ares_version.o .libs/libcares_la-ares_writev.o .libs/libcares_la-bitncmp.o .libs/libcares_la-inet_net_pton.o .libs/libcares_la-inet_ntop.o .libs/libcares_la-windows_port.o -O2 -m64 -mtune=generic -Wl,-z -Wl,relro -Wl,-soname -Wl,libcares.so.2 -o .libs/libcares.so.2.1.0
libtool: link: (cd ".libs" && rm -f "libcares.so.2" && ln -s "libcares.so.2.1.0" "libcares.so.2")
libtool: link: (cd ".libs" && rm -f "libcares.so" && ln -s "libcares.so.2.1.0" "libcares.so")
libtool: link: ( cd ".libs" && rm -f "libcares.la" && ln -s "../libcares.la" "libcares.la" )
gcc -DHAVE_CONFIG_H -I. -I. -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c -o ahost-ahost.o `test -f 'ahost.c' || echo './'`ahost.c
gcc -DHAVE_CONFIG_H -I. -I. -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c -o ahost-ares_getopt.o `test -f 'ares_getopt.c' || echo './'`ares_getopt.c
gcc -DHAVE_CONFIG_H -I. -I. -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c -o ahost-ares_nowarn.o `test -f 'ares_nowarn.c' || echo './'`ares_nowarn.c
gcc -DHAVE_CONFIG_H -I. -I. -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c -o ahost-ares_strcasecmp.o `test -f 'ares_strcasecmp.c' || echo './'`ares_strcasecmp.c
/bin/sh ./libtool --tag=CC --mode=link gcc -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -Wl,-z,relro -o ahost ahost-ahost.o ahost-ares_getopt.o ahost-ares_nowarn.o ahost-ares_strcasecmp.o ./libcares.la
libtool: link: gcc -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -Wl,-z -Wl,relro -o .libs/ahost ahost-ahost.o ahost-ares_getopt.o ahost-ares_nowarn.o ahost-ares_strcasecmp.o ./.libs/libcares.so
gcc -DHAVE_CONFIG_H -I. -I. -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c -o adig-adig.o `test -f 'adig.c' || echo './'`adig.c
gcc -DHAVE_CONFIG_H -I. -I. -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c -o adig-ares_getopt.o `test -f 'ares_getopt.c' || echo './'`ares_getopt.c
gcc -DHAVE_CONFIG_H -I. -I. -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c -o adig-ares_nowarn.o `test -f 'ares_nowarn.c' || echo './'`ares_nowarn.c
gcc -DHAVE_CONFIG_H -I. -I. -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c -o adig-ares_strcasecmp.o `test -f 'ares_strcasecmp.c' || echo './'`ares_strcasecmp.c
/bin/sh ./libtool --tag=CC --mode=link gcc -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -Wl,-z,relro -o adig adig-adig.o adig-ares_getopt.o adig-ares_nowarn.o adig-ares_strcasecmp.o ./libcares.la
libtool: link: gcc -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -Wl,-z -Wl,relro -o .libs/adig adig-adig.o adig-ares_getopt.o adig-ares_nowarn.o adig-ares_strcasecmp.o ./.libs/libcares.so
gcc -DHAVE_CONFIG_H -I. -I. -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c -o acountry-acountry.o `test -f 'acountry.c' || echo './'`acountry.c
gcc -DHAVE_CONFIG_H -I. -I. -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c -o acountry-ares_getopt.o `test -f 'ares_getopt.c' || echo './'`ares_getopt.c
gcc -DHAVE_CONFIG_H -I. -I. -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c -o acountry-ares_nowarn.o `test -f 'ares_nowarn.c' || echo './'`ares_nowarn.c
gcc -DHAVE_CONFIG_H -I. -I. -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -c -o acountry-ares_strcasecmp.o `test -f 'ares_strcasecmp.c' || echo './'`ares_strcasecmp.c
/bin/sh ./libtool --tag=CC --mode=link gcc -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -Wl,-z,relro -o acountry acountry-acountry.o acountry-ares_getopt.o acountry-ares_nowarn.o acountry-ares_strcasecmp.o ./libcares.la
libtool: link: gcc -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -Wno-system-headers -Wl,-z -Wl,relro -o .libs/acountry acountry-acountry.o acountry-ares_getopt.o acountry-ares_nowarn.o acountry-ares_strcasecmp.o ./.libs/libcares.so
make[1]: Leaving directory `/home/ec2-user/rpmbuild/BUILD/c-ares-1.10.0'
+ exit 0
Executing(%install): /bin/sh -e /var/tmp/rpm-tmp.2PSEGa
+ umask 022
+ cd /home/ec2-user/rpmbuild/BUILD
+ '[' /home/ec2-user/rpmbuild/BUILDROOT/c-ares-1.10.0-3.el7.x86_64 '!=' / ']'
+ rm -rf /home/ec2-user/rpmbuild/BUILDROOT/c-ares-1.10.0-3.el7.x86_64
++ dirname /home/ec2-user/rpmbuild/BUILDROOT/c-ares-1.10.0-3.el7.x86_64
+ mkdir -p /home/ec2-user/rpmbuild/BUILDROOT
+ mkdir /home/ec2-user/rpmbuild/BUILDROOT/c-ares-1.10.0-3.el7.x86_64
+ cd c-ares-1.10.0
+ rm -rf /home/ec2-user/rpmbuild/BUILDROOT/c-ares-1.10.0-3.el7.x86_64
+ make DESTDIR=/home/ec2-user/rpmbuild/BUILDROOT/c-ares-1.10.0-3.el7.x86_64 install
make[1]: Entering directory `/home/ec2-user/rpmbuild/BUILD/c-ares-1.10.0'
/usr/bin/mkdir -p '/home/ec2-user/rpmbuild/BUILDROOT/c-ares-1.10.0-3.el7.x86_64/usr/lib64'
/bin/sh ./libtool --mode=install /usr/bin/install -c libcares.la '/home/ec2-user/rpmbuild/BUILDROOT/c-ares-1.10.0-3.el7.x86_64/usr/lib64'
libtool: install: /usr/bin/install -c .libs/libcares.so.2.1.0 /home/ec2-user/rpmbuild/BUILDROOT/c-ares-1.10.0-3.el7.x86_64/usr/lib64/libcares.so.2.1.0
libtool: install: (cd /home/ec2-user/rpmbuild/BUILDROOT/c-ares-1.10.0-3.el7.x86_64/usr/lib64 && { ln -s -f libcares.so.2.1.0 libcares.so.2 || { rm -f libcares.so.2 && ln -s libcares.so.2.1.0 libcares.so.2; }; })
libtool: install: (cd /home/ec2-user/rpmbuild/BUILDROOT/c-ares-1.10.0-3.el7.x86_64/usr/lib64 && { ln -s -f libcares.so.2.1.0 libcares.so || { rm -f libcares.so && ln -s libcares.so.2.1.0 libcares.so; }; })
libtool: install: /usr/bin/install -c .libs/libcares.lai /home/ec2-user/rpmbuild/BUILDROOT/c-ares-1.10.0-3.el7.x86_64/usr/lib64/libcares.la
libtool: install: warning: remember to run `libtool --finish /usr/lib64'
/usr/bin/mkdir -p '/home/ec2-user/rpmbuild/BUILDROOT/c-ares-1.10.0-3.el7.x86_64/usr/include'
/usr/bin/install -c -m 644 ares.h ares_version.h ares_dns.h ares_build.h ares_rules.h '/home/ec2-user/rpmbuild/BUILDROOT/c-ares-1.10.0-3.el7.x86_64/usr/include'
/usr/bin/mkdir -p '/home/ec2-user/rpmbuild/BUILDROOT/c-ares-1.10.0-3.el7.x86_64/usr/share/man/man3'
/usr/bin/install -c -m 644 ares_cancel.3 ares_destroy.3 ares_destroy_options.3 ares_dup.3 ares_expand_name.3 ares_expand_string.3 ares_fds.3 ares_free_data.3 ares_free_hostent.3 ares_free_string.3 ares_get_servers.3 ares_gethostbyaddr.3 ares_gethostbyname.3 ares_gethostbyname_file.3 ares_getnameinfo.3 ares_getsock.3 ares_init.3 ares_init_options.3 ares_library_cleanup.3 ares_library_init.3 ares_mkquery.3 ares_create_query.3 ares_parse_a_reply.3 ares_parse_aaaa_reply.3 ares_parse_mx_reply.3 ares_parse_naptr_reply.3 ares_parse_ns_reply.3 ares_parse_ptr_reply.3 ares_parse_soa_reply.3 ares_parse_srv_reply.3 ares_parse_txt_reply.3 ares_process.3 ares_query.3 ares_save_options.3 ares_search.3 ares_send.3 ares_set_servers.3 ares_set_socket_callback.3 ares_strerror.3 ares_timeout.3 '/home/ec2-user/rpmbuild/BUILDROOT/c-ares-1.10.0-3.el7.x86_64/usr/share/man/man3'
/usr/bin/install -c -m 644 ares_version.3 ares_inet_pton.3 ares_inet_ntop.3 '/home/ec2-user/rpmbuild/BUILDROOT/c-ares-1.10.0-3.el7.x86_64/usr/share/man/man3'
/usr/bin/mkdir -p '/home/ec2-user/rpmbuild/BUILDROOT/c-ares-1.10.0-3.el7.x86_64/usr/lib64/pkgconfig'
/usr/bin/install -c -m 644 libcares.pc '/home/ec2-user/rpmbuild/BUILDROOT/c-ares-1.10.0-3.el7.x86_64/usr/lib64/pkgconfig'
make[1]: Leaving directory `/home/ec2-user/rpmbuild/BUILD/c-ares-1.10.0'
+ rm -f /home/ec2-user/rpmbuild/BUILDROOT/c-ares-1.10.0-3.el7.x86_64//usr/lib64/libcares.la
+ /usr/lib/rpm/find-debuginfo.sh --strict-build-id -m --run-dwz --dwz-low-mem-die-limit 10000000 --dwz-max-die-limit 110000000 /home/ec2-user/rpmbuild/BUILD/c-ares-1.10.0
extracting debug info from /home/ec2-user/rpmbuild/BUILDROOT/c-ares-1.10.0-3.el7.x86_64/usr/lib64/libcares.so.2.1.0
dwz: Too few files for multifile optimization
/usr/lib/rpm/sepdebugcrcfix: Updated 1 CRC32s, 0 CRC32s did match.
symlinked /usr/lib/debug/usr/lib64/libcares.so.2.1.0.debug to /usr/lib/debug/usr/lib64/libcares.so.2.debug
symlinked /usr/lib/debug/usr/lib64/libcares.so.2.1.0.debug to /usr/lib/debug/usr/lib64/libcares.so.debug
655 blocks
+ /usr/lib/rpm/check-buildroot
+ /usr/lib/rpm/redhat/brp-compress
+ /usr/lib/rpm/redhat/brp-strip-static-archive /usr/bin/strip
+ /usr/lib/rpm/brp-python-bytecompile /usr/bin/python 1
+ /usr/lib/rpm/redhat/brp-python-hardlink
+ /usr/lib/rpm/redhat/brp-java-repack-jars
Processing files: c-ares-1.10.0-3.el7.x86_64
Executing(%doc): /bin/sh -e /var/tmp/rpm-tmp.YeC5Gl
+ umask 022
+ cd /home/ec2-user/rpmbuild/BUILD
+ cd c-ares-1.10.0
+ DOCDIR=/home/ec2-user/rpmbuild/BUILDROOT/c-ares-1.10.0-3.el7.x86_64/usr/share/doc/c-ares-1.10.0
+ export DOCDIR
+ /usr/bin/mkdir -p /home/ec2-user/rpmbuild/BUILDROOT/c-ares-1.10.0-3.el7.x86_64/usr/share/doc/c-ares-1.10.0
+ cp -pr README /home/ec2-user/rpmbuild/BUILDROOT/c-ares-1.10.0-3.el7.x86_64/usr/share/doc/c-ares-1.10.0
+ cp -pr README.cares /home/ec2-user/rpmbuild/BUILDROOT/c-ares-1.10.0-3.el7.x86_64/usr/share/doc/c-ares-1.10.0
+ cp -pr CHANGES /home/ec2-user/rpmbuild/BUILDROOT/c-ares-1.10.0-3.el7.x86_64/usr/share/doc/c-ares-1.10.0
+ cp -pr NEWS /home/ec2-user/rpmbuild/BUILDROOT/c-ares-1.10.0-3.el7.x86_64/usr/share/doc/c-ares-1.10.0
+ cp -pr LICENSE /home/ec2-user/rpmbuild/BUILDROOT/c-ares-1.10.0-3.el7.x86_64/usr/share/doc/c-ares-1.10.0
+ exit 0
Provides: c-ares = 1.10.0-3.el7 c-ares(x86-64) = 1.10.0-3.el7 libcares.so.2()(64bit)
Requires(interp): /sbin/ldconfig /sbin/ldconfig
Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1
Requires(post): /sbin/ldconfig
Requires(postun): /sbin/ldconfig
Requires: libc.so.6()(64bit) libc.so.6(GLIBC_2.14)(64bit) libc.so.6(GLIBC_2.15)(64bit) libc.so.6(GLIBC_2.17)(64bit) libc.so.6(GLIBC_2.2.5)(64bit) libc.so.6(GLIBC_2.3)(64bit) libc.so.6(GLIBC_2.3.4)(64bit) libc.so.6(GLIBC_2.4)(64bit) rtld(GNU_HASH)
Processing files: c-ares-devel-1.10.0-3.el7.x86_64
Provides: c-ares-devel = 1.10.0-3.el7 c-ares-devel(x86-64) = 1.10.0-3.el7 pkgconfig(libcares) = 1.10.0
Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1
Requires: /usr/bin/pkg-config libcares.so.2()(64bit)
Processing files: c-ares-debuginfo-1.10.0-3.el7.x86_64
Provides: c-ares-debuginfo = 1.10.0-3.el7 c-ares-debuginfo(x86-64) = 1.10.0-3.el7
Requires(rpmlib): rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 rpmlib(CompressedFileNames) <= 3.0.4-1
Checking for unpackaged file(s): /usr/lib/rpm/check-files /home/ec2-user/rpmbuild/BUILDROOT/c-ares-1.10.0-3.el7.x86_64
Wrote: /home/ec2-user/rpmbuild/RPMS/x86_64/c-ares-1.10.0-3.el7.x86_64.rpm
Wrote: /home/ec2-user/rpmbuild/RPMS/x86_64/c-ares-devel-1.10.0-3.el7.x86_64.rpm
Wrote: /home/ec2-user/rpmbuild/RPMS/x86_64/c-ares-debuginfo-1.10.0-3.el7.x86_64.rpm
Executing(%clean): /bin/sh -e /var/tmp/rpm-tmp.cMC8F6
+ umask 022
+ cd /home/ec2-user/rpmbuild/BUILD
+ cd c-ares-1.10.0
+ rm -rf /home/ec2-user/rpmbuild/BUILDROOT/c-ares-1.10.0-3.el7.x86_64
+ exit 0
Executing(--clean): /bin/sh -e /var/tmp/rpm-tmp.oqHuAi
+ umask 022
+ cd /home/ec2-user/rpmbuild/BUILD
+ rm -rf c-ares-1.10.0
+ exit 0
[ec2-user@ip-172-31-31-178 ~]$
[ec2-user@ip-172-31-31-178 ~]$
[ec2-user@ip-172-31-31-178 ~]$ ls
c-ares-1.10.0-3.el7.src.rpm curl KiwiIRC rpmbuild Unreal3.2.10.4 Unreal3.2.4.tar.gz
[ec2-user@ip-172-31-31-178 ~]$ cd rpmbuild/
[ec2-user@ip-172-31-31-178 rpmbuild]$ ls
BUILD BUILDROOT RPMS SOURCES SPECS SRPMS
[ec2-user@ip-172-31-31-178 rpmbuild]$ cd RPMS/x86_64/
[ec2-user@ip-172-31-31-178 x86_64]$ ls
c-ares-1.10.0-3.el7.x86_64.rpm c-ares-debuginfo-1.10.0-3.el7.x86_64.rpm c-ares-devel-1.10.0-3.el7.x86_64.rpm
[ec2-user@ip-172-31-31-178 x86_64]$ rpm -qa c-ares
c-ares-1.10.0-3.el7.x86_64
[ec2-user@ip-172-31-31-178 x86_64]$ rpm -i c-ares-de
c-ares-debuginfo-1.10.0-3.el7.x86_64.rpm c-ares-devel-1.10.0-3.el7.x86_64.rpm
[ec2-user@ip-172-31-31-178 x86_64]$ rpm -i c-ares-de
c-ares-debuginfo-1.10.0-3.el7.x86_64.rpm c-ares-devel-1.10.0-3.el7.x86_64.rpm
[ec2-user@ip-172-31-31-178 x86_64]$ rpm -i c-ares-devel-1.10.0-3.el7.x86_64.rpm
error: can't create transaction lock on /var/lib/rpm/.rpm.lock (Permission denied)
[ec2-user@ip-172-31-31-178 x86_64]$ sudo rpm -i c-ares-devel-1.10.0-3.el7.x86_64.rpm
[ec2-user@ip-172-31-31-178 x86_64]$ rpm -qa c-ares-devel-1.10.0-3.el7.x86_64.rpm
[ec2-user@ip-172-31-31-178 x86_64]$ sudo yum install nodejs npm --enablerepo=epel
Loaded plugins: amazon-id, rhui-lb
Resolving Dependencies
--> Running transaction check
---> Package nodejs.x86_64 0:0.10.33-1.el7 will be installed
---> Package npm.noarch 0:1.3.6-5.el7 will be installed
--> Processing Dependency: npm(npmlog) = 0.0.4 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(npm-user-validate) = 0.0.3 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(init-package-json) = 0.0.10 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(editor) = 0.0.4 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(block-stream) = 0.0.7 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(which) < 2 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(uid-number) < 1 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(tar) < 0.2 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(slide) < 1.2 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(sha) < 1.3 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(semver) < 2.2 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(rimraf) < 2.3 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(retry) < 0.7 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(request) < 3 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(read-package-json) < 1.2 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(read-installed) < 0.3 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(read) < 1.1 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(osenv) < 1 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(opener) < 1.4 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(once) < 1.2 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(npmconf) < 0.2 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(npm-registry-client) < 0.3 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(nopt) < 2.2 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(node-gyp) < 0.11 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(mkdirp) < 0.4 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(minimatch) < 0.3 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(lru-cache) < 2.4 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(lockfile) < 0.5 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(ini) < 1.2 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(graceful-fs) < 2.1 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(glob) < 3.3 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(fstream-npm) < 0.2 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(fstream) < 0.2 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(cmd-shim) < 1.2 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(chownr) < 1 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(chmodr) < 0.2 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(child-process-close) < 0.2 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(archy) < 1 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(ansi) < 0.3 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(abbrev) < 1.1 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(request) > 2.16 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(which) >= 1 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(tar) >= 0.1.18 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(slide) >= 1.1.4 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(sha) >= 1.2.1 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(semver) >= 2.1 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(rimraf) >= 2.2.0 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(retry) >= 0.6.0 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(read-package-json) >= 1.1.0 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(read-installed) >= 0.2.2 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(read) >= 1.0.4 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(opener) >= 1.3.0 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(once) >= 1.1.1 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(npmconf) >= 0.1.2 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(npm-registry-client) >= 0.2.27 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(nopt) >= 2.1.2 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(node-gyp) >= 0.10.6 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(mkdirp) >= 0.3.3 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(minimatch) >= 0.2.12 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(lru-cache) >= 2.3.0 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(lockfile) >= 0.4.0 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(ini) >= 1.1.0 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(graceful-fs) >= 2.0.0 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(glob) >= 3.2.3 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(fstream-npm) >= 0.1.3 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(fstream) >= 0.1.23 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(cmd-shim) >= 1.1 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(chmodr) >= 0.1.0 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(child-process-close) >= 0.1.1 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(ansi) >= 0.2 for package: npm-1.3.6-5.el7.noarch
--> Processing Dependency: npm(abbrev) >= 1.0.4 for package: npm-1.3.6-5.el7.noarch
--> Running transaction check
---> Package node-gyp.noarch 0:0.10.6-2.el7 will be installed
--> Processing Dependency: v8-devel for package: node-gyp-0.10.6-2.el7.noarch
--> Processing Dependency: nodejs-devel for package: node-gyp-0.10.6-2.el7.noarch
--> Processing Dependency: libuv-devel for package: node-gyp-0.10.6-2.el7.noarch
--> Processing Dependency: http-parser-devel for package: node-gyp-0.10.6-2.el7.noarch
--> Processing Dependency: gyp for package: node-gyp-0.10.6-2.el7.noarch
---> Package nodejs-abbrev.noarch 0:1.0.4-6.el7 will be installed
---> Package nodejs-ansi.noarch 0:0.2.1-1.el7 will be installed
---> Package nodejs-archy.noarch 0:0.0.2-8.el7 will be installed
---> Package nodejs-block-stream.noarch 0:0.0.7-1.el7 will be installed
--> Processing Dependency: npm(inherits) < 2.1 for package: nodejs-block-stream-0.0.7-1.el7.noarch
--> Processing Dependency: npm(inherits) >= 2.0.0 for package: nodejs-block-stream-0.0.7-1.el7.noarch
---> Package nodejs-child-process-close.noarch 0:0.1.1-2.el7 will be installed
---> Package nodejs-chmodr.noarch 0:0.1.0-4.el7 will be installed
---> Package nodejs-chownr.noarch 0:0.0.1-9.el7 will be installed
---> Package nodejs-cmd-shim.noarch 0:1.1.0-3.el7 will be installed
---> Package nodejs-editor.noarch 0:0.0.4-2.el7 will be installed
---> Package nodejs-fstream.noarch 0:0.1.24-1.el7 will be installed
---> Package nodejs-fstream-npm.noarch 0:0.1.5-1.el7 will be installed
--> Processing Dependency: npm(fstream-ignore) < 0.1 for package: nodejs-fstream-npm-0.1.5-1.el7.noarch
--> Processing Dependency: npm(fstream-ignore) >= 0.0.5 for package: nodejs-fstream-npm-0.1.5-1.el7.noarch
---> Package nodejs-glob.noarch 0:3.2.6-1.el7 will be installed
---> Package nodejs-graceful-fs.noarch 0:2.0.0-2.el7 will be installed
---> Package nodejs-ini.noarch 0:1.1.0-3.el7 will be installed
---> Package nodejs-init-package-json.noarch 0:0.0.10-1.el7 will be installed
--> Processing Dependency: npm(promzard) < 0.3 for package: nodejs-init-package-json-0.0.10-1.el7.noarch
--> Processing Dependency: npm(promzard) >= 0.2.0 for package: nodejs-init-package-json-0.0.10-1.el7.noarch
---> Package nodejs-lockfile.noarch 0:0.4.2-1.el7 will be installed
---> Package nodejs-lru-cache.noarch 0:2.3.0-3.el7 will be installed
---> Package nodejs-minimatch.noarch 0:0.2.12-2.el7 will be installed
--> Processing Dependency: npm(sigmund) < 1.1 for package: nodejs-minimatch-0.2.12-2.el7.noarch
--> Processing Dependency: npm(sigmund) >= 1.0.0 for package: nodejs-minimatch-0.2.12-2.el7.noarch
---> Package nodejs-mkdirp.noarch 0:0.3.5-3.el7 will be installed
---> Package nodejs-nopt.noarch 0:2.1.2-1.el7 will be installed
---> Package nodejs-npm-registry-client.noarch 0:0.2.28-1.el7 will be installed
--> Processing Dependency: npm(couch-login) < 0.2 for package: nodejs-npm-registry-client-0.2.28-1.el7.noarch
--> Processing Dependency: npm(couch-login) >= 0.1.18 for package: nodejs-npm-registry-client-0.2.28-1.el7.noarch
---> Package nodejs-npm-user-validate.noarch 0:0.0.3-1.el7 will be installed
---> Package nodejs-npmconf.noarch 0:0.1.3-1.el7 will be installed
--> Processing Dependency: npm(config-chain) < 1.2 for package: nodejs-npmconf-0.1.3-1.el7.noarch
--> Processing Dependency: npm(config-chain) >= 1.1.1 for package: nodejs-npmconf-0.1.3-1.el7.noarch
---> Package nodejs-npmlog.noarch 0:0.0.4-3.el7 will be installed
---> Package nodejs-once.noarch 0:1.1.1-5.el7 will be installed
---> Package nodejs-opener.noarch 0:1.3.0-7.el7 will be installed
---> Package nodejs-osenv.noarch 0:0.0.3-5.el7 will be installed
---> Package nodejs-read.noarch 0:1.0.5-1.el7 will be installed
--> Processing Dependency: npm(mute-stream) < 0.1 for package: nodejs-read-1.0.5-1.el7.noarch
--> Processing Dependency: npm(mute-stream) >= 0.0.4 for package: nodejs-read-1.0.5-1.el7.noarch
---> Package nodejs-read-installed.noarch 0:0.2.4-1.el7 will be installed
---> Package nodejs-read-package-json.noarch 0:1.1.3-1.el7 will be installed
--> Processing Dependency: npm(normalize-package-data) < 1 for package: nodejs-read-package-json-1.1.3-1.el7.noarch
--> Processing Dependency: npm(normalize-package-data) >= 0.2 for package: nodejs-read-package-json-1.1.3-1.el7.noarch
---> Package nodejs-request.noarch 0:2.25.0-1.el7 will be installed
--> Processing Dependency: npm(tunnel-agent) < 0.4 for package: nodejs-request-2.25.0-1.el7.noarch
--> Processing Dependency: npm(qs) < 0.7 for package: nodejs-request-2.25.0-1.el7.noarch
--> Processing Dependency: npm(oauth-sign) < 0.4 for package: nodejs-request-2.25.0-1.el7.noarch
--> Processing Dependency: npm(node-uuid) < 1.5 for package: nodejs-request-2.25.0-1.el7.noarch
--> Processing Dependency: npm(mime) < 1.3 for package: nodejs-request-2.25.0-1.el7.noarch
--> Processing Dependency: npm(json-stringify-safe) < 5.1 for package: nodejs-request-2.25.0-1.el7.noarch
--> Processing Dependency: npm(http-signature) < 0.11 for package: nodejs-request-2.25.0-1.el7.noarch
--> Processing Dependency: npm(hawk) < 1.1 for package: nodejs-request-2.25.0-1.el7.noarch
--> Processing Dependency: npm(form-data) < 0.2 for package: nodejs-request-2.25.0-1.el7.noarch
--> Processing Dependency: npm(forever-agent) < 0.6 for package: nodejs-request-2.25.0-1.el7.noarch
--> Processing Dependency: npm(cookie-jar) < 0.4 for package: nodejs-request-2.25.0-1.el7.noarch
--> Processing Dependency: npm(aws-sign) < 0.4 for package: nodejs-request-2.25.0-1.el7.noarch
--> Processing Dependency: npm(tunnel-agent) >= 0.3.0 for package: nodejs-request-2.25.0-1.el7.noarch
--> Processing Dependency: npm(qs) >= 0.6.0 for package: nodejs-request-2.25.0-1.el7.noarch
--> Processing Dependency: npm(oauth-sign) >= 0.3.0 for package: nodejs-request-2.25.0-1.el7.noarch
--> Processing Dependency: npm(node-uuid) >= 1.4.0 for package: nodejs-request-2.25.0-1.el7.noarch
--> Processing Dependency: npm(mime) >= 1.2.9 for package: nodejs-request-2.25.0-1.el7.noarch
--> Processing Dependency: npm(json-stringify-safe) >= 5.0.0 for package: nodejs-request-2.25.0-1.el7.noarch
--> Processing Dependency: npm(http-signature) >= 0.10.0 for package: nodejs-request-2.25.0-1.el7.noarch
--> Processing Dependency: npm(hawk) >= 1.0.0 for package: nodejs-request-2.25.0-1.el7.noarch
--> Processing Dependency: npm(form-data) >= 0.1.0 for package: nodejs-request-2.25.0-1.el7.noarch
--> Processing Dependency: npm(forever-agent) >= 0.5.0 for package: nodejs-request-2.25.0-1.el7.noarch
--> Processing Dependency: npm(cookie-jar) >= 0.3.0 for package: nodejs-request-2.25.0-1.el7.noarch
--> Processing Dependency: npm(aws-sign) >= 0.3.0 for package: nodejs-request-2.25.0-1.el7.noarch
---> Package nodejs-retry.noarch 0:0.6.0-5.el7 will be installed
---> Package nodejs-rimraf.noarch 0:2.2.2-1.el7 will be installed
---> Package nodejs-semver.noarch 0:2.1.0-3.el7 will be installed
---> Package nodejs-sha.noarch 0:1.2.1-1.el7 will be installed
---> Package nodejs-slide.noarch 0:1.1.5-1.el7 will be installed
---> Package nodejs-tar.noarch 0:0.1.18-1.el7 will be installed
---> Package nodejs-uid-number.noarch 0:0.0.3-7.el7 will be installed
---> Package nodejs-which.noarch 0:1.0.5-8.el7 will be installed
--> Running transaction check
---> Package gyp.noarch 0:0.1-0.11.1617svn.el7 will be installed
---> Package http-parser-devel.x86_64 0:2.0-4.20121128gitcd01361.el7 will be installed
---> Package libuv-devel.x86_64 1:0.10.29-1.el7 will be installed
---> Package nodejs-aws-sign.noarch 0:0.3.0-1.el7 will be installed
---> Package nodejs-config-chain.noarch 0:1.1.7-1.el7 will be installed
--> Processing Dependency: npm(proto-list) < 1.3 for package: nodejs-config-chain-1.1.7-1.el7.noarch
--> Processing Dependency: npm(proto-list) >= 1.2.1 for package: nodejs-config-chain-1.1.7-1.el7.noarch
---> Package nodejs-cookie-jar.noarch 1:0.3.0-1.el7 will be installed
---> Package nodejs-couch-login.noarch 0:0.1.18-1.el7 will be installed
---> Package nodejs-devel.x86_64 0:0.10.33-1.el7 will be installed
--> Processing Dependency: zlib-devel(x86-64) for package: nodejs-devel-0.10.33-1.el7.x86_64
--> Processing Dependency: openssl-devel(x86-64) for package: nodejs-devel-0.10.33-1.el7.x86_64
--> Processing Dependency: nodejs-packaging for package: nodejs-devel-0.10.33-1.el7.x86_64
---> Package nodejs-forever-agent.noarch 0:0.5.0-1.el7 will be installed
---> Package nodejs-form-data.noarch 0:0.1.1-1.el7 will be installed
--> Processing Dependency: npm(combined-stream) < 0.1 for package: nodejs-form-data-0.1.1-1.el7.noarch
--> Processing Dependency: npm(async) < 0.3 for package: nodejs-form-data-0.1.1-1.el7.noarch
--> Processing Dependency: npm(combined-stream) >= 0.0.4 for package: nodejs-form-data-0.1.1-1.el7.noarch
--> Processing Dependency: npm(async) >= 0.2.9 for package: nodejs-form-data-0.1.1-1.el7.noarch
---> Package nodejs-fstream-ignore.noarch 0:0.0.7-1.el7 will be installed
---> Package nodejs-hawk.noarch 0:1.0.0-1.el7 will be installed
--> Processing Dependency: npm(sntp) < 0.3 for package: nodejs-hawk-1.0.0-1.el7.noarch
--> Processing Dependency: npm(hoek) < 0.10 for package: nodejs-hawk-1.0.0-1.el7.noarch
--> Processing Dependency: npm(cryptiles) < 0.3 for package: nodejs-hawk-1.0.0-1.el7.noarch
--> Processing Dependency: npm(boom) < 0.5 for package: nodejs-hawk-1.0.0-1.el7.noarch
--> Processing Dependency: npm(sntp) >= 0.2 for package: nodejs-hawk-1.0.0-1.el7.noarch
--> Processing Dependency: npm(hoek) >= 0.9 for package: nodejs-hawk-1.0.0-1.el7.noarch
--> Processing Dependency: npm(cryptiles) >= 0.2 for package: nodejs-hawk-1.0.0-1.el7.noarch
--> Processing Dependency: npm(boom) >= 0.4 for package: nodejs-hawk-1.0.0-1.el7.noarch
---> Package nodejs-http-signature.noarch 0:0.10.0-3.el7 will be installed
--> Processing Dependency: npm(ctype) < 0.6 for package: nodejs-http-signature-0.10.0-3.el7.noarch
--> Processing Dependency: npm(assert-plus) < 0.2 for package: nodejs-http-signature-0.10.0-3.el7.noarch
--> Processing Dependency: npm(asn1) < 0.2 for package: nodejs-http-signature-0.10.0-3.el7.noarch
--> Processing Dependency: npm(ctype) >= 0.5.3 for package: nodejs-http-signature-0.10.0-3.el7.noarch
--> Processing Dependency: npm(assert-plus) >= 0.1.2 for package: nodejs-http-signature-0.10.0-3.el7.noarch
--> Processing Dependency: npm(asn1) >= 0.1.11 for package: nodejs-http-signature-0.10.0-3.el7.noarch
---> Package nodejs-inherits.noarch 0:2.0.0-4.el7 will be installed
---> Package nodejs-json-stringify-safe.noarch 0:5.0.0-1.el7 will be installed
---> Package nodejs-mime.noarch 0:1.2.11-1.el7 will be installed
---> Package nodejs-mute-stream.noarch 0:0.0.4-1.el7 will be installed
---> Package nodejs-node-uuid.noarch 0:1.4.1-1.el7 will be installed
---> Package nodejs-normalize-package-data.noarch 0:0.2.1-1.el7 will be installed
--> Processing Dependency: npm(github-url-from-git) < 1.2 for package: nodejs-normalize-package-data-0.2.1-1.el7.noarch
--> Processing Dependency: npm(github-url-from-git) >= 1.1.1 for package: nodejs-normalize-package-data-0.2.1-1.el7.noarch
---> Package nodejs-oauth-sign.noarch 0:0.3.0-1.el7 will be installed
---> Package nodejs-promzard.noarch 0:0.2.0-6.el7 will be installed
---> Package nodejs-qs.noarch 0:0.6.6-3.el7 will be installed
---> Package nodejs-sigmund.noarch 0:1.0.0-5.el7 will be installed
---> Package nodejs-tunnel-agent.noarch 0:0.3.0-1.el7 will be installed
---> Package v8-devel.x86_64 1:3.14.5.10-14.el7 will be installed
--> Running transaction check
---> Package nodejs-asn1.noarch 0:0.1.11-3.el7 will be installed
---> Package nodejs-assert-plus.noarch 0:0.1.4-1.el7 will be installed
---> Package nodejs-async.noarch 0:0.2.10-1.el7 will be installed
---> Package nodejs-boom.noarch 0:0.4.2-2.el7 will be installed
---> Package nodejs-combined-stream.noarch 0:0.0.4-3.el7 will be installed
--> Processing Dependency: npm(delayed-stream) = 0.0.5 for package: nodejs-combined-stream-0.0.4-3.el7.noarch
---> Package nodejs-cryptiles.noarch 0:0.2.2-1.el7 will be installed
---> Package nodejs-ctype.noarch 0:0.5.3-3.el7 will be installed
---> Package nodejs-github-url-from-git.noarch 0:1.1.1-2.el7 will be installed
---> Package nodejs-hoek.noarch 0:0.9.1-1.el7 will be installed
---> Package nodejs-packaging.noarch 0:7-1.el7 will be installed
---> Package nodejs-proto-list.noarch 0:1.2.2-5.el7 will be installed
---> Package nodejs-sntp.noarch 0:0.2.4-1.el7 will be installed
---> Package openssl-devel.x86_64 1:1.0.1e-34.el7_0.6 will be installed
--> Processing Dependency: krb5-devel(x86-64) for package: 1:openssl-devel-1.0.1e-34.el7_0.6.x86_64
---> Package zlib-devel.x86_64 0:1.2.7-13.el7 will be installed
--> Running transaction check
---> Package krb5-devel.x86_64 0:1.11.3-49.el7 will be installed
--> Processing Dependency: libverto-devel for package: krb5-devel-1.11.3-49.el7.x86_64
--> Processing Dependency: libselinux-devel for package: krb5-devel-1.11.3-49.el7.x86_64
--> Processing Dependency: libcom_err-devel for package: krb5-devel-1.11.3-49.el7.x86_64
--> Processing Dependency: keyutils-libs-devel for package: krb5-devel-1.11.3-49.el7.x86_64
---> Package nodejs-delayed-stream.noarch 0:0.0.5-5.el7 will be installed
--> Running transaction check
---> Package keyutils-libs-devel.x86_64 0:1.5.8-3.el7 will be installed
---> Package libcom_err-devel.x86_64 0:1.42.9-4.el7 will be installed
---> Package libselinux-devel.x86_64 0:2.2.2-6.el7 will be installed
--> Processing Dependency: libsepol-devel >= 2.1.9-1 for package: libselinux-devel-2.2.2-6.el7.x86_64
--> Processing Dependency: pkgconfig(libsepol) for package: libselinux-devel-2.2.2-6.el7.x86_64
--> Processing Dependency: pkgconfig(libpcre) for package: libselinux-devel-2.2.2-6.el7.x86_64
---> Package libverto-devel.x86_64 0:0.2.5-4.el7 will be installed
--> Running transaction check
---> Package libsepol-devel.x86_64 0:2.1.9-3.el7 will be installed
---> Package pcre-devel.x86_64 0:8.32-12.el7 will be installed
--> Finished Dependency Resolution
Dependencies Resolved
================================================================================================================================================================================================
Package Arch Version Repository Size
================================================================================================================================================================================================
Installing:
nodejs x86_64 0.10.33-1.el7 epel 388 k
npm noarch 1.3.6-5.el7 epel 333 k
Installing for dependencies:
gyp noarch 0.1-0.11.1617svn.el7 epel 403 k
http-parser-devel x86_64 2.0-4.20121128gitcd01361.el7 epel 9.2 k
keyutils-libs-devel x86_64 1.5.8-3.el7 rhui-REGION-rhel-server-releases 37 k
krb5-devel x86_64 1.11.3-49.el7 rhui-REGION-rhel-server-releases 611 k
libcom_err-devel x86_64 1.42.9-4.el7 rhui-REGION-rhel-server-releases 30 k
libselinux-devel x86_64 2.2.2-6.el7 rhui-REGION-rhel-server-releases 174 k
libsepol-devel x86_64 2.1.9-3.el7 rhui-REGION-rhel-server-releases 71 k
libuv-devel x86_64 1:0.10.29-1.el7 epel 40 k
libverto-devel x86_64 0.2.5-4.el7 rhui-REGION-rhel-server-releases 12 k
node-gyp noarch 0.10.6-2.el7 epel 26 k
nodejs-abbrev noarch 1.0.4-6.el7 epel 7.4 k
nodejs-ansi noarch 0.2.1-1.el7 epel 13 k
nodejs-archy noarch 0.0.2-8.el7 epel 6.7 k
nodejs-asn1 noarch 0.1.11-3.el7 epel 11 k
nodejs-assert-plus noarch 0.1.4-1.el7 epel 7.3 k
nodejs-async noarch 0.2.10-1.el7 epel 21 k
nodejs-aws-sign noarch 0.3.0-1.el7 epel 5.7 k
nodejs-block-stream noarch 0.0.7-1.el7 epel 8.7 k
nodejs-boom noarch 0.4.2-2.el7 epel 37 k
nodejs-child-process-close noarch 0.1.1-2.el7 epel 6.1 k
nodejs-chmodr noarch 0.1.0-4.el7 epel 5.9 k
nodejs-chownr noarch 0.0.1-9.el7 epel 6.4 k
nodejs-cmd-shim noarch 1.1.0-3.el7 epel 7.7 k
nodejs-combined-stream noarch 0.0.4-3.el7 epel 7.9 k
nodejs-config-chain noarch 1.1.7-1.el7 epel 10 k
nodejs-cookie-jar noarch 1:0.3.0-1.el7 epel 6.1 k
nodejs-couch-login noarch 0.1.18-1.el7 epel 12 k
nodejs-cryptiles noarch 0.2.2-1.el7 epel 6.9 k
nodejs-ctype noarch 0.5.3-3.el7 epel 31 k
nodejs-delayed-stream noarch 0.0.5-5.el7 epel 7.9 k
nodejs-devel x86_64 0.10.33-1.el7 epel 327 k
nodejs-editor noarch 0.0.4-2.el7 epel 6.4 k
nodejs-forever-agent noarch 0.5.0-1.el7 epel 5.6 k
nodejs-form-data noarch 0.1.1-1.el7 epel 11 k
nodejs-fstream noarch 0.1.24-1.el7 epel 25 k
nodejs-fstream-ignore noarch 0.0.7-1.el7 epel 8.9 k
nodejs-fstream-npm noarch 0.1.5-1.el7 epel 11 k
nodejs-github-url-from-git noarch 1.1.1-2.el7 epel 6.0 k
nodejs-glob noarch 3.2.6-1.el7 epel 16 k
nodejs-graceful-fs noarch 2.0.0-2.el7 epel 11 k
nodejs-hawk noarch 1.0.0-1.el7 epel 105 k
nodejs-hoek noarch 0.9.1-1.el7 epel 51 k
nodejs-http-signature noarch 0.10.0-3.el7 epel 17 k
nodejs-inherits noarch 2.0.0-4.el7 epel 8.6 k
nodejs-ini noarch 1.1.0-3.el7 epel 8.3 k
nodejs-init-package-json noarch 0.0.10-1.el7 epel 9.5 k
nodejs-json-stringify-safe noarch 5.0.0-1.el7 epel 6.6 k
nodejs-lockfile noarch 0.4.2-1.el7 epel 11 k
nodejs-lru-cache noarch 2.3.0-3.el7 epel 9.6 k
nodejs-mime noarch 1.2.11-1.el7 epel 22 k
nodejs-minimatch noarch 0.2.12-2.el7 epel 18 k
nodejs-mkdirp noarch 0.3.5-3.el7 epel 7.5 k
nodejs-mute-stream noarch 0.0.4-1.el7 epel 7.5 k
nodejs-node-uuid noarch 1.4.1-1.el7 epel 10 k
nodejs-nopt noarch 2.1.2-1.el7 epel 15 k
nodejs-normalize-package-data noarch 0.2.1-1.el7 epel 13 k
nodejs-npm-registry-client noarch 0.2.28-1.el7 epel 20 k
nodejs-npm-user-validate noarch 0.0.3-1.el7 epel 6.1 k
nodejs-npmconf noarch 0.1.3-1.el7 epel 17 k
nodejs-npmlog noarch 0.0.4-3.el7 epel 9.6 k
nodejs-oauth-sign noarch 0.3.0-1.el7 epel 4.9 k
nodejs-once noarch 1.1.1-5.el7 epel 6.0 k
nodejs-opener noarch 1.3.0-7.el7 epel 6.9 k
nodejs-osenv noarch 0.0.3-5.el7 epel 7.1 k
nodejs-packaging noarch 7-1.el7 epel 11 k
nodejs-promzard noarch 0.2.0-6.el7 epel 12 k
nodejs-proto-list noarch 1.2.2-5.el7 epel 6.7 k
nodejs-qs noarch 0.6.6-3.el7 epel 8.7 k
nodejs-read noarch 1.0.5-1.el7 epel 8.7 k
nodejs-read-installed noarch 0.2.4-1.el7 epel 9.5 k
nodejs-read-package-json noarch 1.1.3-1.el7 epel 12 k
nodejs-request noarch 2.25.0-1.el7 epel 27 k
nodejs-retry noarch 0.6.0-5.el7 epel 11 k
nodejs-rimraf noarch 2.2.2-1.el7 epel 8.1 k
nodejs-semver noarch 2.1.0-3.el7 epel 16 k
nodejs-sha noarch 1.2.1-1.el7 epel 7.6 k
nodejs-sigmund noarch 1.0.0-5.el7 epel 8.3 k
nodejs-slide noarch 1.1.5-1.el7 epel 9.9 k
nodejs-sntp noarch 0.2.4-1.el7 epel 10 k
nodejs-tar noarch 0.1.18-1.el7 epel 23 k
nodejs-tunnel-agent noarch 0.3.0-1.el7 epel 6.3 k
nodejs-uid-number noarch 0.0.3-7.el7 epel 7.1 k
nodejs-which noarch 1.0.5-8.el7 epel 8.0 k
openssl-devel x86_64 1:1.0.1e-34.el7_0.6 rhui-REGION-rhel-server-releases 1.2 M
pcre-devel x86_64 8.32-12.el7 rhui-REGION-rhel-server-releases 477 k
v8-devel x86_64 1:3.14.5.10-14.el7 epel 71 k
zlib-devel x86_64 1.2.7-13.el7 rhui-REGION-rhel-server-releases 49 k
Transaction Summary
================================================================================================================================================================================================
Install 2 Packages (+87 Dependent packages)
Total download size: 5.1 M
Installed size: 13 M
Is this ok [y/d/N]: Y
Downloading packages:
(1/89): gyp-0.1-0.11.1617svn.el7.noarch.rpm | 403 kB 00:00:00
(2/89): http-parser-devel-2.0-4.20121128gitcd01361.el7.x86_64.rpm | 9.2 kB 00:00:00
(3/89): keyutils-libs-devel-1.5.8-3.el7.x86_64.rpm | 37 kB 00:00:00
(4/89): krb5-devel-1.11.3-49.el7.x86_64.rpm | 611 kB 00:00:00
(5/89): libcom_err-devel-1.42.9-4.el7.x86_64.rpm | 30 kB 00:00:00
(6/89): libuv-devel-0.10.29-1.el7.x86_64.rpm | 40 kB 00:00:00
(7/89): libselinux-devel-2.2.2-6.el7.x86_64.rpm | 174 kB 00:00:00
(8/89): libsepol-devel-2.1.9-3.el7.x86_64.rpm | 71 kB 00:00:00
(9/89): node-gyp-0.10.6-2.el7.noarch.rpm | 26 kB 00:00:00
(10/89): libverto-devel-0.2.5-4.el7.x86_64.rpm | 12 kB 00:00:00
(11/89): nodejs-0.10.33-1.el7.x86_64.rpm | 388 kB 00:00:00
(12/89): nodejs-abbrev-1.0.4-6.el7.noarch.rpm | 7.4 kB 00:00:00
(13/89): nodejs-ansi-0.2.1-1.el7.noarch.rpm | 13 kB 00:00:00
(14/89): nodejs-archy-0.0.2-8.el7.noarch.rpm | 6.7 kB 00:00:00
(15/89): nodejs-asn1-0.1.11-3.el7.noarch.rpm | 11 kB 00:00:00
(16/89): nodejs-assert-plus-0.1.4-1.el7.noarch.rpm | 7.3 kB 00:00:00
(17/89): nodejs-async-0.2.10-1.el7.noarch.rpm | 21 kB 00:00:00
(18/89): nodejs-aws-sign-0.3.0-1.el7.noarch.rpm | 5.7 kB 00:00:00
(19/89): nodejs-block-stream-0.0.7-1.el7.noarch.rpm | 8.7 kB 00:00:00
(20/89): nodejs-boom-0.4.2-2.el7.noarch.rpm | 37 kB 00:00:00
(21/89): nodejs-child-process-close-0.1.1-2.el7.noarch.rpm | 6.1 kB 00:00:00
(22/89): nodejs-chmodr-0.1.0-4.el7.noarch.rpm | 5.9 kB 00:00:00
(23/89): nodejs-chownr-0.0.1-9.el7.noarch.rpm | 6.4 kB 00:00:00
(24/89): nodejs-cmd-shim-1.1.0-3.el7.noarch.rpm | 7.7 kB 00:00:00
(25/89): nodejs-combined-stream-0.0.4-3.el7.noarch.rpm | 7.9 kB 00:00:00
(26/89): nodejs-config-chain-1.1.7-1.el7.noarch.rpm | 10 kB 00:00:00
(27/89): nodejs-cookie-jar-0.3.0-1.el7.noarch.rpm | 6.1 kB 00:00:00
(28/89): nodejs-couch-login-0.1.18-1.el7.noarch.rpm | 12 kB 00:00:00
(29/89): nodejs-cryptiles-0.2.2-1.el7.noarch.rpm | 6.9 kB 00:00:00
(30/89): nodejs-ctype-0.5.3-3.el7.noarch.rpm | 31 kB 00:00:00
(31/89): nodejs-delayed-stream-0.0.5-5.el7.noarch.rpm | 7.9 kB 00:00:00
(32/89): nodejs-devel-0.10.33-1.el7.x86_64.rpm | 327 kB 00:00:00
(33/89): nodejs-editor-0.0.4-2.el7.noarch.rpm | 6.4 kB 00:00:00
(34/89): nodejs-forever-agent-0.5.0-1.el7.noarch.rpm | 5.6 kB 00:00:00
(35/89): nodejs-form-data-0.1.1-1.el7.noarch.rpm | 11 kB 00:00:00
(36/89): nodejs-fstream-0.1.24-1.el7.noarch.rpm | 25 kB 00:00:00
(37/89): nodejs-fstream-ignore-0.0.7-1.el7.noarch.rpm | 8.9 kB 00:00:00
(38/89): nodejs-fstream-npm-0.1.5-1.el7.noarch.rpm | 11 kB 00:00:00
(39/89): nodejs-github-url-from-git-1.1.1-2.el7.noarch.rpm | 6.0 kB 00:00:00
(40/89): nodejs-glob-3.2.6-1.el7.noarch.rpm | 16 kB 00:00:00
(41/89): nodejs-graceful-fs-2.0.0-2.el7.noarch.rpm | 11 kB 00:00:00
(42/89): nodejs-hawk-1.0.0-1.el7.noarch.rpm | 105 kB 00:00:00
(43/89): nodejs-hoek-0.9.1-1.el7.noarch.rpm | 51 kB 00:00:00
(44/89): nodejs-http-signature-0.10.0-3.el7.noarch.rpm | 17 kB 00:00:00
(45/89): nodejs-inherits-2.0.0-4.el7.noarch.rpm | 8.6 kB 00:00:00
(46/89): nodejs-ini-1.1.0-3.el7.noarch.rpm | 8.3 kB 00:00:00
(47/89): nodejs-init-package-json-0.0.10-1.el7.noarch.rpm | 9.5 kB 00:00:00
(48/89): nodejs-json-stringify-safe-5.0.0-1.el7.noarch.rpm | 6.6 kB 00:00:00
(49/89): nodejs-lockfile-0.4.2-1.el7.noarch.rpm | 11 kB 00:00:00
(50/89): nodejs-lru-cache-2.3.0-3.el7.noarch.rpm | 9.6 kB 00:00:00
(51/89): nodejs-mime-1.2.11-1.el7.noarch.rpm | 22 kB 00:00:00
(52/89): nodejs-minimatch-0.2.12-2.el7.noarch.rpm | 18 kB 00:00:00
(53/89): nodejs-mkdirp-0.3.5-3.el7.noarch.rpm | 7.5 kB 00:00:00
(54/89): nodejs-mute-stream-0.0.4-1.el7.noarch.rpm | 7.5 kB 00:00:00
(55/89): nodejs-node-uuid-1.4.1-1.el7.noarch.rpm | 10 kB 00:00:00
(56/89): nodejs-nopt-2.1.2-1.el7.noarch.rpm | 15 kB 00:00:00
(57/89): nodejs-normalize-package-data-0.2.1-1.el7.noarch.rpm | 13 kB 00:00:00
(58/89): nodejs-npm-registry-client-0.2.28-1.el7.noarch.rpm | 20 kB 00:00:00
(59/89): nodejs-npm-user-validate-0.0.3-1.el7.noarch.rpm | 6.1 kB 00:00:00
(60/89): nodejs-npmconf-0.1.3-1.el7.noarch.rpm | 17 kB 00:00:00
(61/89): nodejs-npmlog-0.0.4-3.el7.noarch.rpm | 9.6 kB 00:00:00
(62/89): nodejs-oauth-sign-0.3.0-1.el7.noarch.rpm | 4.9 kB 00:00:00
(63/89): nodejs-once-1.1.1-5.el7.noarch.rpm | 6.0 kB 00:00:00
(64/89): nodejs-opener-1.3.0-7.el7.noarch.rpm | 6.9 kB 00:00:00
(65/89): nodejs-osenv-0.0.3-5.el7.noarch.rpm | 7.1 kB 00:00:00
(66/89): nodejs-packaging-7-1.el7.noarch.rpm | 11 kB 00:00:00
(67/89): nodejs-promzard-0.2.0-6.el7.noarch.rpm | 12 kB 00:00:00
(68/89): nodejs-proto-list-1.2.2-5.el7.noarch.rpm | 6.7 kB 00:00:00
(69/89): nodejs-qs-0.6.6-3.el7.noarch.rpm | 8.7 kB 00:00:00
(70/89): nodejs-read-1.0.5-1.el7.noarch.rpm | 8.7 kB 00:00:00
(71/89): nodejs-read-installed-0.2.4-1.el7.noarch.rpm | 9.5 kB 00:00:00
(72/89): nodejs-read-package-json-1.1.3-1.el7.noarch.rpm | 12 kB 00:00:00
(73/89): nodejs-request-2.25.0-1.el7.noarch.rpm | 27 kB 00:00:00
(74/89): nodejs-retry-0.6.0-5.el7.noarch.rpm | 11 kB 00:00:00
(75/89): nodejs-rimraf-2.2.2-1.el7.noarch.rpm | 8.1 kB 00:00:00
(76/89): nodejs-semver-2.1.0-3.el7.noarch.rpm | 16 kB 00:00:00
(77/89): nodejs-sha-1.2.1-1.el7.noarch.rpm | 7.6 kB 00:00:00
(78/89): nodejs-sigmund-1.0.0-5.el7.noarch.rpm | 8.3 kB 00:00:00
(79/89): nodejs-slide-1.1.5-1.el7.noarch.rpm | 9.9 kB 00:00:00
(80/89): nodejs-sntp-0.2.4-1.el7.noarch.rpm | 10 kB 00:00:00
(81/89): nodejs-tar-0.1.18-1.el7.noarch.rpm | 23 kB 00:00:00
(82/89): nodejs-tunnel-agent-0.3.0-1.el7.noarch.rpm | 6.3 kB 00:00:00
(83/89): nodejs-uid-number-0.0.3-7.el7.noarch.rpm | 7.1 kB 00:00:00
(84/89): nodejs-which-1.0.5-8.el7.noarch.rpm | 8.0 kB 00:00:00
(85/89): npm-1.3.6-5.el7.noarch.rpm | 333 kB 00:00:00
(86/89): openssl-devel-1.0.1e-34.el7_0.6.x86_64.rpm | 1.2 MB 00:00:00
(87/89): v8-devel-3.14.5.10-14.el7.x86_64.rpm | 71 kB 00:00:00
(88/89): zlib-devel-1.2.7-13.el7.x86_64.rpm | 49 kB 00:00:00
(89/89): pcre-devel-8.32-12.el7.x86_64.rpm | 477 kB 00:00:00
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Total 946 kB/s | 5.1 MB 00:00:05
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
Warning: RPMDB altered outside of yum.
Installing : nodejs-0.10.33-1.el7.x86_64 1/89
Installing : nodejs-inherits-2.0.0-4.el7.noarch 2/89
Installing : nodejs-semver-2.1.0-3.el7.noarch 3/89
Installing : nodejs-mkdirp-0.3.5-3.el7.noarch 4/89
Installing : nodejs-graceful-fs-2.0.0-2.el7.noarch 5/89
Installing : nodejs-rimraf-2.2.2-1.el7.noarch 6/89
Installing : nodejs-fstream-0.1.24-1.el7.noarch 7/89
Installing : nodejs-hoek-0.9.1-1.el7.noarch 8/89
Installing : nodejs-slide-1.1.5-1.el7.noarch 9/89
Installing : nodejs-lru-cache-2.3.0-3.el7.noarch 10/89
Installing : nodejs-ini-1.1.0-3.el7.noarch 11/89
Installing : nodejs-osenv-0.0.3-5.el7.noarch 12/89
Installing : nodejs-boom-0.4.2-2.el7.noarch 13/89
Installing : nodejs-block-stream-0.0.7-1.el7.noarch 14/89
Installing : nodejs-tar-0.1.18-1.el7.noarch 15/89
Installing : nodejs-once-1.1.1-5.el7.noarch 16/89
Installing : nodejs-ansi-0.2.1-1.el7.noarch 17/89
Installing : nodejs-npmlog-0.0.4-3.el7.noarch 18/89
Installing : nodejs-mime-1.2.11-1.el7.noarch 19/89
Installing : nodejs-chownr-0.0.1-9.el7.noarch 20/89
Installing : nodejs-abbrev-1.0.4-6.el7.noarch 21/89
Installing : nodejs-nopt-2.1.2-1.el7.noarch 22/89
Installing : nodejs-which-1.0.5-8.el7.noarch 23/89
Installing : nodejs-retry-0.6.0-5.el7.noarch 24/89
Installing : zlib-devel-1.2.7-13.el7.x86_64 25/89
Installing : 1:libuv-devel-0.10.29-1.el7.x86_64 26/89
Installing : http-parser-devel-2.0-4.20121128gitcd01361.el7.x86_64 27/89
Installing : 1:v8-devel-3.14.5.10-14.el7.x86_64 28/89
Installing : nodejs-cryptiles-0.2.2-1.el7.noarch 29/89
Installing : nodejs-sntp-0.2.4-1.el7.noarch 30/89
Installing : nodejs-hawk-1.0.0-1.el7.noarch 31/89
Installing : nodejs-sha-1.2.1-1.el7.noarch 32/89
Installing : nodejs-cmd-shim-1.1.0-3.el7.noarch 33/89
Installing : nodejs-aws-sign-0.3.0-1.el7.noarch 34/89
Installing : nodejs-child-process-close-0.1.1-2.el7.noarch 35/89
Installing : nodejs-assert-plus-0.1.4-1.el7.noarch 36/89
Installing : nodejs-asn1-0.1.11-3.el7.noarch 37/89
Installing : nodejs-uid-number-0.0.3-7.el7.noarch 38/89
Installing : nodejs-sigmund-1.0.0-5.el7.noarch 39/89
Installing : nodejs-minimatch-0.2.12-2.el7.noarch 40/89
Installing : nodejs-glob-3.2.6-1.el7.noarch 41/89
Installing : nodejs-fstream-ignore-0.0.7-1.el7.noarch 42/89
Installing : nodejs-fstream-npm-0.1.5-1.el7.noarch 43/89
Installing : nodejs-tunnel-agent-0.3.0-1.el7.noarch 44/89
Installing : nodejs-chmodr-0.1.0-4.el7.noarch 45/89
Installing : nodejs-lockfile-0.4.2-1.el7.noarch 46/89
Installing : nodejs-github-url-from-git-1.1.1-2.el7.noarch 47/89
Installing : nodejs-normalize-package-data-0.2.1-1.el7.noarch 48/89
Installing : nodejs-read-package-json-1.1.3-1.el7.noarch 49/89
Installing : nodejs-read-installed-0.2.4-1.el7.noarch 50/89
Installing : 1:nodejs-cookie-jar-0.3.0-1.el7.noarch 51/89
Installing : nodejs-json-stringify-safe-5.0.0-1.el7.noarch 52/89
Installing : nodejs-opener-1.3.0-7.el7.noarch 53/89
Installing : nodejs-forever-agent-0.5.0-1.el7.noarch 54/89
Installing : nodejs-qs-0.6.6-3.el7.noarch 55/89
Installing : nodejs-npm-user-validate-0.0.3-1.el7.noarch 56/89
Installing : nodejs-node-uuid-1.4.1-1.el7.noarch 57/89
Installing : nodejs-ctype-0.5.3-3.el7.noarch 58/89
Installing : nodejs-http-signature-0.10.0-3.el7.noarch 59/89
Installing : nodejs-async-0.2.10-1.el7.noarch 60/89
Installing : nodejs-packaging-7-1.el7.noarch 61/89
Installing : nodejs-proto-list-1.2.2-5.el7.noarch 62/89
Installing : nodejs-config-chain-1.1.7-1.el7.noarch 63/89
Installing : nodejs-npmconf-0.1.3-1.el7.noarch 64/89
Installing : nodejs-mute-stream-0.0.4-1.el7.noarch 65/89
Installing : nodejs-read-1.0.5-1.el7.noarch 66/89
Installing : nodejs-promzard-0.2.0-6.el7.noarch 67/89
Installing : nodejs-init-package-json-0.0.10-1.el7.noarch 68/89
Installing : nodejs-archy-0.0.2-8.el7.noarch 69/89
Installing : nodejs-delayed-stream-0.0.5-5.el7.noarch 70/89
Installing : nodejs-combined-stream-0.0.4-3.el7.noarch 71/89
Installing : nodejs-form-data-0.1.1-1.el7.noarch 72/89
Installing : nodejs-editor-0.0.4-2.el7.noarch 73/89
Installing : nodejs-oauth-sign-0.3.0-1.el7.noarch 74/89
Installing : nodejs-request-2.25.0-1.el7.noarch 75/89
Installing : nodejs-couch-login-0.1.18-1.el7.noarch 76/89
Installing : nodejs-npm-registry-client-0.2.28-1.el7.noarch 77/89
Installing : gyp-0.1-0.11.1617svn.el7.noarch 78/89
Installing : libcom_err-devel-1.42.9-4.el7.x86_64 79/89
Installing : pcre-devel-8.32-12.el7.x86_64 80/89
Installing : libsepol-devel-2.1.9-3.el7.x86_64 81/89
Installing : libselinux-devel-2.2.2-6.el7.x86_64 82/89
Installing : keyutils-libs-devel-1.5.8-3.el7.x86_64 83/89
Installing : libverto-devel-0.2.5-4.el7.x86_64 84/89
Installing : krb5-devel-1.11.3-49.el7.x86_64 85/89
Installing : 1:openssl-devel-1.0.1e-34.el7_0.6.x86_64 86/89
Installing : nodejs-devel-0.10.33-1.el7.x86_64 87/89
Installing : node-gyp-0.10.6-2.el7.noarch 88/89
Installing : npm-1.3.6-5.el7.noarch 89/89
Verifying : nodejs-devel-0.10.33-1.el7.x86_64 1/89
Verifying : nodejs-once-1.1.1-5.el7.noarch 2/89
Verifying : nodejs-aws-sign-0.3.0-1.el7.noarch 3/89
Verifying : nodejs-child-process-close-0.1.1-2.el7.noarch 4/89
Verifying : nodejs-ansi-0.2.1-1.el7.noarch 5/89
Verifying : nodejs-read-package-json-1.1.3-1.el7.noarch 6/89
Verifying : nodejs-assert-plus-0.1.4-1.el7.noarch 7/89
Verifying : nodejs-hoek-0.9.1-1.el7.noarch 8/89
Verifying : libverto-devel-0.2.5-4.el7.x86_64 9/89
Verifying : nodejs-init-package-json-0.0.10-1.el7.noarch 10/89
Verifying : nodejs-promzard-0.2.0-6.el7.noarch 11/89
Verifying : nodejs-tar-0.1.18-1.el7.noarch 12/89
Verifying : nodejs-asn1-0.1.11-3.el7.noarch 13/89
Verifying : nodejs-normalize-package-data-0.2.1-1.el7.noarch 14/89
Verifying : nodejs-uid-number-0.0.3-7.el7.noarch 15/89
Verifying : libselinux-devel-2.2.2-6.el7.x86_64 16/89
Verifying : nodejs-mkdirp-0.3.5-3.el7.noarch 17/89
Verifying : nodejs-nopt-2.1.2-1.el7.noarch 18/89
Verifying : nodejs-sigmund-1.0.0-5.el7.noarch 19/89
Verifying : nodejs-tunnel-agent-0.3.0-1.el7.noarch 20/89
Verifying : nodejs-cryptiles-0.2.2-1.el7.noarch 21/89
Verifying : nodejs-inherits-2.0.0-4.el7.noarch 22/89
Verifying : nodejs-couch-login-0.1.18-1.el7.noarch 23/89
Verifying : 1:openssl-devel-1.0.1e-34.el7_0.6.x86_64 24/89
Verifying : nodejs-mime-1.2.11-1.el7.noarch 25/89
Verifying : keyutils-libs-devel-1.5.8-3.el7.x86_64 26/89
Verifying : libsepol-devel-2.1.9-3.el7.x86_64 27/89
Verifying : nodejs-chmodr-0.1.0-4.el7.noarch 28/89
Verifying : nodejs-fstream-ignore-0.0.7-1.el7.noarch 29/89
Verifying : nodejs-lockfile-0.4.2-1.el7.noarch 30/89
Verifying : nodejs-slide-1.1.5-1.el7.noarch 31/89
Verifying : nodejs-chownr-0.0.1-9.el7.noarch 32/89
Verifying : nodejs-glob-3.2.6-1.el7.noarch 33/89
Verifying : nodejs-github-url-from-git-1.1.1-2.el7.noarch 34/89
Verifying : pcre-devel-8.32-12.el7.x86_64 35/89
Verifying : nodejs-http-signature-0.10.0-3.el7.noarch 36/89
Verifying : libcom_err-devel-1.42.9-4.el7.x86_64 37/89
Verifying : nodejs-abbrev-1.0.4-6.el7.noarch 38/89
Verifying : node-gyp-0.10.6-2.el7.noarch 39/89
Verifying : nodejs-npmconf-0.1.3-1.el7.noarch 40/89
Verifying : nodejs-sntp-0.2.4-1.el7.noarch 41/89
Verifying : nodejs-0.10.33-1.el7.x86_64 42/89
Verifying : 1:v8-devel-3.14.5.10-14.el7.x86_64 43/89
Verifying : nodejs-semver-2.1.0-3.el7.noarch 44/89
Verifying : 1:nodejs-cookie-jar-0.3.0-1.el7.noarch 45/89
Verifying : nodejs-lru-cache-2.3.0-3.el7.noarch 46/89
Verifying : nodejs-config-chain-1.1.7-1.el7.noarch 47/89
Verifying : gyp-0.1-0.11.1617svn.el7.noarch 48/89
Verifying : http-parser-devel-2.0-4.20121128gitcd01361.el7.x86_64 49/89
Verifying : nodejs-json-stringify-safe-5.0.0-1.el7.noarch 50/89
Verifying : nodejs-opener-1.3.0-7.el7.noarch 51/89
Verifying : nodejs-forever-agent-0.5.0-1.el7.noarch 52/89
Verifying : nodejs-fstream-0.1.24-1.el7.noarch 53/89
Verifying : nodejs-qs-0.6.6-3.el7.noarch 54/89
Verifying : nodejs-minimatch-0.2.12-2.el7.noarch 55/89
Verifying : nodejs-npm-user-validate-0.0.3-1.el7.noarch 56/89
Verifying : nodejs-which-1.0.5-8.el7.noarch 57/89
Verifying : 1:libuv-devel-0.10.29-1.el7.x86_64 58/89
Verifying : nodejs-cmd-shim-1.1.0-3.el7.noarch 59/89
Verifying : nodejs-request-2.25.0-1.el7.noarch 60/89
Verifying : nodejs-combined-stream-0.0.4-3.el7.noarch 61/89
Verifying : nodejs-block-stream-0.0.7-1.el7.noarch 62/89
Verifying : nodejs-retry-0.6.0-5.el7.noarch 63/89
Verifying : nodejs-hawk-1.0.0-1.el7.noarch 64/89
Verifying : zlib-devel-1.2.7-13.el7.x86_64 65/89
Verifying : nodejs-form-data-0.1.1-1.el7.noarch 66/89
Verifying : npm-1.3.6-5.el7.noarch 67/89
Verifying : nodejs-node-uuid-1.4.1-1.el7.noarch 68/89
Verifying : nodejs-ctype-0.5.3-3.el7.noarch 69/89
Verifying : nodejs-async-0.2.10-1.el7.noarch 70/89
Verifying : nodejs-graceful-fs-2.0.0-2.el7.noarch 71/89
Verifying : krb5-devel-1.11.3-49.el7.x86_64 72/89
Verifying : nodejs-packaging-7-1.el7.noarch 73/89
Verifying : nodejs-sha-1.2.1-1.el7.noarch 74/89
Verifying : nodejs-rimraf-2.2.2-1.el7.noarch 75/89
Verifying : nodejs-npmlog-0.0.4-3.el7.noarch 76/89
Verifying : nodejs-ini-1.1.0-3.el7.noarch 77/89
Verifying : nodejs-proto-list-1.2.2-5.el7.noarch 78/89
Verifying : nodejs-mute-stream-0.0.4-1.el7.noarch 79/89
Verifying : nodejs-read-1.0.5-1.el7.noarch 80/89
Verifying : nodejs-read-installed-0.2.4-1.el7.noarch 81/89
Verifying : nodejs-archy-0.0.2-8.el7.noarch 82/89
Verifying : nodejs-osenv-0.0.3-5.el7.noarch 83/89
Verifying : nodejs-delayed-stream-0.0.5-5.el7.noarch 84/89
Verifying : nodejs-editor-0.0.4-2.el7.noarch 85/89
Verifying : nodejs-boom-0.4.2-2.el7.noarch 86/89
Verifying : nodejs-npm-registry-client-0.2.28-1.el7.noarch 87/89
Verifying : nodejs-oauth-sign-0.3.0-1.el7.noarch 88/89
Verifying : nodejs-fstream-npm-0.1.5-1.el7.noarch 89/89
Installed:
nodejs.x86_64 0:0.10.33-1.el7 npm.noarch 0:1.3.6-5.el7
Dependency Installed:
gyp.noarch 0:0.1-0.11.1617svn.el7 http-parser-devel.x86_64 0:2.0-4.20121128gitcd01361.el7 keyutils-libs-devel.x86_64 0:1.5.8-3.el7
krb5-devel.x86_64 0:1.11.3-49.el7 libcom_err-devel.x86_64 0:1.42.9-4.el7 libselinux-devel.x86_64 0:2.2.2-6.el7
libsepol-devel.x86_64 0:2.1.9-3.el7 libuv-devel.x86_64 1:0.10.29-1.el7 libverto-devel.x86_64 0:0.2.5-4.el7
node-gyp.noarch 0:0.10.6-2.el7 nodejs-abbrev.noarch 0:1.0.4-6.el7 nodejs-ansi.noarch 0:0.2.1-1.el7
nodejs-archy.noarch 0:0.0.2-8.el7 nodejs-asn1.noarch 0:0.1.11-3.el7 nodejs-assert-plus.noarch 0:0.1.4-1.el7
nodejs-async.noarch 0:0.2.10-1.el7 nodejs-aws-sign.noarch 0:0.3.0-1.el7 nodejs-block-stream.noarch 0:0.0.7-1.el7
nodejs-boom.noarch 0:0.4.2-2.el7 nodejs-child-process-close.noarch 0:0.1.1-2.el7 nodejs-chmodr.noarch 0:0.1.0-4.el7
nodejs-chownr.noarch 0:0.0.1-9.el7 nodejs-cmd-shim.noarch 0:1.1.0-3.el7 nodejs-combined-stream.noarch 0:0.0.4-3.el7
nodejs-config-chain.noarch 0:1.1.7-1.el7 nodejs-cookie-jar.noarch 1:0.3.0-1.el7 nodejs-couch-login.noarch 0:0.1.18-1.el7
nodejs-cryptiles.noarch 0:0.2.2-1.el7 nodejs-ctype.noarch 0:0.5.3-3.el7 nodejs-delayed-stream.noarch 0:0.0.5-5.el7
nodejs-devel.x86_64 0:0.10.33-1.el7 nodejs-editor.noarch 0:0.0.4-2.el7 nodejs-forever-agent.noarch 0:0.5.0-1.el7
nodejs-form-data.noarch 0:0.1.1-1.el7 nodejs-fstream.noarch 0:0.1.24-1.el7 nodejs-fstream-ignore.noarch 0:0.0.7-1.el7
nodejs-fstream-npm.noarch 0:0.1.5-1.el7 nodejs-github-url-from-git.noarch 0:1.1.1-2.el7 nodejs-glob.noarch 0:3.2.6-1.el7
nodejs-graceful-fs.noarch 0:2.0.0-2.el7 nodejs-hawk.noarch 0:1.0.0-1.el7 nodejs-hoek.noarch 0:0.9.1-1.el7
nodejs-http-signature.noarch 0:0.10.0-3.el7 nodejs-inherits.noarch 0:2.0.0-4.el7 nodejs-ini.noarch 0:1.1.0-3.el7
nodejs-init-package-json.noarch 0:0.0.10-1.el7 nodejs-json-stringify-safe.noarch 0:5.0.0-1.el7 nodejs-lockfile.noarch 0:0.4.2-1.el7
nodejs-lru-cache.noarch 0:2.3.0-3.el7 nodejs-mime.noarch 0:1.2.11-1.el7 nodejs-minimatch.noarch 0:0.2.12-2.el7
nodejs-mkdirp.noarch 0:0.3.5-3.el7 nodejs-mute-stream.noarch 0:0.0.4-1.el7 nodejs-node-uuid.noarch 0:1.4.1-1.el7
nodejs-nopt.noarch 0:2.1.2-1.el7 nodejs-normalize-package-data.noarch 0:0.2.1-1.el7 nodejs-npm-registry-client.noarch 0:0.2.28-1.el7
nodejs-npm-user-validate.noarch 0:0.0.3-1.el7 nodejs-npmconf.noarch 0:0.1.3-1.el7 nodejs-npmlog.noarch 0:0.0.4-3.el7
nodejs-oauth-sign.noarch 0:0.3.0-1.el7 nodejs-once.noarch 0:1.1.1-5.el7 nodejs-opener.noarch 0:1.3.0-7.el7
nodejs-osenv.noarch 0:0.0.3-5.el7 nodejs-packaging.noarch 0:7-1.el7 nodejs-promzard.noarch 0:0.2.0-6.el7
nodejs-proto-list.noarch 0:1.2.2-5.el7 nodejs-qs.noarch 0:0.6.6-3.el7 nodejs-read.noarch 0:1.0.5-1.el7
nodejs-read-installed.noarch 0:0.2.4-1.el7 nodejs-read-package-json.noarch 0:1.1.3-1.el7 nodejs-request.noarch 0:2.25.0-1.el7
nodejs-retry.noarch 0:0.6.0-5.el7 nodejs-rimraf.noarch 0:2.2.2-1.el7 nodejs-semver.noarch 0:2.1.0-3.el7
nodejs-sha.noarch 0:1.2.1-1.el7 nodejs-sigmund.noarch 0:1.0.0-5.el7 nodejs-slide.noarch 0:1.1.5-1.el7
nodejs-sntp.noarch 0:0.2.4-1.el7 nodejs-tar.noarch 0:0.1.18-1.el7 nodejs-tunnel-agent.noarch 0:0.3.0-1.el7
nodejs-uid-number.noarch 0:0.0.3-7.el7 nodejs-which.noarch 0:1.0.5-8.el7 openssl-devel.x86_64 1:1.0.1e-34.el7_0.6
pcre-devel.x86_64 0:8.32-12.el7 v8-devel.x86_64 1:3.14.5.10-14.el7 zlib-devel.x86_64 0:1.2.7-13.el7
Complete!
[ec2-user@ip-172-31-31-178 x86_64]$
Subscribe to:
Posts (Atom)