Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- skhouildi@ubuntu ~/Documents/sites/bedmaker (develop) $ bash resources/bedmaker.sh fr
- [ Starting DB ]
- \o/
- MYSQL_HOST=db-bedmaker
- MYSQL_DATABASE=bedrock
- MYSQL_USER=bedrock
- MYSQL_PASSWORD=test
- MYSQL_ROOT_PASSWORD=test
- 990da6db07babc945286dc60dc553f852a44a4c6152f885ed3d2f3ffea9e03a6
- docker: Error response from daemon: driver failed programming external connectivity on endpoint db-bedmaker (c65011938057cc5b86eac309d2255214b9ec08c9f747d63f21245564fa4978bd): Error starting userland proxy: listen tcp 0.0.0.0:3306: bind: address already in use.
- Mysql is up and running.
- Sending build context to Docker daemon 291.3kB
- Step 1/15 : FROM php:7.3.3-cli
- 7.3.3-cli: Pulling from library/php
- 27833a3ba0a5: Already exists
- 2d79f6773a3c: Already exists
- f5dd9a448b82: Already exists
- 95719e57e42b: Already exists
- c8d2a12cdc54: Pull complete
- 9dd78e1d9662: Pull complete
- 44551c7c8e49: Pull complete
- 559e27fa57de: Pull complete
- 45ebd10ec4e7: Pull complete
- Digest: sha256:2179eb3184b136c0e7aa4e4035b93f374d4e941eed538499f4c20da147d52502
- Status: Downloaded newer image for php:7.3.3-cli
- ---> 90102e6d83ad
- Step 2/15 : ENV DEBIAN_FRONTEND=noninteractive
- ---> Running in c302ecdc52d5
- Removing intermediate container c302ecdc52d5
- ---> fc8187d5b9c4
- Step 3/15 : ENV BEDROCK_VER=1.8.12
- ---> Running in 42cae4e25a47
- Removing intermediate container 42cae4e25a47
- ---> dc8a83af95d0
- Step 4/15 : RUN curl -sL https://deb.nodesource.com/setup_11.x | bash - && apt-get update && apt-get install -y nodejs jq psmisc libfreetype6-dev libjpeg62-turbo-dev libmcrypt-dev pkg-config libmagickwand-dev imagemagick libjpeg-dev libpng-dev libfontconfig1 libicu-dev zip mysql-client unzip git && npm install -g gulp gulp-cli
- ---> Running in c13e68656d69
- ## Installing the NodeSource Node.js 11.x repo...
- ## Populating apt-get cache...
- + apt-get update
- Get:1 http://security-cdn.debian.org/debian-security stretch/updates InRelease [94.3 kB]
- Get:2 http://security-cdn.debian.org/debian-security buster/updates InRelease [65.4 kB]
- Ign:3 http://cdn-fastly.deb.debian.org/debian stretch InRelease
- Get:4 http://cdn-fastly.deb.debian.org/debian stretch-updates InRelease [91.0 kB]
- Get:5 http://security-cdn.debian.org/debian-security stretch/updates/main amd64 Packages [509 kB]
- Get:7 http://security-cdn.debian.org/debian-security buster/updates/main amd64 Packages [162 kB]
- Get:6 http://cdn-fastly.deb.debian.org/debian buster InRelease [122 kB]
- Get:8 http://cdn-fastly.deb.debian.org/debian stretch-updates/main amd64 Packages [27.9 kB]
- Get:9 http://cdn-fastly.deb.debian.org/debian buster/main amd64 Packages [7908 kB]
- Get:10 http://cdn-fastly.deb.debian.org/debian buster-updates InRelease [49.3 kB]
- Get:11 http://cdn-fastly.deb.debian.org/debian stretch Release [118 kB]
- Get:12 http://cdn-fastly.deb.debian.org/debian stretch Release.gpg [2365 B]
- Get:13 http://cdn-fastly.deb.debian.org/debian buster-updates/main amd64 Packages [5792 B]
- Get:14 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 Packages [7086 kB]
- Fetched 16.2 MB in 2s (5669 kB/s)
- Reading package lists...
- ## Installing packages required for setup: apt-transport-https lsb-release gnupg...
- + apt-get install -y apt-transport-https lsb-release gnupg > /dev/null 2>&1
- ## Confirming "stretch" is supported...
- + curl -sLf -o /dev/null 'https://deb.nodesource.com/node_11.x/dists/stretch/Release'
- ## Adding the NodeSource signing key to your keyring...
- + curl -s https://deb.nodesource.com/gpgkey/nodesource.gpg.key | apt-key add -
- Warning: apt-key output should not be parsed (stdout is not a terminal)
- OK
- ## Creating apt sources list file for the NodeSource Node.js 11.x repo...
- + echo 'deb https://deb.nodesource.com/node_11.x stretch main' > /etc/apt/sources.list.d/nodesource.list
- + echo 'deb-src https://deb.nodesource.com/node_11.x stretch main' >> /etc/apt/sources.list.d/nodesource.list
- ## Running `apt-get update` for you...
- + apt-get update
- Get:1 https://deb.nodesource.com/node_11.x stretch InRelease [4585 B]
- Hit:2 http://security-cdn.debian.org/debian-security stretch/updates InRelease
- Hit:4 http://security-cdn.debian.org/debian-security buster/updates InRelease
- Ign:3 http://cdn-fastly.deb.debian.org/debian stretch InRelease
- Hit:5 http://cdn-fastly.deb.debian.org/debian stretch-updates InRelease
- Hit:6 http://cdn-fastly.deb.debian.org/debian buster InRelease
- Get:8 https://deb.nodesource.com/node_11.x stretch/main amd64 Packages [768 B]
- Hit:7 http://cdn-fastly.deb.debian.org/debian buster-updates InRelease
- Hit:9 http://cdn-fastly.deb.debian.org/debian stretch Release
- Fetched 5353 B in 1s (4350 B/s)
- Reading package lists...
- ## Run `sudo apt-get install -y nodejs` to install Node.js 11.x and npm
- ## You may also need development tools to build native addons:
- sudo apt-get install gcc g++ make
- ## To install the Yarn package manager, run:
- curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
- echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
- sudo apt-get update && sudo apt-get install yarn
- Hit:1 https://deb.nodesource.com/node_11.x stretch InRelease
- Hit:2 http://security-cdn.debian.org/debian-security stretch/updates InRelease
- Hit:3 http://security-cdn.debian.org/debian-security buster/updates InRelease
- Ign:4 http://cdn-fastly.deb.debian.org/debian stretch InRelease
- Hit:5 http://cdn-fastly.deb.debian.org/debian stretch-updates InRelease
- Hit:6 http://cdn-fastly.deb.debian.org/debian buster InRelease
- Hit:7 http://cdn-fastly.deb.debian.org/debian buster-updates InRelease
- Hit:8 http://cdn-fastly.deb.debian.org/debian stretch Release
- Reading package lists...
- Reading package lists...
- Building dependency tree...
- Reading state information...
- pkg-config is already the newest version (0.29-4+b1).
- The following additional packages will be installed:
- autotools-dev bzip2-doc dbus default-mysql-client fontconfig
- fontconfig-config fonts-dejavu-core fonts-droid-fallback fonts-noto-mono
- ghostscript gir1.2-freedesktop gir1.2-gdkpixbuf-2.0 gir1.2-glib-2.0
- gir1.2-rsvg-2.0 git-man gnome-icon-theme gsfonts gtk-update-icon-cache
- hicolor-icon-theme icu-devtools imagemagick-6-common imagemagick-6.q16
- javascript-common less libaio1 libapparmor1 libatk1.0-0 libatk1.0-data
- libavahi-client3 libavahi-common-data libavahi-common3 libbz2-dev
- libcairo-gobject2 libcairo-script-interpreter2 libcairo2 libcairo2-dev
- libcdt5 libcgraph6 libconfig-inifiles-perl libcroco3 libcups2
- libcupsfilters1 libcupsimage2 libdatrie1 libdbd-mysql-perl libdbi-perl
- libdbus-1-3 libdjvulibre-dev libdjvulibre-text libdjvulibre21 libelf1
- liberror-perl libexif-dev libexif12 libexpat1-dev libfftw3-double3
- libfontconfig1-dev libfreetype6 libgail-common libgail18 libgd3
- libgdk-pixbuf2.0-0 libgdk-pixbuf2.0-common libgdk-pixbuf2.0-dev
- libgirepository-1.0-1 libglib2.0-0 libglib2.0-bin libglib2.0-data
- libglib2.0-dev libgraphite2-3 libgraphviz-dev libgs9 libgs9-common
- libgtk2.0-0 libgtk2.0-bin libgtk2.0-common libgts-0.7-5 libgts-bin libgvc6
- libgvc6-plugins-gtk libgvpr2 libharfbuzz0b libice-dev libice6 libicu57
- libijs-0.35 libilmbase-dev libilmbase12 libjbig-dev libjbig0 libjbig2dec0
- libjemalloc1 libjpeg62-turbo libjq1 libjs-jquery libjxr-tools libjxr0
- liblcms2-2 liblcms2-dev liblqr-1-0 liblqr-1-0-dev libltdl-dev libltdl7
- liblzma-dev liblzo2-2 libmagickcore-6-arch-config libmagickcore-6-headers
- libmagickcore-6.q16-3 libmagickcore-6.q16-3-extra libmagickcore-6.q16-dev
- libmagickwand-6-headers libmagickwand-6.q16-3 libmagickwand-6.q16-dev
- libmariadbclient18 libmcrypt4 libnetpbm10 libonig4 libopenexr-dev
- libopenexr22 libopenjp2-7 libopenjp2-7-dev libpango-1.0-0
- libpangocairo-1.0-0 libpangoft2-1.0-0 libpaper-utils libpaper1 libpathplan4
- libpcre16-3 libpcre3-dev libpcre32-3 libpcrecpp0v5 libpixman-1-0
- libpixman-1-dev libpng-tools libpng16-16 libpopt0 libpthread-stubs0-dev
- libpython-stdlib libpython2.7-minimal libpython2.7-stdlib libreadline5
- librsvg2-2 librsvg2-common librsvg2-dev libsm-dev libsm6
- libterm-readkey-perl libthai-data libthai0 libtiff5 libtiff5-dev libtiffxx5
- libtool libwebp6 libwmf-dev libwmf0.2-7 libx11-6 libx11-data libx11-dev
- libx11-doc libxau-dev libxau6 libxcb-render0 libxcb-render0-dev libxcb-shm0
- libxcb-shm0-dev libxcb1 libxcb1-dev libxcomposite1 libxcursor1 libxdamage1
- libxdmcp-dev libxdmcp6 libxdot4 libxext-dev libxext6 libxfixes3 libxi6
- libxinerama1 libxml2-dev libxmuu1 libxpm4 libxrandr2 libxrender-dev
- libxrender1 libxt-dev libxt6 mariadb-client-10.1 mariadb-client-core-10.1
- mariadb-common mysql-common netpbm openssh-client poppler-data python
- python-minimal python2.7 python2.7-minimal rsync shared-mime-info ucf
- x11-common x11proto-core-dev x11proto-input-dev x11proto-kb-dev
- x11proto-render-dev x11proto-xext-dev xauth xorg-sgml-doctools xtrans-dev
- zlib1g-dev
- Suggested packages:
- default-dbus-session-bus | dbus-session-bus fonts-noto ghostscript-x
- gettext-base git-daemon-run | git-daemon-sysvinit git-doc git-el git-email
- git-gui gitk gitweb git-arch git-cvs git-mediawiki git-svn imagemagick-doc
- autotrace cups-bsd | lpr | lprng enscript ffmpeg gimp gnuplot grads graphviz
- groff-base hp2xx html2ps libwmf-bin mplayer povray radiance sane-utils
- texlive-base-bin transfig ufraw-batch xdg-utils apache2 | lighttpd | httpd
- libcairo2-doc cups-common libclone-perl libmldbm-perl libnet-daemon-perl
- libsql-statement-perl libfftw3-bin libfftw3-dev libgd-tools libglib2.0-doc
- gvfs libice-doc icu-doc liblcms2-utils libtool-doc liblzma-doc inkscape
- mcrypt librsvg2-bin librsvg2-doc libsm-doc automaken gfortran
- | fortran95-compiler gcj-jdk libwmf-doc libxcb-doc libxext-doc libxt-doc
- keychain libpam-ssh monkeysphere ssh-askpass poppler-utils
- fonts-japanese-mincho | fonts-ipafont-mincho fonts-japanese-gothic
- | fonts-ipafont-gothic fonts-arphic-ukai fonts-arphic-uming fonts-nanum
- python-doc python-tk python2.7-doc binfmt-support openssh-server
- Recommended packages:
- xdg-user-dirs
- The following NEW packages will be installed:
- autotools-dev bzip2-doc dbus default-mysql-client fontconfig
- fontconfig-config fonts-dejavu-core fonts-droid-fallback fonts-noto-mono
- ghostscript gir1.2-freedesktop gir1.2-gdkpixbuf-2.0 gir1.2-glib-2.0
- gir1.2-rsvg-2.0 git git-man gnome-icon-theme gsfonts gtk-update-icon-cache
- hicolor-icon-theme icu-devtools imagemagick imagemagick-6-common
- imagemagick-6.q16 javascript-common jq less libaio1 libapparmor1 libatk1.0-0
- libatk1.0-data libavahi-client3 libavahi-common-data libavahi-common3
- libbz2-dev libcairo-gobject2 libcairo-script-interpreter2 libcairo2
- libcairo2-dev libcdt5 libcgraph6 libconfig-inifiles-perl libcroco3 libcups2
- libcupsfilters1 libcupsimage2 libdatrie1 libdbd-mysql-perl libdbi-perl
- libdbus-1-3 libdjvulibre-dev libdjvulibre-text libdjvulibre21 libelf1
- liberror-perl libexif-dev libexif12 libexpat1-dev libfftw3-double3
- libfontconfig1 libfontconfig1-dev libfreetype6 libfreetype6-dev
- libgail-common libgail18 libgd3 libgdk-pixbuf2.0-0 libgdk-pixbuf2.0-common
- libgdk-pixbuf2.0-dev libgirepository-1.0-1 libglib2.0-bin libglib2.0-data
- libglib2.0-dev libgraphite2-3 libgraphviz-dev libgs9 libgs9-common
- libgtk2.0-0 libgtk2.0-bin libgtk2.0-common libgts-0.7-5 libgts-bin libgvc6
- libgvc6-plugins-gtk libgvpr2 libharfbuzz0b libice-dev libice6 libicu-dev
- libijs-0.35 libilmbase-dev libilmbase12 libjbig-dev libjbig0 libjbig2dec0
- libjemalloc1 libjpeg-dev libjpeg62-turbo libjpeg62-turbo-dev libjq1
- libjs-jquery libjxr-tools libjxr0 liblcms2-2 liblcms2-dev liblqr-1-0
- liblqr-1-0-dev libltdl-dev libltdl7 liblzma-dev liblzo2-2
- libmagickcore-6-arch-config libmagickcore-6-headers libmagickcore-6.q16-3
- libmagickcore-6.q16-3-extra libmagickcore-6.q16-dev libmagickwand-6-headers
- libmagickwand-6.q16-3 libmagickwand-6.q16-dev libmagickwand-dev
- libmariadbclient18 libmcrypt-dev libmcrypt4 libnetpbm10 libonig4
- libopenexr-dev libopenexr22 libopenjp2-7 libopenjp2-7-dev libpango-1.0-0
- libpangocairo-1.0-0 libpangoft2-1.0-0 libpaper-utils libpaper1 libpathplan4
- libpcre16-3 libpcre3-dev libpcre32-3 libpcrecpp0v5 libpixman-1-0
- libpixman-1-dev libpng-dev libpng-tools libpng16-16 libpopt0
- libpthread-stubs0-dev libpython-stdlib libpython2.7-minimal
- libpython2.7-stdlib libreadline5 librsvg2-2 librsvg2-common librsvg2-dev
- libsm-dev libsm6 libterm-readkey-perl libthai-data libthai0 libtiff5
- libtiff5-dev libtiffxx5 libtool libwebp6 libwmf-dev libwmf0.2-7 libx11-6
- libx11-data libx11-dev libx11-doc libxau-dev libxau6 libxcb-render0
- libxcb-render0-dev libxcb-shm0 libxcb-shm0-dev libxcb1 libxcb1-dev
- libxcomposite1 libxcursor1 libxdamage1 libxdmcp-dev libxdmcp6 libxdot4
- libxext-dev libxext6 libxfixes3 libxi6 libxinerama1 libxml2-dev libxmuu1
- libxpm4 libxrandr2 libxrender-dev libxrender1 libxt-dev libxt6
- mariadb-client-10.1 mariadb-client-core-10.1 mariadb-common mysql-client
- mysql-common netpbm nodejs openssh-client poppler-data psmisc python
- python-minimal python2.7 python2.7-minimal rsync shared-mime-info ucf unzip
- x11-common x11proto-core-dev x11proto-input-dev x11proto-kb-dev
- x11proto-render-dev x11proto-xext-dev xauth xorg-sgml-doctools xtrans-dev
- zip zlib1g-dev
- The following packages will be upgraded:
- libglib2.0-0 libicu57
- 2 upgraded, 225 newly installed, 0 to remove and 21 not upgraded.
- Need to get 157 MB of archives.
- After this operation, 573 MB of additional disk space will be used.
- Get:1 https://deb.nodesource.com/node_11.x stretch/main amd64 nodejs amd64 11.15.0-1nodesource1 [16.2 MB]
- Get:2 http://security-cdn.debian.org/debian-security stretch/updates/main amd64 git-man all 1:2.11.0-3+deb9u5 [1433 kB]
- Get:3 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libpython2.7-minimal amd64 2.7.13-2+deb9u3 [389 kB]
- Get:9 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 python2.7-minimal amd64 2.7.13-2+deb9u3 [1382 kB]
- Get:4 http://security-cdn.debian.org/debian-security stretch/updates/main amd64 git amd64 1:2.11.0-3+deb9u5 [4161 kB]
- Get:10 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 python-minimal amd64 2.7.13-2 [40.5 kB]
- Get:11 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libpython2.7-stdlib amd64 2.7.13-2+deb9u3 [1897 kB]
- Get:12 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 python2.7 amd64 2.7.13-2+deb9u3 [285 kB]
- Get:13 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libpython-stdlib amd64 2.7.13-2 [20.0 kB]
- Get:14 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 python amd64 2.7.13-2 [154 kB]
- Get:15 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libpng16-16 amd64 1.6.28-1+deb9u1 [280 kB]
- Get:16 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libfreetype6 amd64 2.6.3-3.2 [438 kB]
- Get:17 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 ucf all 3.0036 [70.2 kB]
- Get:18 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 fonts-dejavu-core all 2.37-1 [1068 kB]
- Get:5 http://security-cdn.debian.org/debian-security stretch/updates/main amd64 libexpat1-dev amd64 2.2.0-2+deb9u3 [134 kB]
- Get:6 http://security-cdn.debian.org/debian-security stretch/updates/main amd64 libgs9-common all 9.26a~dfsg-0+deb9u6 [5143 kB]
- Get:19 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 fontconfig-config all 2.11.0-6.7 [271 kB]
- Get:20 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libfontconfig1 amd64 2.11.0-6.7+b1 [331 kB]
- Get:21 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 fontconfig amd64 2.11.0-6.7+b1 [404 kB]
- Get:22 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 fonts-droid-fallback all 1:6.0.1r16-1.1 [1807 kB]
- Get:23 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 liberror-perl all 0.17024-1 [26.9 kB]
- Get:24 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libglib2.0-0 amd64 2.50.3-2+deb9u1 [2691 kB]
- Get:7 http://security-cdn.debian.org/debian-security stretch/updates/main amd64 libgs9 amd64 9.26a~dfsg-0+deb9u6 [2213 kB]
- Get:25 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 liblqr-1-0 amd64 0.4.2-2+b2 [24.8 kB]
- Get:26 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 imagemagick-6-common all 8:6.9.7.4+dfsg-11+deb9u7 [184 kB]
- Get:27 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libmagickcore-6-arch-config amd64 8:6.9.7.4+dfsg-11+deb9u7 [149 kB]
- Get:28 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libmagickcore-6-headers all 8:6.9.7.4+dfsg-11+deb9u7 [47.0 kB]
- Get:29 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libfftw3-double3 amd64 3.3.5-3 [731 kB]
- Get:30 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libjbig0 amd64 2.1-3.1+b2 [31.0 kB]
- Get:31 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libjpeg62-turbo amd64 1:1.5.1-2 [134 kB]
- Get:32 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 liblcms2-2 amd64 2.8-4+deb9u1 [143 kB]
- Get:33 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libltdl7 amd64 2.4.6-2 [389 kB]
- Get:8 http://security-cdn.debian.org/debian-security stretch/updates/main amd64 ghostscript amd64 9.26a~dfsg-0+deb9u6 [99.2 kB]
- Get:34 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libopenjp2-7 amd64 2.1.2-1.1+deb9u3 [122 kB]
- Get:35 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libtiff5 amd64 4.0.8-2+deb9u4 [238 kB]
- Get:36 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libxau6 amd64 1:1.0.8-1 [20.7 kB]
- Get:37 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libxdmcp6 amd64 1:1.1.2-3 [26.3 kB]
- Get:38 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libxcb1 amd64 1.12-1 [133 kB]
- Get:39 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libx11-data all 2:1.6.4-3+deb9u1 [287 kB]
- Get:40 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libx11-6 amd64 2:1.6.4-3+deb9u1 [748 kB]
- Get:41 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libxext6 amd64 2:1.3.3-1+b2 [52.5 kB]
- Get:42 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libmagickcore-6.q16-3 amd64 8:6.9.7.4+dfsg-11+deb9u7 [1743 kB]
- Get:43 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libmagickwand-6-headers all 8:6.9.7.4+dfsg-11+deb9u7 [10.5 kB]
- Get:44 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libmagickwand-6.q16-3 amd64 8:6.9.7.4+dfsg-11+deb9u7 [422 kB]
- Get:45 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libpixman-1-0 amd64 0.34.0-1 [530 kB]
- Get:46 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libxcb-render0 amd64 1.12-1 [105 kB]
- Get:47 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libxcb-shm0 amd64 1.12-1 [95.9 kB]
- Get:48 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libxrender1 amd64 1:0.9.10-1 [33.0 kB]
- Get:49 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libcairo2 amd64 1.14.8-1 [771 kB]
- Get:50 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libdjvulibre-text all 3.5.27.1-7 [60.7 kB]
- Get:51 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libdjvulibre21 amd64 3.5.27.1-7 [568 kB]
- Get:52 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libilmbase12 amd64 2.2.0-12 [85.3 kB]
- Get:53 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libopenexr22 amd64 2.2.0-11+b1 [577 kB]
- Get:54 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libthai-data all 0.1.26-1 [166 kB]
- Get:55 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libdatrie1 amd64 0.2.10-4+b1 [36.4 kB]
- Get:56 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libthai0 amd64 0.1.26-1 [52.1 kB]
- Get:57 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libpango-1.0-0 amd64 1.40.5-1 [320 kB]
- Get:58 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libgraphite2-3 amd64 1.3.10-1 [84.2 kB]
- Get:59 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libharfbuzz0b amd64 1.4.2-1 [671 kB]
- Get:60 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libpangoft2-1.0-0 amd64 1.40.5-1 [205 kB]
- Get:61 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libpangocairo-1.0-0 amd64 1.40.5-1 [193 kB]
- Get:62 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 shared-mime-info amd64 1.8-1+deb9u1 [731 kB]
- Get:63 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libgdk-pixbuf2.0-common all 2.36.5-2+deb9u2 [311 kB]
- Get:64 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libgdk-pixbuf2.0-0 amd64 2.36.5-2+deb9u2 [170 kB]
- Get:65 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libwmf0.2-7 amd64 0.2.8.4-10.6 [167 kB]
- Get:66 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libmagickcore-6.q16-3-extra amd64 8:6.9.7.4+dfsg-11+deb9u7 [190 kB]
- Get:67 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libbz2-dev amd64 1.0.6-8.1 [29.4 kB]
- Get:68 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libjpeg62-turbo-dev amd64 1:1.5.1-2 [210 kB]
- Get:69 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libjpeg-dev all 1:1.5.1-2 [56.1 kB]
- Get:70 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libdjvulibre-dev amd64 3.5.27.1-7 [2375 kB]
- Get:71 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libexif12 amd64 0.6.21-2+b2 [323 kB]
- Get:72 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libjs-jquery all 3.1.1-2+deb9u1 [154 kB]
- Get:73 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libexif-dev amd64 0.6.21-2+b2 [340 kB]
- Get:74 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 zlib1g-dev amd64 1:1.2.8.dfsg-5 [205 kB]
- Get:75 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libpng-dev amd64 1.6.28-1+deb9u1 [250 kB]
- Get:76 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libfreetype6-dev amd64 2.6.3-3.2 [5815 kB]
- Get:77 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libcdt5 amd64 2.38.0-17 [59.6 kB]
- Get:78 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libcgraph6 amd64 2.38.0-17 [82.2 kB]
- Get:79 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libwebp6 amd64 0.5.2-1 [235 kB]
- Get:80 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libxpm4 amd64 1:3.5.12-1 [49.1 kB]
- Get:81 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libgd3 amd64 2.2.4-2+deb9u5 [132 kB]
- Get:82 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libgts-0.7-5 amd64 0.7.6+darcs121130-4 [158 kB]
- Get:83 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libpathplan4 amd64 2.38.0-17 [62.8 kB]
- Get:84 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libxdot4 amd64 2.38.0-17 [55.6 kB]
- Get:85 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libgvc6 amd64 2.38.0-17 [639 kB]
- Get:86 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libgvpr2 amd64 2.38.0-17 [211 kB]
- Get:87 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libatk1.0-data all 2.22.0-1 [172 kB]
- Get:88 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libatk1.0-0 amd64 2.22.0-1 [78.4 kB]
- Get:89 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libgtk2.0-common all 2.24.31-2 [2693 kB]
- Get:90 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libavahi-common-data amd64 0.6.32-2 [118 kB]
- Get:91 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libavahi-common3 amd64 0.6.32-2 [52.0 kB]
- Get:92 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libdbus-1-3 amd64 1.10.28-0+deb9u1 [195 kB]
- Get:93 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libavahi-client3 amd64 0.6.32-2 [55.3 kB]
- Get:94 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libcups2 amd64 2.2.1-8+deb9u4 [307 kB]
- Get:95 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libxcomposite1 amd64 1:0.4.4-2 [16.5 kB]
- Get:96 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libxfixes3 amd64 1:5.0.3-1 [21.9 kB]
- Get:97 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libxcursor1 amd64 1:1.1.14-1+deb9u2 [34.9 kB]
- Get:98 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libxdamage1 amd64 1:1.1.4-2+b3 [14.5 kB]
- Get:99 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libxi6 amd64 2:1.7.9-1 [82.6 kB]
- Get:100 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libxinerama1 amd64 2:1.1.3-1+b3 [16.7 kB]
- Get:101 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libxrandr2 amd64 2:1.5.1-1 [37.5 kB]
- Get:102 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 hicolor-icon-theme all 0.15-1 [9550 B]
- Get:103 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 gtk-update-icon-cache amd64 3.22.11-1 [76.6 kB]
- Get:104 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libcroco3 amd64 0.6.11-3 [143 kB]
- Get:105 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 librsvg2-2 amd64 2.40.16-1+b1 [281 kB]
- Get:106 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 librsvg2-common amd64 2.40.16-1+b1 [194 kB]
- Get:107 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 gnome-icon-theme all 3.12.0-2 [9890 kB]
- Get:108 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libgtk2.0-0 amd64 2.24.31-2 [1800 kB]
- Get:109 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libgvc6-plugins-gtk amd64 2.38.0-17 [59.7 kB]
- Get:110 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libltdl-dev amd64 2.4.6-2 [161 kB]
- Get:111 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libgraphviz-dev amd64 2.38.0-17 [98.8 kB]
- Get:112 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libopenjp2-7-dev amd64 2.1.2-1.1+deb9u3 [38.6 kB]
- Get:113 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 liblcms2-dev amd64 2.8-4+deb9u1 [4866 kB]
- Get:114 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 liblqr-1-0-dev amd64 0.4.2-2+b2 [72.4 kB]
- Get:115 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libilmbase-dev amd64 2.2.0-12 [76.7 kB]
- Get:116 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libopenexr-dev amd64 2.2.0-11+b1 [701 kB]
- Get:117 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libgirepository-1.0-1 amd64 1.50.0-1+b1 [89.0 kB]
- Get:118 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 gir1.2-glib-2.0 amd64 1.50.0-1+b1 [139 kB]
- Get:119 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libcairo-gobject2 amd64 1.14.8-1 [336 kB]
- Get:120 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 gir1.2-freedesktop amd64 1.50.0-1+b1 [15.4 kB]
- Get:121 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 gir1.2-gdkpixbuf-2.0 amd64 2.36.5-2+deb9u2 [15.4 kB]
- Get:122 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 gir1.2-rsvg-2.0 amd64 2.40.16-1+b1 [192 kB]
- Get:123 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libelf1 amd64 0.168-1 [157 kB]
- Get:124 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libglib2.0-data all 2.50.3-2+deb9u1 [2518 kB]
- Get:125 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libglib2.0-bin amd64 2.50.3-2+deb9u1 [1615 kB]
- Get:126 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libpcre16-3 amd64 2:8.39-3 [258 kB]
- Get:127 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libpcre32-3 amd64 2:8.39-3 [248 kB]
- Get:128 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libpcrecpp0v5 amd64 2:8.39-3 [151 kB]
- Get:129 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libpcre3-dev amd64 2:8.39-3 [647 kB]
- Get:130 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libglib2.0-dev amd64 2.50.3-2+deb9u1 [2983 kB]
- Get:131 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 xorg-sgml-doctools all 1:1.11-1 [21.9 kB]
- Get:132 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 x11proto-core-dev all 7.0.31-1 [728 kB]
- Get:133 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libxau-dev amd64 1:1.0.8-1 [23.6 kB]
- Get:134 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libxdmcp-dev amd64 1:1.1.2-3 [42.2 kB]
- Get:135 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 x11proto-input-dev all 2.3.2-1 [158 kB]
- Get:136 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 x11proto-kb-dev all 1.0.7-1 [233 kB]
- Get:137 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 xtrans-dev all 1.3.5-1 [100 kB]
- Get:138 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libpthread-stubs0-dev amd64 0.3-4 [3866 B]
- Get:139 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libxcb1-dev amd64 1.12-1 [169 kB]
- Get:140 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libx11-dev amd64 2:1.6.4-3+deb9u1 [815 kB]
- Get:141 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libgdk-pixbuf2.0-dev amd64 2.36.5-2+deb9u2 [54.3 kB]
- Get:142 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 liblzo2-2 amd64 2.08-1.2+b2 [55.0 kB]
- Get:143 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libcairo-script-interpreter2 amd64 1.14.8-1 [373 kB]
- Get:144 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libfontconfig1-dev amd64 2.11.0-6.7+b1 [897 kB]
- Get:145 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 x11proto-render-dev all 2:0.11.1-2 [20.8 kB]
- Get:146 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libxrender-dev amd64 1:0.9.10-1 [40.8 kB]
- Get:147 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 x11proto-xext-dev all 7.3.0-1 [212 kB]
- Get:148 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libxext-dev amd64 2:1.3.3-1+b2 [107 kB]
- Get:149 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 x11-common all 1:7.7+19 [251 kB]
- Get:150 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libice6 amd64 2:1.0.9-2 [58.7 kB]
- Get:151 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libsm6 amd64 2:1.2.2-1+b3 [33.3 kB]
- Get:152 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libice-dev amd64 2:1.0.9-2 [66.8 kB]
- Get:153 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libsm-dev amd64 2:1.2.2-1+b3 [35.8 kB]
- Get:154 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libpixman-1-dev amd64 0.34.0-1 [547 kB]
- Get:155 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libxcb-render0-dev amd64 1.12-1 [109 kB]
- Get:156 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libxcb-shm0-dev amd64 1.12-1 [96.9 kB]
- Get:157 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libcairo2-dev amd64 1.14.8-1 [919 kB]
- Get:158 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 librsvg2-dev amd64 2.40.16-1+b1 [293 kB]
- Get:159 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libjbig-dev amd64 2.1-3.1+b2 [30.5 kB]
- Get:160 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 liblzma-dev amd64 5.2.2-1.2+b1 [292 kB]
- Get:161 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libtiffxx5 amd64 4.0.8-2+deb9u4 [95.8 kB]
- Get:162 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libtiff5-dev amd64 4.0.8-2+deb9u4 [361 kB]
- Get:163 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libwmf-dev amd64 0.2.8.4-10.6 [189 kB]
- Get:164 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libicu57 amd64 57.1-6+deb9u3 [7705 kB]
- Get:165 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 icu-devtools amd64 57.1-6+deb9u3 [178 kB]
- Get:166 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libicu-dev amd64 57.1-6+deb9u3 [16.5 MB]
- Get:167 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libxml2-dev amd64 2.9.4+dfsg1-2.2+deb9u2 [812 kB]
- Get:168 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libxt6 amd64 1:1.1.5-1 [188 kB]
- Get:169 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libxt-dev amd64 1:1.1.5-1 [423 kB]
- Get:170 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libmagickcore-6.q16-dev amd64 8:6.9.7.4+dfsg-11+deb9u7 [1094 kB]
- Get:171 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libmagickwand-6.q16-dev amd64 8:6.9.7.4+dfsg-11+deb9u7 [418 kB]
- Get:172 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libmagickwand-dev all 8:6.9.7.4+dfsg-11+deb9u7 [1254 B]
- Get:173 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 poppler-data all 0.4.7-8 [1451 kB]
- Get:174 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libpopt0 amd64 1.16-10+b2 [49.4 kB]
- Get:175 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libapparmor1 amd64 2.11.0-3+deb9u2 [78.9 kB]
- Get:176 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 dbus amd64 1.10.28-0+deb9u1 [212 kB]
- Get:177 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 less amd64 481-2.1 [126 kB]
- Get:178 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 openssh-client amd64 1:7.4p1-10+deb9u7 [780 kB]
- Get:179 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 autotools-dev all 20161112.1 [73.4 kB]
- Get:180 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 bzip2-doc all 1.0.6-8.1 [307 kB]
- Get:181 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 mysql-common all 5.8+1.0.2 [5608 B]
- Get:182 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 mariadb-common all 10.1.41-0+deb9u1 [28.5 kB]
- Get:183 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libaio1 amd64 0.3.110-3 [9412 B]
- Get:184 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libreadline5 amd64 5.2+dfsg-3+b1 [119 kB]
- Get:185 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 mariadb-client-core-10.1 amd64 10.1.41-0+deb9u1 [5132 kB]
- Get:186 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libconfig-inifiles-perl all 2.94-1 [53.4 kB]
- Get:187 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libjemalloc1 amd64 3.6.0-9.1 [89.8 kB]
- Get:188 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 mariadb-client-10.1 amd64 10.1.41-0+deb9u1 [5930 kB]
- Get:189 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 default-mysql-client all 1.0.2 [3050 B]
- Get:190 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 fonts-noto-mono all 20161116-1 [79.2 kB]
- Get:191 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libcupsimage2 amd64 2.2.1-8+deb9u4 [122 kB]
- Get:192 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libijs-0.35 amd64 0.35-12 [18.4 kB]
- Get:193 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libjbig2dec0 amd64 0.13-4.1 [60.1 kB]
- Get:194 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libpaper1 amd64 1.1.24+nmu5 [21.6 kB]
- Get:195 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 gsfonts all 1:8.11+urwcyr1.0.7~pre44-4.3 [3126 kB]
- Get:196 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 imagemagick-6.q16 amd64 8:6.9.7.4+dfsg-11+deb9u7 [563 kB]
- Get:197 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 imagemagick amd64 8:6.9.7.4+dfsg-11+deb9u7 [141 kB]
- Get:198 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 javascript-common all 11 [6120 B]
- Get:199 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libonig4 amd64 6.1.3-2 [146 kB]
- Get:200 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libjq1 amd64 1.5+dfsg-1.3 [123 kB]
- Get:201 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 jq amd64 1.5+dfsg-1.3 [58.6 kB]
- Get:202 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libcupsfilters1 amd64 1.11.6-3+deb9u1 [129 kB]
- Get:203 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libdbi-perl amd64 1.636-1+b1 [766 kB]
- Get:204 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libmariadbclient18 amd64 10.1.41-0+deb9u1 [782 kB]
- Get:205 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libdbd-mysql-perl amd64 4.041-2 [114 kB]
- Get:206 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libgail18 amd64 2.24.31-2 [54.1 kB]
- Get:207 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libgail-common amd64 2.24.31-2 [153 kB]
- Get:208 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libgtk2.0-bin amd64 2.24.31-2 [47.1 kB]
- Get:209 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libgts-bin amd64 0.7.6+darcs121130-4 [50.8 kB]
- Get:210 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libjxr0 amd64 1.1-6+b1 [160 kB]
- Get:211 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libjxr-tools amd64 1.1-6+b1 [17.0 kB]
- Get:212 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libmcrypt4 amd64 2.5.8-3.3 [71.2 kB]
- Get:213 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libmcrypt-dev amd64 2.5.8-3.3 [92.9 kB]
- Get:214 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libnetpbm10 amd64 2:10.0-15.3+b2 [86.7 kB]
- Get:215 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libpaper-utils amd64 1.1.24+nmu5 [17.6 kB]
- Get:216 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libpng-tools amd64 1.6.28-1+deb9u1 [133 kB]
- Get:217 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libterm-readkey-perl amd64 2.37-1 [27.2 kB]
- Get:218 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libtool all 2.4.6-2 [545 kB]
- Get:219 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libx11-doc all 2:1.6.4-3+deb9u1 [2201 kB]
- Get:220 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libxmuu1 amd64 2:1.1.2-2 [23.5 kB]
- Get:221 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 mysql-client amd64 5.5.9999+default [1698 B]
- Get:222 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 netpbm amd64 2:10.0-15.3+b2 [1029 kB]
- Get:223 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 psmisc amd64 22.21-2.1+b2 [123 kB]
- Get:224 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 rsync amd64 3.1.2-1+deb9u2 [393 kB]
- Get:225 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 unzip amd64 6.0-21+deb9u2 [172 kB]
- Get:226 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 xauth amd64 1:1.0.9-1+b2 [39.6 kB]
- Get:227 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 zip amd64 3.0-11+b1 [234 kB]
- debconf: delaying package configuration, since apt-utils is not installed
- Fetched 157 MB in 8s (18.1 MB/s)
- Selecting previously unselected package libpython2.7-minimal:amd64.
- (Reading database ... 13534 files and directories currently installed.)
- Preparing to unpack .../0-libpython2.7-minimal_2.7.13-2+deb9u3_amd64.deb ...
- Unpacking libpython2.7-minimal:amd64 (2.7.13-2+deb9u3) ...
- Selecting previously unselected package python2.7-minimal.
- Preparing to unpack .../1-python2.7-minimal_2.7.13-2+deb9u3_amd64.deb ...
- Unpacking python2.7-minimal (2.7.13-2+deb9u3) ...
- Selecting previously unselected package python-minimal.
- Preparing to unpack .../2-python-minimal_2.7.13-2_amd64.deb ...
- Unpacking python-minimal (2.7.13-2) ...
- Selecting previously unselected package libpython2.7-stdlib:amd64.
- Preparing to unpack .../3-libpython2.7-stdlib_2.7.13-2+deb9u3_amd64.deb ...
- Unpacking libpython2.7-stdlib:amd64 (2.7.13-2+deb9u3) ...
- Selecting previously unselected package python2.7.
- Preparing to unpack .../4-python2.7_2.7.13-2+deb9u3_amd64.deb ...
- Unpacking python2.7 (2.7.13-2+deb9u3) ...
- Selecting previously unselected package libpython-stdlib:amd64.
- Preparing to unpack .../5-libpython-stdlib_2.7.13-2_amd64.deb ...
- Unpacking libpython-stdlib:amd64 (2.7.13-2) ...
- Setting up libpython2.7-minimal:amd64 (2.7.13-2+deb9u3) ...
- Setting up python2.7-minimal (2.7.13-2+deb9u3) ...
- Setting up python-minimal (2.7.13-2) ...
- Selecting previously unselected package python.
- (Reading database ... 14280 files and directories currently installed.)
- Preparing to unpack .../000-python_2.7.13-2_amd64.deb ...
- Unpacking python (2.7.13-2) ...
- Selecting previously unselected package libpng16-16:amd64.
- Preparing to unpack .../001-libpng16-16_1.6.28-1+deb9u1_amd64.deb ...
- Unpacking libpng16-16:amd64 (1.6.28-1+deb9u1) ...
- Selecting previously unselected package libfreetype6:amd64.
- Preparing to unpack .../002-libfreetype6_2.6.3-3.2_amd64.deb ...
- Unpacking libfreetype6:amd64 (2.6.3-3.2) ...
- Selecting previously unselected package ucf.
- Preparing to unpack .../003-ucf_3.0036_all.deb ...
- Moving old data out of the way
- Unpacking ucf (3.0036) ...
- Selecting previously unselected package fonts-dejavu-core.
- Preparing to unpack .../004-fonts-dejavu-core_2.37-1_all.deb ...
- Unpacking fonts-dejavu-core (2.37-1) ...
- Selecting previously unselected package fontconfig-config.
- Preparing to unpack .../005-fontconfig-config_2.11.0-6.7_all.deb ...
- Unpacking fontconfig-config (2.11.0-6.7) ...
- Selecting previously unselected package libfontconfig1:amd64.
- Preparing to unpack .../006-libfontconfig1_2.11.0-6.7+b1_amd64.deb ...
- Unpacking libfontconfig1:amd64 (2.11.0-6.7+b1) ...
- Selecting previously unselected package fontconfig.
- Preparing to unpack .../007-fontconfig_2.11.0-6.7+b1_amd64.deb ...
- Unpacking fontconfig (2.11.0-6.7+b1) ...
- Selecting previously unselected package fonts-droid-fallback.
- Preparing to unpack .../008-fonts-droid-fallback_1%3a6.0.1r16-1.1_all.deb ...
- Unpacking fonts-droid-fallback (1:6.0.1r16-1.1) ...
- Selecting previously unselected package liberror-perl.
- Preparing to unpack .../009-liberror-perl_0.17024-1_all.deb ...
- Unpacking liberror-perl (0.17024-1) ...
- Selecting previously unselected package git-man.
- Preparing to unpack .../010-git-man_1%3a2.11.0-3+deb9u5_all.deb ...
- Unpacking git-man (1:2.11.0-3+deb9u5) ...
- Selecting previously unselected package git.
- Preparing to unpack .../011-git_1%3a2.11.0-3+deb9u5_amd64.deb ...
- Unpacking git (1:2.11.0-3+deb9u5) ...
- Preparing to unpack .../012-libglib2.0-0_2.50.3-2+deb9u1_amd64.deb ...
- Unpacking libglib2.0-0:amd64 (2.50.3-2+deb9u1) over (2.50.3-2) ...
- Selecting previously unselected package liblqr-1-0:amd64.
- Preparing to unpack .../013-liblqr-1-0_0.4.2-2+b2_amd64.deb ...
- Unpacking liblqr-1-0:amd64 (0.4.2-2+b2) ...
- Selecting previously unselected package imagemagick-6-common.
- Preparing to unpack .../014-imagemagick-6-common_8%3a6.9.7.4+dfsg-11+deb9u7_all.deb ...
- Unpacking imagemagick-6-common (8:6.9.7.4+dfsg-11+deb9u7) ...
- Selecting previously unselected package libmagickcore-6-arch-config:amd64.
- Preparing to unpack .../015-libmagickcore-6-arch-config_8%3a6.9.7.4+dfsg-11+deb9u7_amd64.deb ...
- Unpacking libmagickcore-6-arch-config:amd64 (8:6.9.7.4+dfsg-11+deb9u7) ...
- Selecting previously unselected package libmagickcore-6-headers.
- Preparing to unpack .../016-libmagickcore-6-headers_8%3a6.9.7.4+dfsg-11+deb9u7_all.deb ...
- Unpacking libmagickcore-6-headers (8:6.9.7.4+dfsg-11+deb9u7) ...
- Selecting previously unselected package libfftw3-double3:amd64.
- Preparing to unpack .../017-libfftw3-double3_3.3.5-3_amd64.deb ...
- Unpacking libfftw3-double3:amd64 (3.3.5-3) ...
- Selecting previously unselected package libjbig0:amd64.
- Preparing to unpack .../018-libjbig0_2.1-3.1+b2_amd64.deb ...
- Unpacking libjbig0:amd64 (2.1-3.1+b2) ...
- Selecting previously unselected package libjpeg62-turbo:amd64.
- Preparing to unpack .../019-libjpeg62-turbo_1%3a1.5.1-2_amd64.deb ...
- Unpacking libjpeg62-turbo:amd64 (1:1.5.1-2) ...
- Selecting previously unselected package liblcms2-2:amd64.
- Preparing to unpack .../020-liblcms2-2_2.8-4+deb9u1_amd64.deb ...
- Unpacking liblcms2-2:amd64 (2.8-4+deb9u1) ...
- Selecting previously unselected package libltdl7:amd64.
- Preparing to unpack .../021-libltdl7_2.4.6-2_amd64.deb ...
- Unpacking libltdl7:amd64 (2.4.6-2) ...
- Selecting previously unselected package libopenjp2-7:amd64.
- Preparing to unpack .../022-libopenjp2-7_2.1.2-1.1+deb9u3_amd64.deb ...
- Unpacking libopenjp2-7:amd64 (2.1.2-1.1+deb9u3) ...
- Selecting previously unselected package libtiff5:amd64.
- Preparing to unpack .../023-libtiff5_4.0.8-2+deb9u4_amd64.deb ...
- Unpacking libtiff5:amd64 (4.0.8-2+deb9u4) ...
- Selecting previously unselected package libxau6:amd64.
- Preparing to unpack .../024-libxau6_1%3a1.0.8-1_amd64.deb ...
- Unpacking libxau6:amd64 (1:1.0.8-1) ...
- Selecting previously unselected package libxdmcp6:amd64.
- Preparing to unpack .../025-libxdmcp6_1%3a1.1.2-3_amd64.deb ...
- Unpacking libxdmcp6:amd64 (1:1.1.2-3) ...
- Selecting previously unselected package libxcb1:amd64.
- Preparing to unpack .../026-libxcb1_1.12-1_amd64.deb ...
- Unpacking libxcb1:amd64 (1.12-1) ...
- Selecting previously unselected package libx11-data.
- Preparing to unpack .../027-libx11-data_2%3a1.6.4-3+deb9u1_all.deb ...
- Unpacking libx11-data (2:1.6.4-3+deb9u1) ...
- Selecting previously unselected package libx11-6:amd64.
- Preparing to unpack .../028-libx11-6_2%3a1.6.4-3+deb9u1_amd64.deb ...
- Unpacking libx11-6:amd64 (2:1.6.4-3+deb9u1) ...
- Selecting previously unselected package libxext6:amd64.
- Preparing to unpack .../029-libxext6_2%3a1.3.3-1+b2_amd64.deb ...
- Unpacking libxext6:amd64 (2:1.3.3-1+b2) ...
- Selecting previously unselected package libmagickcore-6.q16-3:amd64.
- Preparing to unpack .../030-libmagickcore-6.q16-3_8%3a6.9.7.4+dfsg-11+deb9u7_amd64.deb ...
- Unpacking libmagickcore-6.q16-3:amd64 (8:6.9.7.4+dfsg-11+deb9u7) ...
- Selecting previously unselected package libmagickwand-6-headers.
- Preparing to unpack .../031-libmagickwand-6-headers_8%3a6.9.7.4+dfsg-11+deb9u7_all.deb ...
- Unpacking libmagickwand-6-headers (8:6.9.7.4+dfsg-11+deb9u7) ...
- Selecting previously unselected package libmagickwand-6.q16-3:amd64.
- Preparing to unpack .../032-libmagickwand-6.q16-3_8%3a6.9.7.4+dfsg-11+deb9u7_amd64.deb ...
- Unpacking libmagickwand-6.q16-3:amd64 (8:6.9.7.4+dfsg-11+deb9u7) ...
- Selecting previously unselected package libpixman-1-0:amd64.
- Preparing to unpack .../033-libpixman-1-0_0.34.0-1_amd64.deb ...
- Unpacking libpixman-1-0:amd64 (0.34.0-1) ...
- Selecting previously unselected package libxcb-render0:amd64.
- Preparing to unpack .../034-libxcb-render0_1.12-1_amd64.deb ...
- Unpacking libxcb-render0:amd64 (1.12-1) ...
- Selecting previously unselected package libxcb-shm0:amd64.
- Preparing to unpack .../035-libxcb-shm0_1.12-1_amd64.deb ...
- Unpacking libxcb-shm0:amd64 (1.12-1) ...
- Selecting previously unselected package libxrender1:amd64.
- Preparing to unpack .../036-libxrender1_1%3a0.9.10-1_amd64.deb ...
- Unpacking libxrender1:amd64 (1:0.9.10-1) ...
- Selecting previously unselected package libcairo2:amd64.
- Preparing to unpack .../037-libcairo2_1.14.8-1_amd64.deb ...
- Unpacking libcairo2:amd64 (1.14.8-1) ...
- Selecting previously unselected package libdjvulibre-text.
- Preparing to unpack .../038-libdjvulibre-text_3.5.27.1-7_all.deb ...
- Unpacking libdjvulibre-text (3.5.27.1-7) ...
- Selecting previously unselected package libdjvulibre21:amd64.
- Preparing to unpack .../039-libdjvulibre21_3.5.27.1-7_amd64.deb ...
- Unpacking libdjvulibre21:amd64 (3.5.27.1-7) ...
- Selecting previously unselected package libilmbase12:amd64.
- Preparing to unpack .../040-libilmbase12_2.2.0-12_amd64.deb ...
- Unpacking libilmbase12:amd64 (2.2.0-12) ...
- Selecting previously unselected package libopenexr22:amd64.
- Preparing to unpack .../041-libopenexr22_2.2.0-11+b1_amd64.deb ...
- Unpacking libopenexr22:amd64 (2.2.0-11+b1) ...
- Selecting previously unselected package libthai-data.
- Preparing to unpack .../042-libthai-data_0.1.26-1_all.deb ...
- Unpacking libthai-data (0.1.26-1) ...
- Selecting previously unselected package libdatrie1:amd64.
- Preparing to unpack .../043-libdatrie1_0.2.10-4+b1_amd64.deb ...
- Unpacking libdatrie1:amd64 (0.2.10-4+b1) ...
- Selecting previously unselected package libthai0:amd64.
- Preparing to unpack .../044-libthai0_0.1.26-1_amd64.deb ...
- Unpacking libthai0:amd64 (0.1.26-1) ...
- Selecting previously unselected package libpango-1.0-0:amd64.
- Preparing to unpack .../045-libpango-1.0-0_1.40.5-1_amd64.deb ...
- Unpacking libpango-1.0-0:amd64 (1.40.5-1) ...
- Selecting previously unselected package libgraphite2-3:amd64.
- Preparing to unpack .../046-libgraphite2-3_1.3.10-1_amd64.deb ...
- Unpacking libgraphite2-3:amd64 (1.3.10-1) ...
- Selecting previously unselected package libharfbuzz0b:amd64.
- Preparing to unpack .../047-libharfbuzz0b_1.4.2-1_amd64.deb ...
- Unpacking libharfbuzz0b:amd64 (1.4.2-1) ...
- Selecting previously unselected package libpangoft2-1.0-0:amd64.
- Preparing to unpack .../048-libpangoft2-1.0-0_1.40.5-1_amd64.deb ...
- Unpacking libpangoft2-1.0-0:amd64 (1.40.5-1) ...
- Selecting previously unselected package libpangocairo-1.0-0:amd64.
- Preparing to unpack .../049-libpangocairo-1.0-0_1.40.5-1_amd64.deb ...
- Unpacking libpangocairo-1.0-0:amd64 (1.40.5-1) ...
- Selecting previously unselected package shared-mime-info.
- Preparing to unpack .../050-shared-mime-info_1.8-1+deb9u1_amd64.deb ...
- Unpacking shared-mime-info (1.8-1+deb9u1) ...
- Selecting previously unselected package libgdk-pixbuf2.0-common.
- Preparing to unpack .../051-libgdk-pixbuf2.0-common_2.36.5-2+deb9u2_all.deb ...
- Unpacking libgdk-pixbuf2.0-common (2.36.5-2+deb9u2) ...
- Selecting previously unselected package libgdk-pixbuf2.0-0:amd64.
- Preparing to unpack .../052-libgdk-pixbuf2.0-0_2.36.5-2+deb9u2_amd64.deb ...
- Unpacking libgdk-pixbuf2.0-0:amd64 (2.36.5-2+deb9u2) ...
- Selecting previously unselected package libwmf0.2-7:amd64.
- Preparing to unpack .../053-libwmf0.2-7_0.2.8.4-10.6_amd64.deb ...
- Unpacking libwmf0.2-7:amd64 (0.2.8.4-10.6) ...
- Selecting previously unselected package libmagickcore-6.q16-3-extra:amd64.
- Preparing to unpack .../054-libmagickcore-6.q16-3-extra_8%3a6.9.7.4+dfsg-11+deb9u7_amd64.deb ...
- Unpacking libmagickcore-6.q16-3-extra:amd64 (8:6.9.7.4+dfsg-11+deb9u7) ...
- Selecting previously unselected package libbz2-dev:amd64.
- Preparing to unpack .../055-libbz2-dev_1.0.6-8.1_amd64.deb ...
- Unpacking libbz2-dev:amd64 (1.0.6-8.1) ...
- Selecting previously unselected package libjpeg62-turbo-dev:amd64.
- Preparing to unpack .../056-libjpeg62-turbo-dev_1%3a1.5.1-2_amd64.deb ...
- Unpacking libjpeg62-turbo-dev:amd64 (1:1.5.1-2) ...
- Selecting previously unselected package libjpeg-dev.
- Preparing to unpack .../057-libjpeg-dev_1%3a1.5.1-2_all.deb ...
- Unpacking libjpeg-dev (1:1.5.1-2) ...
- Selecting previously unselected package libdjvulibre-dev:amd64.
- Preparing to unpack .../058-libdjvulibre-dev_3.5.27.1-7_amd64.deb ...
- Unpacking libdjvulibre-dev:amd64 (3.5.27.1-7) ...
- Selecting previously unselected package libexif12:amd64.
- Preparing to unpack .../059-libexif12_0.6.21-2+b2_amd64.deb ...
- Unpacking libexif12:amd64 (0.6.21-2+b2) ...
- Selecting previously unselected package libjs-jquery.
- Preparing to unpack .../060-libjs-jquery_3.1.1-2+deb9u1_all.deb ...
- Unpacking libjs-jquery (3.1.1-2+deb9u1) ...
- Selecting previously unselected package libexif-dev.
- Preparing to unpack .../061-libexif-dev_0.6.21-2+b2_amd64.deb ...
- Unpacking libexif-dev (0.6.21-2+b2) ...
- Selecting previously unselected package zlib1g-dev:amd64.
- Preparing to unpack .../062-zlib1g-dev_1%3a1.2.8.dfsg-5_amd64.deb ...
- Unpacking zlib1g-dev:amd64 (1:1.2.8.dfsg-5) ...
- Selecting previously unselected package libpng-dev:amd64.
- Preparing to unpack .../063-libpng-dev_1.6.28-1+deb9u1_amd64.deb ...
- Unpacking libpng-dev:amd64 (1.6.28-1+deb9u1) ...
- Selecting previously unselected package libfreetype6-dev.
- Preparing to unpack .../064-libfreetype6-dev_2.6.3-3.2_amd64.deb ...
- Unpacking libfreetype6-dev (2.6.3-3.2) ...
- Selecting previously unselected package libcdt5.
- Preparing to unpack .../065-libcdt5_2.38.0-17_amd64.deb ...
- Unpacking libcdt5 (2.38.0-17) ...
- Selecting previously unselected package libcgraph6.
- Preparing to unpack .../066-libcgraph6_2.38.0-17_amd64.deb ...
- Unpacking libcgraph6 (2.38.0-17) ...
- Selecting previously unselected package libwebp6:amd64.
- Preparing to unpack .../067-libwebp6_0.5.2-1_amd64.deb ...
- Unpacking libwebp6:amd64 (0.5.2-1) ...
- Selecting previously unselected package libxpm4:amd64.
- Preparing to unpack .../068-libxpm4_1%3a3.5.12-1_amd64.deb ...
- Unpacking libxpm4:amd64 (1:3.5.12-1) ...
- Selecting previously unselected package libgd3:amd64.
- Preparing to unpack .../069-libgd3_2.2.4-2+deb9u5_amd64.deb ...
- Unpacking libgd3:amd64 (2.2.4-2+deb9u5) ...
- Selecting previously unselected package libgts-0.7-5:amd64.
- Preparing to unpack .../070-libgts-0.7-5_0.7.6+darcs121130-4_amd64.deb ...
- Unpacking libgts-0.7-5:amd64 (0.7.6+darcs121130-4) ...
- Selecting previously unselected package libpathplan4.
- Preparing to unpack .../071-libpathplan4_2.38.0-17_amd64.deb ...
- Unpacking libpathplan4 (2.38.0-17) ...
- Selecting previously unselected package libxdot4.
- Preparing to unpack .../072-libxdot4_2.38.0-17_amd64.deb ...
- Unpacking libxdot4 (2.38.0-17) ...
- Selecting previously unselected package libgvc6.
- Preparing to unpack .../073-libgvc6_2.38.0-17_amd64.deb ...
- Unpacking libgvc6 (2.38.0-17) ...
- Selecting previously unselected package libgvpr2.
- Preparing to unpack .../074-libgvpr2_2.38.0-17_amd64.deb ...
- Unpacking libgvpr2 (2.38.0-17) ...
- Selecting previously unselected package libatk1.0-data.
- Preparing to unpack .../075-libatk1.0-data_2.22.0-1_all.deb ...
- Unpacking libatk1.0-data (2.22.0-1) ...
- Selecting previously unselected package libatk1.0-0:amd64.
- Preparing to unpack .../076-libatk1.0-0_2.22.0-1_amd64.deb ...
- Unpacking libatk1.0-0:amd64 (2.22.0-1) ...
- Selecting previously unselected package libgtk2.0-common.
- Preparing to unpack .../077-libgtk2.0-common_2.24.31-2_all.deb ...
- Unpacking libgtk2.0-common (2.24.31-2) ...
- Selecting previously unselected package libavahi-common-data:amd64.
- Preparing to unpack .../078-libavahi-common-data_0.6.32-2_amd64.deb ...
- Unpacking libavahi-common-data:amd64 (0.6.32-2) ...
- Selecting previously unselected package libavahi-common3:amd64.
- Preparing to unpack .../079-libavahi-common3_0.6.32-2_amd64.deb ...
- Unpacking libavahi-common3:amd64 (0.6.32-2) ...
- Selecting previously unselected package libdbus-1-3:amd64.
- Preparing to unpack .../080-libdbus-1-3_1.10.28-0+deb9u1_amd64.deb ...
- Unpacking libdbus-1-3:amd64 (1.10.28-0+deb9u1) ...
- Selecting previously unselected package libavahi-client3:amd64.
- Preparing to unpack .../081-libavahi-client3_0.6.32-2_amd64.deb ...
- Unpacking libavahi-client3:amd64 (0.6.32-2) ...
- Selecting previously unselected package libcups2:amd64.
- Preparing to unpack .../082-libcups2_2.2.1-8+deb9u4_amd64.deb ...
- Unpacking libcups2:amd64 (2.2.1-8+deb9u4) ...
- Selecting previously unselected package libxcomposite1:amd64.
- Preparing to unpack .../083-libxcomposite1_1%3a0.4.4-2_amd64.deb ...
- Unpacking libxcomposite1:amd64 (1:0.4.4-2) ...
- Selecting previously unselected package libxfixes3:amd64.
- Preparing to unpack .../084-libxfixes3_1%3a5.0.3-1_amd64.deb ...
- Unpacking libxfixes3:amd64 (1:5.0.3-1) ...
- Selecting previously unselected package libxcursor1:amd64.
- Preparing to unpack .../085-libxcursor1_1%3a1.1.14-1+deb9u2_amd64.deb ...
- Unpacking libxcursor1:amd64 (1:1.1.14-1+deb9u2) ...
- Selecting previously unselected package libxdamage1:amd64.
- Preparing to unpack .../086-libxdamage1_1%3a1.1.4-2+b3_amd64.deb ...
- Unpacking libxdamage1:amd64 (1:1.1.4-2+b3) ...
- Selecting previously unselected package libxi6:amd64.
- Preparing to unpack .../087-libxi6_2%3a1.7.9-1_amd64.deb ...
- Unpacking libxi6:amd64 (2:1.7.9-1) ...
- Selecting previously unselected package libxinerama1:amd64.
- Preparing to unpack .../088-libxinerama1_2%3a1.1.3-1+b3_amd64.deb ...
- Unpacking libxinerama1:amd64 (2:1.1.3-1+b3) ...
- Selecting previously unselected package libxrandr2:amd64.
- Preparing to unpack .../089-libxrandr2_2%3a1.5.1-1_amd64.deb ...
- Unpacking libxrandr2:amd64 (2:1.5.1-1) ...
- Selecting previously unselected package hicolor-icon-theme.
- Preparing to unpack .../090-hicolor-icon-theme_0.15-1_all.deb ...
- Unpacking hicolor-icon-theme (0.15-1) ...
- Selecting previously unselected package gtk-update-icon-cache.
- Preparing to unpack .../091-gtk-update-icon-cache_3.22.11-1_amd64.deb ...
- No diversion 'diversion of /usr/sbin/update-icon-caches to /usr/sbin/update-icon-caches.gtk2 by libgtk-3-bin', none removed.
- No diversion 'diversion of /usr/share/man/man8/update-icon-caches.8.gz to /usr/share/man/man8/update-icon-caches.gtk2.8.gz by libgtk-3-bin', none removed.
- Unpacking gtk-update-icon-cache (3.22.11-1) ...
- Selecting previously unselected package libcroco3:amd64.
- Preparing to unpack .../092-libcroco3_0.6.11-3_amd64.deb ...
- Unpacking libcroco3:amd64 (0.6.11-3) ...
- Selecting previously unselected package librsvg2-2:amd64.
- Preparing to unpack .../093-librsvg2-2_2.40.16-1+b1_amd64.deb ...
- Unpacking librsvg2-2:amd64 (2.40.16-1+b1) ...
- Selecting previously unselected package librsvg2-common:amd64.
- Preparing to unpack .../094-librsvg2-common_2.40.16-1+b1_amd64.deb ...
- Unpacking librsvg2-common:amd64 (2.40.16-1+b1) ...
- Selecting previously unselected package gnome-icon-theme.
- Preparing to unpack .../095-gnome-icon-theme_3.12.0-2_all.deb ...
- Unpacking gnome-icon-theme (3.12.0-2) ...
- Selecting previously unselected package libgtk2.0-0:amd64.
- Preparing to unpack .../096-libgtk2.0-0_2.24.31-2_amd64.deb ...
- Unpacking libgtk2.0-0:amd64 (2.24.31-2) ...
- Selecting previously unselected package libgvc6-plugins-gtk.
- Preparing to unpack .../097-libgvc6-plugins-gtk_2.38.0-17_amd64.deb ...
- Unpacking libgvc6-plugins-gtk (2.38.0-17) ...
- Selecting previously unselected package libexpat1-dev:amd64.
- Preparing to unpack .../098-libexpat1-dev_2.2.0-2+deb9u3_amd64.deb ...
- Unpacking libexpat1-dev:amd64 (2.2.0-2+deb9u3) ...
- Selecting previously unselected package libltdl-dev:amd64.
- Preparing to unpack .../099-libltdl-dev_2.4.6-2_amd64.deb ...
- Unpacking libltdl-dev:amd64 (2.4.6-2) ...
- Selecting previously unselected package libgraphviz-dev.
- Preparing to unpack .../100-libgraphviz-dev_2.38.0-17_amd64.deb ...
- Unpacking libgraphviz-dev (2.38.0-17) ...
- Selecting previously unselected package libopenjp2-7-dev.
- Preparing to unpack .../101-libopenjp2-7-dev_2.1.2-1.1+deb9u3_amd64.deb ...
- Unpacking libopenjp2-7-dev (2.1.2-1.1+deb9u3) ...
- Selecting previously unselected package liblcms2-dev:amd64.
- Preparing to unpack .../102-liblcms2-dev_2.8-4+deb9u1_amd64.deb ...
- Unpacking liblcms2-dev:amd64 (2.8-4+deb9u1) ...
- Selecting previously unselected package liblqr-1-0-dev.
- Preparing to unpack .../103-liblqr-1-0-dev_0.4.2-2+b2_amd64.deb ...
- Unpacking liblqr-1-0-dev (0.4.2-2+b2) ...
- Selecting previously unselected package libilmbase-dev.
- Preparing to unpack .../104-libilmbase-dev_2.2.0-12_amd64.deb ...
- Unpacking libilmbase-dev (2.2.0-12) ...
- Selecting previously unselected package libopenexr-dev.
- Preparing to unpack .../105-libopenexr-dev_2.2.0-11+b1_amd64.deb ...
- Unpacking libopenexr-dev (2.2.0-11+b1) ...
- Selecting previously unselected package libgirepository-1.0-1:amd64.
- Preparing to unpack .../106-libgirepository-1.0-1_1.50.0-1+b1_amd64.deb ...
- Unpacking libgirepository-1.0-1:amd64 (1.50.0-1+b1) ...
- Selecting previously unselected package gir1.2-glib-2.0:amd64.
- Preparing to unpack .../107-gir1.2-glib-2.0_1.50.0-1+b1_amd64.deb ...
- Unpacking gir1.2-glib-2.0:amd64 (1.50.0-1+b1) ...
- Selecting previously unselected package libcairo-gobject2:amd64.
- Preparing to unpack .../108-libcairo-gobject2_1.14.8-1_amd64.deb ...
- Unpacking libcairo-gobject2:amd64 (1.14.8-1) ...
- Selecting previously unselected package gir1.2-freedesktop:amd64.
- Preparing to unpack .../109-gir1.2-freedesktop_1.50.0-1+b1_amd64.deb ...
- Unpacking gir1.2-freedesktop:amd64 (1.50.0-1+b1) ...
- Selecting previously unselected package gir1.2-gdkpixbuf-2.0:amd64.
- Preparing to unpack .../110-gir1.2-gdkpixbuf-2.0_2.36.5-2+deb9u2_amd64.deb ...
- Unpacking gir1.2-gdkpixbuf-2.0:amd64 (2.36.5-2+deb9u2) ...
- Selecting previously unselected package gir1.2-rsvg-2.0:amd64.
- Preparing to unpack .../111-gir1.2-rsvg-2.0_2.40.16-1+b1_amd64.deb ...
- Unpacking gir1.2-rsvg-2.0:amd64 (2.40.16-1+b1) ...
- Selecting previously unselected package libelf1:amd64.
- Preparing to unpack .../112-libelf1_0.168-1_amd64.deb ...
- Unpacking libelf1:amd64 (0.168-1) ...
- Selecting previously unselected package libglib2.0-data.
- Preparing to unpack .../113-libglib2.0-data_2.50.3-2+deb9u1_all.deb ...
- Unpacking libglib2.0-data (2.50.3-2+deb9u1) ...
- Selecting previously unselected package libglib2.0-bin.
- Preparing to unpack .../114-libglib2.0-bin_2.50.3-2+deb9u1_amd64.deb ...
- Unpacking libglib2.0-bin (2.50.3-2+deb9u1) ...
- Selecting previously unselected package libpcre16-3:amd64.
- Preparing to unpack .../115-libpcre16-3_2%3a8.39-3_amd64.deb ...
- Unpacking libpcre16-3:amd64 (2:8.39-3) ...
- Selecting previously unselected package libpcre32-3:amd64.
- Preparing to unpack .../116-libpcre32-3_2%3a8.39-3_amd64.deb ...
- Unpacking libpcre32-3:amd64 (2:8.39-3) ...
- Selecting previously unselected package libpcrecpp0v5:amd64.
- Preparing to unpack .../117-libpcrecpp0v5_2%3a8.39-3_amd64.deb ...
- Unpacking libpcrecpp0v5:amd64 (2:8.39-3) ...
- Selecting previously unselected package libpcre3-dev:amd64.
- Preparing to unpack .../118-libpcre3-dev_2%3a8.39-3_amd64.deb ...
- Unpacking libpcre3-dev:amd64 (2:8.39-3) ...
- Selecting previously unselected package libglib2.0-dev.
- Preparing to unpack .../119-libglib2.0-dev_2.50.3-2+deb9u1_amd64.deb ...
- Unpacking libglib2.0-dev (2.50.3-2+deb9u1) ...
- Selecting previously unselected package xorg-sgml-doctools.
- Preparing to unpack .../120-xorg-sgml-doctools_1%3a1.11-1_all.deb ...
- Unpacking xorg-sgml-doctools (1:1.11-1) ...
- Selecting previously unselected package x11proto-core-dev.
- Preparing to unpack .../121-x11proto-core-dev_7.0.31-1_all.deb ...
- Unpacking x11proto-core-dev (7.0.31-1) ...
- Selecting previously unselected package libxau-dev:amd64.
- Preparing to unpack .../122-libxau-dev_1%3a1.0.8-1_amd64.deb ...
- Unpacking libxau-dev:amd64 (1:1.0.8-1) ...
- Selecting previously unselected package libxdmcp-dev:amd64.
- Preparing to unpack .../123-libxdmcp-dev_1%3a1.1.2-3_amd64.deb ...
- Unpacking libxdmcp-dev:amd64 (1:1.1.2-3) ...
- Selecting previously unselected package x11proto-input-dev.
- Preparing to unpack .../124-x11proto-input-dev_2.3.2-1_all.deb ...
- Unpacking x11proto-input-dev (2.3.2-1) ...
- Selecting previously unselected package x11proto-kb-dev.
- Preparing to unpack .../125-x11proto-kb-dev_1.0.7-1_all.deb ...
- Unpacking x11proto-kb-dev (1.0.7-1) ...
- Selecting previously unselected package xtrans-dev.
- Preparing to unpack .../126-xtrans-dev_1.3.5-1_all.deb ...
- Unpacking xtrans-dev (1.3.5-1) ...
- Selecting previously unselected package libpthread-stubs0-dev:amd64.
- Preparing to unpack .../127-libpthread-stubs0-dev_0.3-4_amd64.deb ...
- Unpacking libpthread-stubs0-dev:amd64 (0.3-4) ...
- Selecting previously unselected package libxcb1-dev:amd64.
- Preparing to unpack .../128-libxcb1-dev_1.12-1_amd64.deb ...
- Unpacking libxcb1-dev:amd64 (1.12-1) ...
- Selecting previously unselected package libx11-dev:amd64.
- Preparing to unpack .../129-libx11-dev_2%3a1.6.4-3+deb9u1_amd64.deb ...
- Unpacking libx11-dev:amd64 (2:1.6.4-3+deb9u1) ...
- Selecting previously unselected package libgdk-pixbuf2.0-dev.
- Preparing to unpack .../130-libgdk-pixbuf2.0-dev_2.36.5-2+deb9u2_amd64.deb ...
- Unpacking libgdk-pixbuf2.0-dev (2.36.5-2+deb9u2) ...
- Selecting previously unselected package liblzo2-2:amd64.
- Preparing to unpack .../131-liblzo2-2_2.08-1.2+b2_amd64.deb ...
- Unpacking liblzo2-2:amd64 (2.08-1.2+b2) ...
- Selecting previously unselected package libcairo-script-interpreter2:amd64.
- Preparing to unpack .../132-libcairo-script-interpreter2_1.14.8-1_amd64.deb ...
- Unpacking libcairo-script-interpreter2:amd64 (1.14.8-1) ...
- Selecting previously unselected package libfontconfig1-dev:amd64.
- Preparing to unpack .../133-libfontconfig1-dev_2.11.0-6.7+b1_amd64.deb ...
- Unpacking libfontconfig1-dev:amd64 (2.11.0-6.7+b1) ...
- Selecting previously unselected package x11proto-render-dev.
- Preparing to unpack .../134-x11proto-render-dev_2%3a0.11.1-2_all.deb ...
- Unpacking x11proto-render-dev (2:0.11.1-2) ...
- Selecting previously unselected package libxrender-dev:amd64.
- Preparing to unpack .../135-libxrender-dev_1%3a0.9.10-1_amd64.deb ...
- Unpacking libxrender-dev:amd64 (1:0.9.10-1) ...
- Selecting previously unselected package x11proto-xext-dev.
- Preparing to unpack .../136-x11proto-xext-dev_7.3.0-1_all.deb ...
- Unpacking x11proto-xext-dev (7.3.0-1) ...
- Selecting previously unselected package libxext-dev:amd64.
- Preparing to unpack .../137-libxext-dev_2%3a1.3.3-1+b2_amd64.deb ...
- Unpacking libxext-dev:amd64 (2:1.3.3-1+b2) ...
- Selecting previously unselected package x11-common.
- Preparing to unpack .../138-x11-common_1%3a7.7+19_all.deb ...
- Unpacking x11-common (1:7.7+19) ...
- Selecting previously unselected package libice6:amd64.
- Preparing to unpack .../139-libice6_2%3a1.0.9-2_amd64.deb ...
- Unpacking libice6:amd64 (2:1.0.9-2) ...
- Selecting previously unselected package libsm6:amd64.
- Preparing to unpack .../140-libsm6_2%3a1.2.2-1+b3_amd64.deb ...
- Unpacking libsm6:amd64 (2:1.2.2-1+b3) ...
- Selecting previously unselected package libice-dev:amd64.
- Preparing to unpack .../141-libice-dev_2%3a1.0.9-2_amd64.deb ...
- Unpacking libice-dev:amd64 (2:1.0.9-2) ...
- Selecting previously unselected package libsm-dev:amd64.
- Preparing to unpack .../142-libsm-dev_2%3a1.2.2-1+b3_amd64.deb ...
- Unpacking libsm-dev:amd64 (2:1.2.2-1+b3) ...
- Selecting previously unselected package libpixman-1-dev.
- Preparing to unpack .../143-libpixman-1-dev_0.34.0-1_amd64.deb ...
- Unpacking libpixman-1-dev (0.34.0-1) ...
- Selecting previously unselected package libxcb-render0-dev:amd64.
- Preparing to unpack .../144-libxcb-render0-dev_1.12-1_amd64.deb ...
- Unpacking libxcb-render0-dev:amd64 (1.12-1) ...
- Selecting previously unselected package libxcb-shm0-dev:amd64.
- Preparing to unpack .../145-libxcb-shm0-dev_1.12-1_amd64.deb ...
- Unpacking libxcb-shm0-dev:amd64 (1.12-1) ...
- Selecting previously unselected package libcairo2-dev.
- Preparing to unpack .../146-libcairo2-dev_1.14.8-1_amd64.deb ...
- Unpacking libcairo2-dev (1.14.8-1) ...
- Selecting previously unselected package librsvg2-dev:amd64.
- Preparing to unpack .../147-librsvg2-dev_2.40.16-1+b1_amd64.deb ...
- Unpacking librsvg2-dev:amd64 (2.40.16-1+b1) ...
- Selecting previously unselected package libjbig-dev:amd64.
- Preparing to unpack .../148-libjbig-dev_2.1-3.1+b2_amd64.deb ...
- Unpacking libjbig-dev:amd64 (2.1-3.1+b2) ...
- Selecting previously unselected package liblzma-dev:amd64.
- Preparing to unpack .../149-liblzma-dev_5.2.2-1.2+b1_amd64.deb ...
- Unpacking liblzma-dev:amd64 (5.2.2-1.2+b1) ...
- Selecting previously unselected package libtiffxx5:amd64.
- Preparing to unpack .../150-libtiffxx5_4.0.8-2+deb9u4_amd64.deb ...
- Unpacking libtiffxx5:amd64 (4.0.8-2+deb9u4) ...
- Selecting previously unselected package libtiff5-dev:amd64.
- Preparing to unpack .../151-libtiff5-dev_4.0.8-2+deb9u4_amd64.deb ...
- Unpacking libtiff5-dev:amd64 (4.0.8-2+deb9u4) ...
- Selecting previously unselected package libwmf-dev.
- Preparing to unpack .../152-libwmf-dev_0.2.8.4-10.6_amd64.deb ...
- Unpacking libwmf-dev (0.2.8.4-10.6) ...
- Preparing to unpack .../153-libicu57_57.1-6+deb9u3_amd64.deb ...
- Unpacking libicu57:amd64 (57.1-6+deb9u3) over (57.1-6+deb9u2) ...
- Selecting previously unselected package icu-devtools.
- Preparing to unpack .../154-icu-devtools_57.1-6+deb9u3_amd64.deb ...
- Unpacking icu-devtools (57.1-6+deb9u3) ...
- Selecting previously unselected package libicu-dev.
- Preparing to unpack .../155-libicu-dev_57.1-6+deb9u3_amd64.deb ...
- Unpacking libicu-dev (57.1-6+deb9u3) ...
- Selecting previously unselected package libxml2-dev:amd64.
- Preparing to unpack .../156-libxml2-dev_2.9.4+dfsg1-2.2+deb9u2_amd64.deb ...
- Unpacking libxml2-dev:amd64 (2.9.4+dfsg1-2.2+deb9u2) ...
- Selecting previously unselected package libxt6:amd64.
- Preparing to unpack .../157-libxt6_1%3a1.1.5-1_amd64.deb ...
- Unpacking libxt6:amd64 (1:1.1.5-1) ...
- Selecting previously unselected package libxt-dev:amd64.
- Preparing to unpack .../158-libxt-dev_1%3a1.1.5-1_amd64.deb ...
- Unpacking libxt-dev:amd64 (1:1.1.5-1) ...
- Selecting previously unselected package libmagickcore-6.q16-dev:amd64.
- Preparing to unpack .../159-libmagickcore-6.q16-dev_8%3a6.9.7.4+dfsg-11+deb9u7_amd64.deb ...
- Unpacking libmagickcore-6.q16-dev:amd64 (8:6.9.7.4+dfsg-11+deb9u7) ...
- Selecting previously unselected package libmagickwand-6.q16-dev:amd64.
- Preparing to unpack .../160-libmagickwand-6.q16-dev_8%3a6.9.7.4+dfsg-11+deb9u7_amd64.deb ...
- Unpacking libmagickwand-6.q16-dev:amd64 (8:6.9.7.4+dfsg-11+deb9u7) ...
- Selecting previously unselected package libmagickwand-dev.
- Preparing to unpack .../161-libmagickwand-dev_8%3a6.9.7.4+dfsg-11+deb9u7_all.deb ...
- Unpacking libmagickwand-dev (8:6.9.7.4+dfsg-11+deb9u7) ...
- Selecting previously unselected package poppler-data.
- Preparing to unpack .../162-poppler-data_0.4.7-8_all.deb ...
- Unpacking poppler-data (0.4.7-8) ...
- Selecting previously unselected package libpopt0:amd64.
- Preparing to unpack .../163-libpopt0_1.16-10+b2_amd64.deb ...
- Unpacking libpopt0:amd64 (1.16-10+b2) ...
- Selecting previously unselected package libapparmor1:amd64.
- Preparing to unpack .../164-libapparmor1_2.11.0-3+deb9u2_amd64.deb ...
- Unpacking libapparmor1:amd64 (2.11.0-3+deb9u2) ...
- Selecting previously unselected package dbus.
- Preparing to unpack .../165-dbus_1.10.28-0+deb9u1_amd64.deb ...
- Unpacking dbus (1.10.28-0+deb9u1) ...
- Selecting previously unselected package less.
- Preparing to unpack .../166-less_481-2.1_amd64.deb ...
- Unpacking less (481-2.1) ...
- Selecting previously unselected package openssh-client.
- Preparing to unpack .../167-openssh-client_1%3a7.4p1-10+deb9u7_amd64.deb ...
- Unpacking openssh-client (1:7.4p1-10+deb9u7) ...
- Selecting previously unselected package autotools-dev.
- Preparing to unpack .../168-autotools-dev_20161112.1_all.deb ...
- Unpacking autotools-dev (20161112.1) ...
- Selecting previously unselected package bzip2-doc.
- Preparing to unpack .../169-bzip2-doc_1.0.6-8.1_all.deb ...
- Unpacking bzip2-doc (1.0.6-8.1) ...
- Selecting previously unselected package mysql-common.
- Preparing to unpack .../170-mysql-common_5.8+1.0.2_all.deb ...
- Unpacking mysql-common (5.8+1.0.2) ...
- Selecting previously unselected package mariadb-common.
- Preparing to unpack .../171-mariadb-common_10.1.41-0+deb9u1_all.deb ...
- Unpacking mariadb-common (10.1.41-0+deb9u1) ...
- Selecting previously unselected package libaio1:amd64.
- Preparing to unpack .../172-libaio1_0.3.110-3_amd64.deb ...
- Unpacking libaio1:amd64 (0.3.110-3) ...
- Selecting previously unselected package libreadline5:amd64.
- Preparing to unpack .../173-libreadline5_5.2+dfsg-3+b1_amd64.deb ...
- Unpacking libreadline5:amd64 (5.2+dfsg-3+b1) ...
- Selecting previously unselected package mariadb-client-core-10.1.
- Preparing to unpack .../174-mariadb-client-core-10.1_10.1.41-0+deb9u1_amd64.deb ...
- Unpacking mariadb-client-core-10.1 (10.1.41-0+deb9u1) ...
- Selecting previously unselected package libconfig-inifiles-perl.
- Preparing to unpack .../175-libconfig-inifiles-perl_2.94-1_all.deb ...
- Unpacking libconfig-inifiles-perl (2.94-1) ...
- Selecting previously unselected package libjemalloc1.
- Preparing to unpack .../176-libjemalloc1_3.6.0-9.1_amd64.deb ...
- Unpacking libjemalloc1 (3.6.0-9.1) ...
- Selecting previously unselected package mariadb-client-10.1.
- Preparing to unpack .../177-mariadb-client-10.1_10.1.41-0+deb9u1_amd64.deb ...
- Unpacking mariadb-client-10.1 (10.1.41-0+deb9u1) ...
- Selecting previously unselected package default-mysql-client.
- Preparing to unpack .../178-default-mysql-client_1.0.2_all.deb ...
- Unpacking default-mysql-client (1.0.2) ...
- Selecting previously unselected package fonts-noto-mono.
- Preparing to unpack .../179-fonts-noto-mono_20161116-1_all.deb ...
- Unpacking fonts-noto-mono (20161116-1) ...
- Selecting previously unselected package libcupsimage2:amd64.
- Preparing to unpack .../180-libcupsimage2_2.2.1-8+deb9u4_amd64.deb ...
- Unpacking libcupsimage2:amd64 (2.2.1-8+deb9u4) ...
- Selecting previously unselected package libijs-0.35:amd64.
- Preparing to unpack .../181-libijs-0.35_0.35-12_amd64.deb ...
- Unpacking libijs-0.35:amd64 (0.35-12) ...
- Selecting previously unselected package libjbig2dec0:amd64.
- Preparing to unpack .../182-libjbig2dec0_0.13-4.1_amd64.deb ...
- Unpacking libjbig2dec0:amd64 (0.13-4.1) ...
- Selecting previously unselected package libpaper1:amd64.
- Preparing to unpack .../183-libpaper1_1.1.24+nmu5_amd64.deb ...
- Unpacking libpaper1:amd64 (1.1.24+nmu5) ...
- Selecting previously unselected package libgs9-common.
- Preparing to unpack .../184-libgs9-common_9.26a~dfsg-0+deb9u6_all.deb ...
- Unpacking libgs9-common (9.26a~dfsg-0+deb9u6) ...
- Selecting previously unselected package libgs9:amd64.
- Preparing to unpack .../185-libgs9_9.26a~dfsg-0+deb9u6_amd64.deb ...
- Unpacking libgs9:amd64 (9.26a~dfsg-0+deb9u6) ...
- Selecting previously unselected package ghostscript.
- Preparing to unpack .../186-ghostscript_9.26a~dfsg-0+deb9u6_amd64.deb ...
- Unpacking ghostscript (9.26a~dfsg-0+deb9u6) ...
- Selecting previously unselected package gsfonts.
- Preparing to unpack .../187-gsfonts_1%3a8.11+urwcyr1.0.7~pre44-4.3_all.deb ...
- Unpacking gsfonts (1:8.11+urwcyr1.0.7~pre44-4.3) ...
- Selecting previously unselected package imagemagick-6.q16.
- Preparing to unpack .../188-imagemagick-6.q16_8%3a6.9.7.4+dfsg-11+deb9u7_amd64.deb ...
- Unpacking imagemagick-6.q16 (8:6.9.7.4+dfsg-11+deb9u7) ...
- Selecting previously unselected package imagemagick.
- Preparing to unpack .../189-imagemagick_8%3a6.9.7.4+dfsg-11+deb9u7_amd64.deb ...
- Unpacking imagemagick (8:6.9.7.4+dfsg-11+deb9u7) ...
- Selecting previously unselected package javascript-common.
- Preparing to unpack .../190-javascript-common_11_all.deb ...
- Unpacking javascript-common (11) ...
- Selecting previously unselected package libonig4:amd64.
- Preparing to unpack .../191-libonig4_6.1.3-2_amd64.deb ...
- Unpacking libonig4:amd64 (6.1.3-2) ...
- Selecting previously unselected package libjq1:amd64.
- Preparing to unpack .../192-libjq1_1.5+dfsg-1.3_amd64.deb ...
- Unpacking libjq1:amd64 (1.5+dfsg-1.3) ...
- Selecting previously unselected package jq.
- Preparing to unpack .../193-jq_1.5+dfsg-1.3_amd64.deb ...
- Unpacking jq (1.5+dfsg-1.3) ...
- Selecting previously unselected package libcupsfilters1:amd64.
- Preparing to unpack .../194-libcupsfilters1_1.11.6-3+deb9u1_amd64.deb ...
- Unpacking libcupsfilters1:amd64 (1.11.6-3+deb9u1) ...
- Selecting previously unselected package libdbi-perl.
- Preparing to unpack .../195-libdbi-perl_1.636-1+b1_amd64.deb ...
- Unpacking libdbi-perl (1.636-1+b1) ...
- Selecting previously unselected package libmariadbclient18:amd64.
- Preparing to unpack .../196-libmariadbclient18_10.1.41-0+deb9u1_amd64.deb ...
- Unpacking libmariadbclient18:amd64 (10.1.41-0+deb9u1) ...
- Selecting previously unselected package libdbd-mysql-perl.
- Preparing to unpack .../197-libdbd-mysql-perl_4.041-2_amd64.deb ...
- Unpacking libdbd-mysql-perl (4.041-2) ...
- Selecting previously unselected package libgail18:amd64.
- Preparing to unpack .../198-libgail18_2.24.31-2_amd64.deb ...
- Unpacking libgail18:amd64 (2.24.31-2) ...
- Selecting previously unselected package libgail-common:amd64.
- Preparing to unpack .../199-libgail-common_2.24.31-2_amd64.deb ...
- Unpacking libgail-common:amd64 (2.24.31-2) ...
- Selecting previously unselected package libgtk2.0-bin.
- Preparing to unpack .../200-libgtk2.0-bin_2.24.31-2_amd64.deb ...
- Unpacking libgtk2.0-bin (2.24.31-2) ...
- Selecting previously unselected package libgts-bin.
- Preparing to unpack .../201-libgts-bin_0.7.6+darcs121130-4_amd64.deb ...
- Unpacking libgts-bin (0.7.6+darcs121130-4) ...
- Selecting previously unselected package libjxr0:amd64.
- Preparing to unpack .../202-libjxr0_1.1-6+b1_amd64.deb ...
- Unpacking libjxr0:amd64 (1.1-6+b1) ...
- Selecting previously unselected package libjxr-tools.
- Preparing to unpack .../203-libjxr-tools_1.1-6+b1_amd64.deb ...
- Unpacking libjxr-tools (1.1-6+b1) ...
- Selecting previously unselected package libmcrypt4.
- Preparing to unpack .../204-libmcrypt4_2.5.8-3.3_amd64.deb ...
- Unpacking libmcrypt4 (2.5.8-3.3) ...
- Selecting previously unselected package libmcrypt-dev.
- Preparing to unpack .../205-libmcrypt-dev_2.5.8-3.3_amd64.deb ...
- Unpacking libmcrypt-dev (2.5.8-3.3) ...
- Selecting previously unselected package libnetpbm10.
- Preparing to unpack .../206-libnetpbm10_2%3a10.0-15.3+b2_amd64.deb ...
- Unpacking libnetpbm10 (2:10.0-15.3+b2) ...
- Selecting previously unselected package libpaper-utils.
- Preparing to unpack .../207-libpaper-utils_1.1.24+nmu5_amd64.deb ...
- Unpacking libpaper-utils (1.1.24+nmu5) ...
- Selecting previously unselected package libpng-tools.
- Preparing to unpack .../208-libpng-tools_1.6.28-1+deb9u1_amd64.deb ...
- Unpacking libpng-tools (1.6.28-1+deb9u1) ...
- Selecting previously unselected package libterm-readkey-perl.
- Preparing to unpack .../209-libterm-readkey-perl_2.37-1_amd64.deb ...
- Unpacking libterm-readkey-perl (2.37-1) ...
- Selecting previously unselected package libtool.
- Preparing to unpack .../210-libtool_2.4.6-2_all.deb ...
- Unpacking libtool (2.4.6-2) ...
- Selecting previously unselected package libx11-doc.
- Preparing to unpack .../211-libx11-doc_2%3a1.6.4-3+deb9u1_all.deb ...
- Unpacking libx11-doc (2:1.6.4-3+deb9u1) ...
- Selecting previously unselected package libxmuu1:amd64.
- Preparing to unpack .../212-libxmuu1_2%3a1.1.2-2_amd64.deb ...
- Unpacking libxmuu1:amd64 (2:1.1.2-2) ...
- Selecting previously unselected package mysql-client.
- Preparing to unpack .../213-mysql-client_5.5.9999+default_amd64.deb ...
- Unpacking mysql-client (5.5.9999+default) ...
- Selecting previously unselected package netpbm.
- Preparing to unpack .../214-netpbm_2%3a10.0-15.3+b2_amd64.deb ...
- Unpacking netpbm (2:10.0-15.3+b2) ...
- Selecting previously unselected package nodejs.
- Preparing to unpack .../215-nodejs_11.15.0-1nodesource1_amd64.deb ...
- Unpacking nodejs (11.15.0-1nodesource1) ...
- Selecting previously unselected package psmisc.
- Preparing to unpack .../216-psmisc_22.21-2.1+b2_amd64.deb ...
- Unpacking psmisc (22.21-2.1+b2) ...
- Selecting previously unselected package rsync.
- Preparing to unpack .../217-rsync_3.1.2-1+deb9u2_amd64.deb ...
- Unpacking rsync (3.1.2-1+deb9u2) ...
- Selecting previously unselected package unzip.
- Preparing to unpack .../218-unzip_6.0-21+deb9u2_amd64.deb ...
- Unpacking unzip (6.0-21+deb9u2) ...
- Selecting previously unselected package xauth.
- Preparing to unpack .../219-xauth_1%3a1.0.9-1+b2_amd64.deb ...
- Unpacking xauth (1:1.0.9-1+b2) ...
- Selecting previously unselected package zip.
- Preparing to unpack .../220-zip_3.0-11+b1_amd64.deb ...
- Unpacking zip (3.0-11+b1) ...
- Setting up libgs9-common (9.26a~dfsg-0+deb9u6) ...
- Setting up libjs-jquery (3.1.1-2+deb9u1) ...
- Setting up imagemagick-6-common (8:6.9.7.4+dfsg-11+deb9u7) ...
- Setting up git-man (1:2.11.0-3+deb9u5) ...
- Setting up libpopt0:amd64 (1.16-10+b2) ...
- Setting up libpathplan4 (2.38.0-17) ...
- Setting up fonts-droid-fallback (1:6.0.1r16-1.1) ...
- Setting up less (481-2.1) ...
- Setting up libgtk2.0-common (2.24.31-2) ...
- Setting up libbz2-dev:amd64 (1.0.6-8.1) ...
- Setting up libopenjp2-7:amd64 (2.1.2-1.1+deb9u3) ...
- Setting up libxdot4 (2.38.0-17) ...
- Setting up libconfig-inifiles-perl (2.94-1) ...
- Setting up libjpeg62-turbo:amd64 (1:1.5.1-2) ...
- Setting up psmisc (22.21-2.1+b2) ...
- Processing triggers for mime-support (3.60) ...
- Setting up gsfonts (1:8.11+urwcyr1.0.7~pre44-4.3) ...
- Setting up libjemalloc1 (3.6.0-9.1) ...
- Setting up libpng16-16:amd64 (1.6.28-1+deb9u1) ...
- Setting up liberror-perl (0.17024-1) ...
- Setting up nodejs (11.15.0-1nodesource1) ...
- Setting up liblcms2-2:amd64 (2.8-4+deb9u1) ...
- Setting up libjbig0:amd64 (2.1-3.1+b2) ...
- Setting up libpthread-stubs0-dev:amd64 (0.3-4) ...
- Setting up fonts-dejavu-core (2.37-1) ...
- Setting up poppler-data (0.4.7-8) ...
- Setting up libdjvulibre-text (3.5.27.1-7) ...
- Setting up libpng-tools (1.6.28-1+deb9u1) ...
- Setting up libelf1:amd64 (0.168-1) ...
- Setting up libglib2.0-0:amd64 (2.50.3-2+deb9u1) ...
- No schema files found: doing nothing.
- Setting up mysql-common (5.8+1.0.2) ...
- update-alternatives: using /etc/mysql/my.cnf.fallback to provide /etc/mysql/my.cnf (my.cnf) in auto mode
- Setting up libnetpbm10 (2:10.0-15.3+b2) ...
- Setting up xorg-sgml-doctools (1:1.11-1) ...
- Setting up libonig4:amd64 (6.1.3-2) ...
- Setting up libmagickcore-6-arch-config:amd64 (8:6.9.7.4+dfsg-11+deb9u7) ...
- Setting up unzip (6.0-21+deb9u2) ...
- Setting up libgdk-pixbuf2.0-common (2.36.5-2+deb9u2) ...
- Setting up libopenjp2-7-dev (2.1.2-1.1+deb9u3) ...
- Setting up libdatrie1:amd64 (0.2.10-4+b1) ...
- Setting up libtiff5:amd64 (4.0.8-2+deb9u4) ...
- Setting up x11proto-kb-dev (1.0.7-1) ...
- Setting up libmariadbclient18:amd64 (10.1.41-0+deb9u1) ...
- Setting up libfftw3-double3:amd64 (3.3.5-3) ...
- Setting up libicu57:amd64 (57.1-6+deb9u3) ...
- Setting up ucf (3.0036) ...
- Setting up libgirepository-1.0-1:amd64 (1.50.0-1+b1) ...
- Setting up zip (3.0-11+b1) ...
- Setting up libjxr0:amd64 (1.1-6+b1) ...
- Setting up libterm-readkey-perl (2.37-1) ...
- Setting up libfreetype6:amd64 (2.6.3-3.2) ...
- Setting up fonts-noto-mono (20161116-1) ...
- Setting up libgraphite2-3:amd64 (1.3.10-1) ...
- Setting up rsync (3.1.2-1+deb9u2) ...
- invoke-rc.d: could not determine current runlevel
- invoke-rc.d: policy-rc.d denied execution of restart.
- Setting up libjbig-dev:amd64 (2.1-3.1+b2) ...
- Setting up libcroco3:amd64 (0.6.11-3) ...
- Setting up libjq1:amd64 (1.5+dfsg-1.3) ...
- Setting up libilmbase12:amd64 (2.2.0-12) ...
- Setting up libatk1.0-data (2.22.0-1) ...
- Setting up liblqr-1-0:amd64 (0.4.2-2+b2) ...
- Setting up libjbig2dec0:amd64 (0.13-4.1) ...
- Setting up libpixman-1-0:amd64 (0.34.0-1) ...
- Setting up xtrans-dev (1.3.5-1) ...
- Setting up gir1.2-glib-2.0:amd64 (1.50.0-1+b1) ...
- Setting up libglib2.0-data (2.50.3-2+deb9u1) ...
- Processing triggers for libc-bin (2.24-11+deb9u4) ...
- Setting up libaio1:amd64 (0.3.110-3) ...
- Setting up autotools-dev (20161112.1) ...
- Setting up bzip2-doc (1.0.6-8.1) ...
- Setting up libapparmor1:amd64 (2.11.0-3+deb9u2) ...
- Setting up libpixman-1-dev (0.34.0-1) ...
- Setting up libatk1.0-0:amd64 (2.22.0-1) ...
- Setting up libltdl7:amd64 (2.4.6-2) ...
- Setting up libijs-0.35:amd64 (0.35-12) ...
- Setting up netpbm (2:10.0-15.3+b2) ...
- Setting up libtiffxx5:amd64 (4.0.8-2+deb9u4) ...
- Setting up libexpat1-dev:amd64 (2.2.0-2+deb9u3) ...
- Setting up libx11-doc (2:1.6.4-3+deb9u1) ...
- Setting up libmagickcore-6-headers (8:6.9.7.4+dfsg-11+deb9u7) ...
- Setting up shared-mime-info (1.8-1+deb9u1) ...
- Setting up libpcrecpp0v5:amd64 (2:8.39-3) ...
- Setting up libpcre32-3:amd64 (2:8.39-3) ...
- Setting up icu-devtools (57.1-6+deb9u3) ...
- Setting up libpcre16-3:amd64 (2:8.39-3) ...
- Setting up libthai-data (0.1.26-1) ...
- Setting up libjpeg62-turbo-dev:amd64 (1:1.5.1-2) ...
- Setting up liblzma-dev:amd64 (5.2.2-1.2+b1) ...
- Setting up libxdmcp6:amd64 (1:1.1.2-3) ...
- Setting up javascript-common (11) ...
- Setting up libreadline5:amd64 (5.2+dfsg-3+b1) ...
- Setting up x11-common (1:7.7+19) ...
- update-rc.d: warning: start and stop actions are no longer supported; falling back to defaults
- invoke-rc.d: could not determine current runlevel
- invoke-rc.d: policy-rc.d denied execution of start.
- Setting up openssh-client (1:7.4p1-10+deb9u7) ...
- Setting up hicolor-icon-theme (0.15-1) ...
- Setting up libglib2.0-bin (2.50.3-2+deb9u1) ...
- Setting up libexif12:amd64 (0.6.21-2+b2) ...
- Setting up libmcrypt4 (2.5.8-3.3) ...
- Setting up libcdt5 (2.38.0-17) ...
- Setting up libdbi-perl (1.636-1+b1) ...
- Setting up git (1:2.11.0-3+deb9u5) ...
- Setting up libx11-data (2:1.6.4-3+deb9u1) ...
- Setting up libpython2.7-stdlib:amd64 (2.7.13-2+deb9u3) ...
- Setting up libxau6:amd64 (1:1.0.8-1) ...
- Setting up libdbus-1-3:amd64 (1.10.28-0+deb9u1) ...
- Setting up liblzo2-2:amd64 (2.08-1.2+b2) ...
- Setting up libavahi-common-data:amd64 (0.6.32-2) ...
- Setting up libcgraph6 (2.38.0-17) ...
- Setting up libwebp6:amd64 (0.5.2-1) ...
- Setting up zlib1g-dev:amd64 (1:1.2.8.dfsg-5) ...
- Setting up libtool (2.4.6-2) ...
- Setting up mariadb-common (10.1.41-0+deb9u1) ...
- update-alternatives: using /etc/mysql/mariadb.cnf to provide /etc/mysql/my.cnf (my.cnf) in auto mode
- Setting up libpaper1:amd64 (1.1.24+nmu5) ...
- Creating config file /etc/papersize with new version
- Setting up libgts-0.7-5:amd64 (0.7.6+darcs121130-4) ...
- Setting up libpaper-utils (1.1.24+nmu5) ...
- Setting up jq (1.5+dfsg-1.3) ...
- Setting up libpcre3-dev:amd64 (2:8.39-3) ...
- Setting up fontconfig-config (2.11.0-6.7) ...
- Setting up x11proto-core-dev (7.0.31-1) ...
- Setting up liblqr-1-0-dev (0.4.2-2+b2) ...
- Setting up liblcms2-dev:amd64 (2.8-4+deb9u1) ...
- Setting up libltdl-dev:amd64 (2.4.6-2) ...
- Setting up libilmbase-dev (2.2.0-12) ...
- Setting up libdjvulibre21:amd64 (3.5.27.1-7) ...
- Setting up libmagickwand-6-headers (8:6.9.7.4+dfsg-11+deb9u7) ...
- Setting up libgvpr2 (2.38.0-17) ...
- Setting up mariadb-client-core-10.1 (10.1.41-0+deb9u1) ...
- Setting up libdjvulibre-dev:amd64 (3.5.27.1-7) ...
- Setting up libtiff5-dev:amd64 (4.0.8-2+deb9u4) ...
- Setting up libjxr-tools (1.1-6+b1) ...
- Setting up python2.7 (2.7.13-2+deb9u3) ...
- Setting up libharfbuzz0b:amd64 (1.4.2-1) ...
- Setting up libxau-dev:amd64 (1:1.0.8-1) ...
- Setting up libthai0:amd64 (0.1.26-1) ...
- Setting up libicu-dev (57.1-6+deb9u3) ...
- Setting up libopenexr22:amd64 (2.2.0-11+b1) ...
- Setting up libglib2.0-dev (2.50.3-2+deb9u1) ...
- Setting up libxml2-dev:amd64 (2.9.4+dfsg1-2.2+deb9u2) ...
- Setting up libpython-stdlib:amd64 (2.7.13-2) ...
- Setting up libxdmcp-dev:amd64 (1:1.1.2-3) ...
- Setting up libjpeg-dev (1:1.5.1-2) ...
- Setting up libexif-dev (0.6.21-2+b2) ...
- Setting up libice6:amd64 (2:1.0.9-2) ...
- Setting up libmcrypt-dev (2.5.8-3.3) ...
- Setting up libopenexr-dev (2.2.0-11+b1) ...
- Setting up libavahi-common3:amd64 (0.6.32-2) ...
- Setting up libgts-bin (0.7.6+darcs121130-4) ...
- Setting up libpng-dev:amd64 (1.6.28-1+deb9u1) ...
- Setting up x11proto-render-dev (2:0.11.1-2) ...
- Setting up dbus (1.10.28-0+deb9u1) ...
- invoke-rc.d: could not determine current runlevel
- invoke-rc.d: policy-rc.d denied execution of start.
- Setting up libdbd-mysql-perl (4.041-2) ...
- Setting up libxcb1:amd64 (1.12-1) ...
- Setting up x11proto-input-dev (2.3.2-1) ...
- Setting up python (2.7.13-2) ...
- Setting up libfontconfig1:amd64 (2.11.0-6.7+b1) ...
- Setting up libsm6:amd64 (2:1.2.2-1+b3) ...
- Setting up mariadb-client-10.1 (10.1.41-0+deb9u1) ...
- Setting up libxcb-render0:amd64 (1.12-1) ...
- Setting up libx11-6:amd64 (2:1.6.4-3+deb9u1) ...
- Setting up libxmuu1:amd64 (2:1.1.2-2) ...
- Setting up x11proto-xext-dev (7.3.0-1) ...
- Setting up libfreetype6-dev (2.6.3-3.2) ...
- Setting up libice-dev:amd64 (2:1.0.9-2) ...
- Setting up libxcomposite1:amd64 (1:0.4.4-2) ...
- Setting up libxcb-shm0:amd64 (1.12-1) ...
- Setting up libxpm4:amd64 (1:3.5.12-1) ...
- Setting up libxt6:amd64 (1:1.1.5-1) ...
- Setting up libxrender1:amd64 (1:0.9.10-1) ...
- Setting up libxcb1-dev:amd64 (1.12-1) ...
- Setting up libavahi-client3:amd64 (0.6.32-2) ...
- Setting up libx11-dev:amd64 (2:1.6.4-3+deb9u1) ...
- Setting up default-mysql-client (1.0.2) ...
- Setting up fontconfig (2.11.0-6.7+b1) ...
- Regenerating fonts cache... done.
- Setting up libcups2:amd64 (2.2.1-8+deb9u4) ...
- Setting up libfontconfig1-dev:amd64 (2.11.0-6.7+b1) ...
- Setting up libsm-dev:amd64 (2:1.2.2-1+b3) ...
- Setting up libxext6:amd64 (2:1.3.3-1+b2) ...
- Setting up libxfixes3:amd64 (1:5.0.3-1) ...
- Setting up libgdk-pixbuf2.0-0:amd64 (2.36.5-2+deb9u2) ...
- Setting up libxcb-shm0-dev:amd64 (1.12-1) ...
- Setting up libgd3:amd64 (2.2.4-2+deb9u5) ...
- Setting up mysql-client (5.5.9999+default) ...
- Setting up gir1.2-gdkpixbuf-2.0:amd64 (2.36.5-2+deb9u2) ...
- Setting up libxrender-dev:amd64 (1:0.9.10-1) ...
- Setting up xauth (1:1.0.9-1+b2) ...
- Setting up libxcb-render0-dev:amd64 (1.12-1) ...
- Setting up libcupsimage2:amd64 (2.2.1-8+deb9u4) ...
- Setting up gtk-update-icon-cache (3.22.11-1) ...
- Setting up libgdk-pixbuf2.0-dev (2.36.5-2+deb9u2) ...
- Setting up libxcursor1:amd64 (1:1.1.14-1+deb9u2) ...
- Setting up libxext-dev:amd64 (2:1.3.3-1+b2) ...
- Setting up libpango-1.0-0:amd64 (1.40.5-1) ...
- Setting up libgs9:amd64 (9.26a~dfsg-0+deb9u6) ...
- Setting up libwmf0.2-7:amd64 (0.2.8.4-10.6) ...
- Setting up libxrandr2:amd64 (2:1.5.1-1) ...
- Setting up libxi6:amd64 (2:1.7.9-1) ...
- Setting up libwmf-dev (0.2.8.4-10.6) ...
- Setting up libcairo2:amd64 (1.14.8-1) ...
- Setting up libxinerama1:amd64 (2:1.1.3-1+b3) ...
- Setting up libxt-dev:amd64 (1:1.1.5-1) ...
- Setting up libmagickcore-6.q16-3:amd64 (8:6.9.7.4+dfsg-11+deb9u7) ...
- Setting up libxdamage1:amd64 (1:1.1.4-2+b3) ...
- Setting up libcairo-script-interpreter2:amd64 (1.14.8-1) ...
- Setting up libcairo-gobject2:amd64 (1.14.8-1) ...
- Setting up ghostscript (9.26a~dfsg-0+deb9u6) ...
- Setting up libpangoft2-1.0-0:amd64 (1.40.5-1) ...
- Setting up libcupsfilters1:amd64 (1.11.6-3+deb9u1) ...
- Setting up libmagickwand-6.q16-3:amd64 (8:6.9.7.4+dfsg-11+deb9u7) ...
- Setting up libcairo2-dev (1.14.8-1) ...
- Setting up gir1.2-freedesktop:amd64 (1.50.0-1+b1) ...
- Setting up imagemagick-6.q16 (8:6.9.7.4+dfsg-11+deb9u7) ...
- update-alternatives: using /usr/bin/compare-im6.q16 to provide /usr/bin/compare (compare) in auto mode
- update-alternatives: warning: skip creation of /usr/share/man/man1/compare.1.gz because associated file /usr/share/man/man1/compare-im6.q16.1.gz (of link group compare) doesn't exist
- update-alternatives: using /usr/bin/compare-im6.q16 to provide /usr/bin/compare-im6 (compare-im6) in auto mode
- update-alternatives: warning: skip creation of /usr/share/man/man1/compare-im6.1.gz because associated file /usr/share/man/man1/compare-im6.q16.1.gz (of link group compare-im6) doesn't exist
- update-alternatives: using /usr/bin/animate-im6.q16 to provide /usr/bin/animate (animate) in auto mode
- update-alternatives: warning: skip creation of /usr/share/man/man1/animate.1.gz because associated file /usr/share/man/man1/animate-im6.q16.1.gz (of link group animate) doesn't exist
- update-alternatives: using /usr/bin/animate-im6.q16 to provide /usr/bin/animate-im6 (animate-im6) in auto mode
- update-alternatives: warning: skip creation of /usr/share/man/man1/animate-im6.1.gz because associated file /usr/share/man/man1/animate-im6.q16.1.gz (of link group animate-im6) doesn't exist
- update-alternatives: using /usr/bin/convert-im6.q16 to provide /usr/bin/convert (convert) in auto mode
- update-alternatives: warning: skip creation of /usr/share/man/man1/convert.1.gz because associated file /usr/share/man/man1/convert-im6.q16.1.gz (of link group convert) doesn't exist
- update-alternatives: using /usr/bin/convert-im6.q16 to provide /usr/bin/convert-im6 (convert-im6) in auto mode
- update-alternatives: warning: skip creation of /usr/share/man/man1/convert-im6.1.gz because associated file /usr/share/man/man1/convert-im6.q16.1.gz (of link group convert-im6) doesn't exist
- update-alternatives: using /usr/bin/composite-im6.q16 to provide /usr/bin/composite (composite) in auto mode
- update-alternatives: warning: skip creation of /usr/share/man/man1/composite.1.gz because associated file /usr/share/man/man1/composite-im6.q16.1.gz (of link group composite) doesn't exist
- update-alternatives: using /usr/bin/composite-im6.q16 to provide /usr/bin/composite-im6 (composite-im6) in auto mode
- update-alternatives: warning: skip creation of /usr/share/man/man1/composite-im6.1.gz because associated file /usr/share/man/man1/composite-im6.q16.1.gz (of link group composite-im6) doesn't exist
- update-alternatives: using /usr/bin/conjure-im6.q16 to provide /usr/bin/conjure (conjure) in auto mode
- update-alternatives: warning: skip creation of /usr/share/man/man1/conjure.1.gz because associated file /usr/share/man/man1/conjure-im6.q16.1.gz (of link group conjure) doesn't exist
- update-alternatives: using /usr/bin/conjure-im6.q16 to provide /usr/bin/conjure-im6 (conjure-im6) in auto mode
- update-alternatives: warning: skip creation of /usr/share/man/man1/conjure-im6.1.gz because associated file /usr/share/man/man1/conjure-im6.q16.1.gz (of link group conjure-im6) doesn't exist
- update-alternatives: using /usr/bin/import-im6.q16 to provide /usr/bin/import (import) in auto mode
- update-alternatives: warning: skip creation of /usr/share/man/man1/import.1.gz because associated file /usr/share/man/man1/import-im6.q16.1.gz (of link group import) doesn't exist
- update-alternatives: using /usr/bin/import-im6.q16 to provide /usr/bin/import-im6 (import-im6) in auto mode
- update-alternatives: warning: skip creation of /usr/share/man/man1/import-im6.1.gz because associated file /usr/share/man/man1/import-im6.q16.1.gz (of link group import-im6) doesn't exist
- update-alternatives: using /usr/bin/identify-im6.q16 to provide /usr/bin/identify (identify) in auto mode
- update-alternatives: warning: skip creation of /usr/share/man/man1/identify.1.gz because associated file /usr/share/man/man1/identify-im6.q16.1.gz (of link group identify) doesn't exist
- update-alternatives: using /usr/bin/identify-im6.q16 to provide /usr/bin/identify-im6 (identify-im6) in auto mode
- update-alternatives: warning: skip creation of /usr/share/man/man1/identify-im6.1.gz because associated file /usr/share/man/man1/identify-im6.q16.1.gz (of link group identify-im6) doesn't exist
- update-alternatives: using /usr/bin/stream-im6.q16 to provide /usr/bin/stream (stream) in auto mode
- update-alternatives: warning: skip creation of /usr/share/man/man1/stream.1.gz because associated file /usr/share/man/man1/stream-im6.q16.1.gz (of link group stream) doesn't exist
- update-alternatives: using /usr/bin/stream-im6.q16 to provide /usr/bin/stream-im6 (stream-im6) in auto mode
- update-alternatives: warning: skip creation of /usr/share/man/man1/stream-im6.1.gz because associated file /usr/share/man/man1/stream-im6.q16.1.gz (of link group stream-im6) doesn't exist
- update-alternatives: using /usr/bin/display-im6.q16 to provide /usr/bin/display (display) in auto mode
- update-alternatives: warning: skip creation of /usr/share/man/man1/display.1.gz because associated file /usr/share/man/man1/display-im6.q16.1.gz (of link group display) doesn't exist
- update-alternatives: using /usr/bin/display-im6.q16 to provide /usr/bin/display-im6 (display-im6) in auto mode
- update-alternatives: warning: skip creation of /usr/share/man/man1/display-im6.1.gz because associated file /usr/share/man/man1/display-im6.q16.1.gz (of link group display-im6) doesn't exist
- update-alternatives: using /usr/bin/montage-im6.q16 to provide /usr/bin/montage (montage) in auto mode
- update-alternatives: warning: skip creation of /usr/share/man/man1/montage.1.gz because associated file /usr/share/man/man1/montage-im6.q16.1.gz (of link group montage) doesn't exist
- update-alternatives: using /usr/bin/montage-im6.q16 to provide /usr/bin/montage-im6 (montage-im6) in auto mode
- update-alternatives: warning: skip creation of /usr/share/man/man1/montage-im6.1.gz because associated file /usr/share/man/man1/montage-im6.q16.1.gz (of link group montage-im6) doesn't exist
- update-alternatives: using /usr/bin/mogrify-im6.q16 to provide /usr/bin/mogrify (mogrify) in auto mode
- update-alternatives: warning: skip creation of /usr/share/man/man1/mogrify.1.gz because associated file /usr/share/man/man1/mogrify-im6.q16.1.gz (of link group mogrify) doesn't exist
- update-alternatives: using /usr/bin/mogrify-im6.q16 to provide /usr/bin/mogrify-im6 (mogrify-im6) in auto mode
- update-alternatives: warning: skip creation of /usr/share/man/man1/mogrify-im6.1.gz because associated file /usr/share/man/man1/mogrify-im6.q16.1.gz (of link group mogrify-im6) doesn't exist
- Setting up libpangocairo-1.0-0:amd64 (1.40.5-1) ...
- Setting up libmagickcore-6.q16-3-extra:amd64 (8:6.9.7.4+dfsg-11+deb9u7) ...
- Setting up imagemagick (8:6.9.7.4+dfsg-11+deb9u7) ...
- Setting up libgvc6 (2.38.0-17) ...
- Setting up librsvg2-2:amd64 (2.40.16-1+b1) ...
- Setting up librsvg2-common:amd64 (2.40.16-1+b1) ...
- Setting up gir1.2-rsvg-2.0:amd64 (2.40.16-1+b1) ...
- Setting up librsvg2-dev:amd64 (2.40.16-1+b1) ...
- Setting up gnome-icon-theme (3.12.0-2) ...
- update-alternatives: using /usr/share/icons/gnome/scalable/places/debian-swirl.svg to provide /usr/share/icons/gnome/scalable/places/start-here.svg (start-here.svg) in auto mode
- Setting up libgtk2.0-0:amd64 (2.24.31-2) ...
- Setting up libgail18:amd64 (2.24.31-2) ...
- Setting up libgail-common:amd64 (2.24.31-2) ...
- Setting up libgvc6-plugins-gtk (2.38.0-17) ...
- Setting up libgraphviz-dev (2.38.0-17) ...
- Setting up libmagickcore-6.q16-dev:amd64 (8:6.9.7.4+dfsg-11+deb9u7) ...
- Setting up libgtk2.0-bin (2.24.31-2) ...
- Setting up libmagickwand-6.q16-dev:amd64 (8:6.9.7.4+dfsg-11+deb9u7) ...
- Setting up libmagickwand-dev (8:6.9.7.4+dfsg-11+deb9u7) ...
- Processing triggers for libc-bin (2.24-11+deb9u4) ...
- Processing triggers for libgdk-pixbuf2.0-0:amd64 (2.36.5-2+deb9u2) ...
- /usr/bin/gulp -> /usr/lib/node_modules/gulp-cli/bin/gulp.js
- /usr/bin/gulp -> /usr/lib/node_modules/gulp/bin/gulp.js
- npm WARN optional SKIPPING OPTIONAL DEPENDENCY: [email protected] (node_modules/gulp/node_modules/fsevents):
- npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for [email protected]: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})
- added 458 packages from 217 contributors in 11.67s
- Removing intermediate container c13e68656d69
- ---> b162dcd44a7d
- Step 5/15 : RUN docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ && docker-php-ext-install -j$(nproc) sockets iconv pdo pdo_mysql gd mysqli opcache intl && printf "\n" | pecl install imagick && docker-php-ext-enable imagick
- ---> Running in 5b3b1b2a038a
- Configuring for:
- PHP Api Version: 20180731
- Zend Module Api No: 20180731
- Zend Extension Api No: 320180731
- checking for grep that handles long lines and -e... /bin/grep
- checking for egrep... /bin/grep -E
- checking for a sed that does not truncate output... /bin/sed
- checking for cc... cc
- checking whether the C compiler works... yes
- checking for C compiler default output file name... a.out
- checking for suffix of executables...
- checking whether we are cross compiling... no
- checking for suffix of object files... o
- checking whether we are using the GNU C compiler... yes
- checking whether cc accepts -g... yes
- checking for cc option to accept ISO C89... none needed
- checking how to run the C preprocessor... cc -E
- checking for icc... no
- checking for suncc... no
- checking whether cc understands -c and -o together... yes
- checking for system library directory... lib
- checking if compiler supports -R... no
- checking if compiler supports -Wl,-rpath,... yes
- checking build system type... x86_64-pc-linux-gnu
- checking host system type... x86_64-pc-linux-gnu
- checking target system type... x86_64-pc-linux-gnu
- checking for PHP prefix... /usr/local
- checking for PHP includes... -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib
- checking for PHP extension directory... /usr/local/lib/php/extensions/no-debug-non-zts-20180731
- checking for PHP installed headers prefix... /usr/local/include/php
- checking if debug is enabled... no
- checking if zts is enabled... no
- checking for re2c... re2c
- checking for re2c version... 0.16 (ok)
- checking for gawk... no
- checking for nawk... nawk
- checking if nawk is broken... no
- checking for GD support... yes, shared
- checking for the location of libwebp... no
- checking for the location of libjpeg... /usr/include/
- checking for the location of libpng... no
- checking for the location of libz... no
- checking for the location of libXpm... no
- checking for FreeType 2... /usr/include/
- checking whether to enable JIS-mapped Japanese font support in GD... no
- If configure fails try --with-webp-dir=<DIR>
- checking for jpeg_read_header in -ljpeg... yes
- checking for png_write_image in -lpng... yes
- If configure fails try --with-xpm-dir=<DIR>
- checking for fabsf... no
- checking for floorf... no
- checking for ld used by cc... /usr/bin/ld
- checking if the linker (/usr/bin/ld) is GNU ld... yes
- checking for /usr/bin/ld option to reload object files... -r
- checking for BSD-compatible nm... /usr/bin/nm -B
- checking whether ln -s works... yes
- checking how to recognize dependent libraries... pass_all
- 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 dlfcn.h usability... yes
- checking dlfcn.h presence... yes
- checking for dlfcn.h... yes
- checking the maximum length of command line arguments... 1572864
- checking command to parse /usr/bin/nm -B output from cc object... ok
- checking for objdir... .libs
- checking for ar... ar
- checking for ranlib... ranlib
- checking for strip... strip
- checking if cc supports -fno-rtti -fno-exceptions... no
- checking for cc option to produce PIC... -fPIC
- checking if cc PIC flag -fPIC works... yes
- checking if cc static flag -static works... yes
- checking if cc supports -c -o file.o... yes
- checking whether the cc 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
- creating libtool
- appending configuration tag "CXX" to libtool
- configure: creating ./config.status
- config.status: creating config.h
- Configuring for:
- PHP Api Version: 20180731
- Zend Module Api No: 20180731
- Zend Extension Api No: 320180731
- checking for grep that handles long lines and -e... /bin/grep
- checking for egrep... /bin/grep -E
- checking for a sed that does not truncate output... /bin/sed
- checking for cc... cc
- checking whether the C compiler works... yes
- checking for C compiler default output file name... a.out
- checking for suffix of executables...
- checking whether we are cross compiling... no
- checking for suffix of object files... o
- checking whether we are using the GNU C compiler... yes
- checking whether cc accepts -g... yes
- checking for cc option to accept ISO C89... none needed
- checking how to run the C preprocessor... cc -E
- checking for icc... no
- checking for suncc... no
- checking whether cc understands -c and -o together... yes
- checking for system library directory... lib
- checking if compiler supports -R... no
- checking if compiler supports -Wl,-rpath,... yes
- checking build system type... x86_64-pc-linux-gnu
- checking host system type... x86_64-pc-linux-gnu
- checking target system type... x86_64-pc-linux-gnu
- checking for PHP prefix... /usr/local
- checking for PHP includes... -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib
- checking for PHP extension directory... /usr/local/lib/php/extensions/no-debug-non-zts-20180731
- checking for PHP installed headers prefix... /usr/local/include/php
- checking if debug is enabled... no
- checking if zts is enabled... no
- checking for re2c... re2c
- checking for re2c version... 0.16 (ok)
- checking for gawk... no
- checking for nawk... nawk
- checking if nawk is broken... no
- checking whether to enable sockets support... yes, shared
- checking for struct cmsghdr... yes
- checking for hstrerror... yes
- checking for socketpair... yes
- checking for if_nametoindex... yes
- checking for if_indextoname... yes
- 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 netdb.h usability... yes
- checking netdb.h presence... yes
- checking for netdb.h... yes
- checking netinet/tcp.h usability... yes
- checking netinet/tcp.h presence... yes
- checking for netinet/tcp.h... yes
- checking sys/un.h usability... yes
- checking sys/un.h presence... yes
- checking for sys/un.h... yes
- checking sys/sockio.h usability... no
- checking sys/sockio.h presence... no
- checking for sys/sockio.h... no
- checking errno.h usability... yes
- checking errno.h presence... yes
- checking for errno.h... yes
- checking for field ss_family in struct sockaddr_storage... yes
- checking if getaddrinfo supports AI_V4MAPPED... yes
- checking if getaddrinfo supports AI_ALL... yes
- checking if getaddrinfo supports AI_IDN... no
- checking for ld used by cc... /usr/bin/ld
- checking if the linker (/usr/bin/ld) is GNU ld... yes
- checking for /usr/bin/ld option to reload object files... -r
- checking for BSD-compatible nm... /usr/bin/nm -B
- checking whether ln -s works... yes
- checking how to recognize dependent libraries... pass_all
- checking dlfcn.h usability... yes
- checking dlfcn.h presence... yes
- checking for dlfcn.h... yes
- checking the maximum length of command line arguments... 1572864
- checking command to parse /usr/bin/nm -B output from cc object... ok
- checking for objdir... .libs
- checking for ar... ar
- checking for ranlib... ranlib
- checking for strip... strip
- checking if cc supports -fno-rtti -fno-exceptions... no
- checking for cc option to produce PIC... -fPIC
- checking if cc PIC flag -fPIC works... yes
- checking if cc static flag -static works... yes
- checking if cc supports -c -o file.o... yes
- checking whether the cc 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
- creating libtool
- appending configuration tag "CXX" to libtool
- configure: creating ./config.status
- config.status: creating config.h
- /bin/bash /usr/src/php/ext/sockets/libtool --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/sockets -DPHP_ATOM_INC -I/usr/src/php/ext/sockets/include -I/usr/src/php/ext/sockets/main -I/usr/src/php/ext/sockets -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/sockets/sockets.c -o sockets.lo
- /bin/bash /usr/src/php/ext/sockets/libtool --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/sockets -DPHP_ATOM_INC -I/usr/src/php/ext/sockets/include -I/usr/src/php/ext/sockets/main -I/usr/src/php/ext/sockets -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/sockets/multicast.c -o multicast.lo
- /bin/bash /usr/src/php/ext/sockets/libtool --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/sockets -DPHP_ATOM_INC -I/usr/src/php/ext/sockets/include -I/usr/src/php/ext/sockets/main -I/usr/src/php/ext/sockets -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/sockets/conversions.c -o conversions.lo
- /bin/bash /usr/src/php/ext/sockets/libtool --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/sockets -DPHP_ATOM_INC -I/usr/src/php/ext/sockets/include -I/usr/src/php/ext/sockets/main -I/usr/src/php/ext/sockets -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/sockets/sockaddr_conv.c -o sockaddr_conv.lo
- /bin/bash /usr/src/php/ext/sockets/libtool --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/sockets -DPHP_ATOM_INC -I/usr/src/php/ext/sockets/include -I/usr/src/php/ext/sockets/main -I/usr/src/php/ext/sockets -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/sockets/sendrecvmsg.c -o sendrecvmsg.lo
- mkdir .libs
- cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/sockets -DPHP_ATOM_INC -I/usr/src/php/ext/sockets/include -I/usr/src/php/ext/sockets/main -I/usr/src/php/ext/sockets -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/sockets/multicast.c -fPIC -DPIC -o .libs/multicast.o
- cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/sockets -DPHP_ATOM_INC -I/usr/src/php/ext/sockets/include -I/usr/src/php/ext/sockets/main -I/usr/src/php/ext/sockets -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/sockets/conversions.c -fPIC -DPIC -o .libs/conversions.o
- cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/sockets -DPHP_ATOM_INC -I/usr/src/php/ext/sockets/include -I/usr/src/php/ext/sockets/main -I/usr/src/php/ext/sockets -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/sockets/sendrecvmsg.c -fPIC -DPIC -o .libs/sendrecvmsg.o
- cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/sockets -DPHP_ATOM_INC -I/usr/src/php/ext/sockets/include -I/usr/src/php/ext/sockets/main -I/usr/src/php/ext/sockets -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/sockets/sockaddr_conv.c -fPIC -DPIC -o .libs/sockaddr_conv.o
- cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/sockets -DPHP_ATOM_INC -I/usr/src/php/ext/sockets/include -I/usr/src/php/ext/sockets/main -I/usr/src/php/ext/sockets -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/sockets/sockets.c -fPIC -DPIC -o .libs/sockets.o
- /bin/bash /usr/src/php/ext/sockets/libtool --mode=link cc -DPHP_ATOM_INC -I/usr/src/php/ext/sockets/include -I/usr/src/php/ext/sockets/main -I/usr/src/php/ext/sockets -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -Wl,-O1 -Wl,--hash-style=both -pie -o sockets.la -export-dynamic -avoid-version -prefer-pic -module -rpath /usr/src/php/ext/sockets/modules sockets.lo multicast.lo conversions.lo sockaddr_conv.lo sendrecvmsg.lo
- cc -shared .libs/sockets.o .libs/multicast.o .libs/conversions.o .libs/sockaddr_conv.o .libs/sendrecvmsg.o -Wl,-O1 -Wl,--hash-style=both -Wl,-soname -Wl,sockets.so -o .libs/sockets.so
- creating sockets.la
- (cd .libs && rm -f sockets.la && ln -s ../sockets.la sockets.la)
- /bin/bash /usr/src/php/ext/sockets/libtool --mode=install cp ./sockets.la /usr/src/php/ext/sockets/modules
- cp ./.libs/sockets.so /usr/src/php/ext/sockets/modules/sockets.so
- cp ./.libs/sockets.lai /usr/src/php/ext/sockets/modules/sockets.la
- PATH="$PATH:/sbin" ldconfig -n /usr/src/php/ext/sockets/modules
- ----------------------------------------------------------------------
- Libraries have been installed in:
- /usr/src/php/ext/sockets/modules
- If you ever happen to want to link against installed libraries
- in a given directory, LIBDIR, you must either use libtool, and
- specify the full pathname of the library, or use the `-LLIBDIR'
- flag during linking and do at least one of the following:
- - add LIBDIR to the `LD_LIBRARY_PATH' environment variable
- during execution
- - add LIBDIR to the `LD_RUN_PATH' environment variable
- during linking
- - use the `-Wl,--rpath -Wl,LIBDIR' linker flag
- - have your system administrator add LIBDIR to `/etc/ld.so.conf'
- See any operating system documentation about shared libraries for
- more information, such as the ld(1) and ld.so(8) manual pages.
- ----------------------------------------------------------------------
- Build complete.
- Don't forget to run 'make test'.
- Installing shared extensions: /usr/local/lib/php/extensions/no-debug-non-zts-20180731/
- Installing header files: /usr/local/include/php/
- find . -name \*.gcno -o -name \*.gcda | xargs rm -f
- find . -name \*.lo -o -name \*.o | xargs rm -f
- find . -name \*.la -o -name \*.a | xargs rm -f
- find . -name \*.so | xargs rm -f
- find . -name .libs -a -type d|xargs rm -rf
- rm -f libphp.la modules/* libs/*
- Configuring for:
- PHP Api Version: 20180731
- Zend Module Api No: 20180731
- Zend Extension Api No: 320180731
- checking for grep that handles long lines and -e... /bin/grep
- checking for egrep... /bin/grep -E
- checking for a sed that does not truncate output... /bin/sed
- checking for cc... cc
- checking whether the C compiler works... yes
- checking for C compiler default output file name... a.out
- checking for suffix of executables...
- checking whether we are cross compiling... no
- checking for suffix of object files... o
- checking whether we are using the GNU C compiler... yes
- checking whether cc accepts -g... yes
- checking for cc option to accept ISO C89... none needed
- checking how to run the C preprocessor... cc -E
- checking for icc... no
- checking for suncc... no
- checking whether cc understands -c and -o together... yes
- checking for system library directory... lib
- checking if compiler supports -R... no
- checking if compiler supports -Wl,-rpath,... yes
- checking build system type... x86_64-pc-linux-gnu
- checking host system type... x86_64-pc-linux-gnu
- checking target system type... x86_64-pc-linux-gnu
- checking for PHP prefix... /usr/local
- checking for PHP includes... -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib
- checking for PHP extension directory... /usr/local/lib/php/extensions/no-debug-non-zts-20180731
- checking for PHP installed headers prefix... /usr/local/include/php
- checking if debug is enabled... no
- checking if zts is enabled... no
- checking for re2c... re2c
- checking for re2c version... 0.16 (ok)
- checking for gawk... no
- checking for nawk... nawk
- checking if nawk is broken... no
- checking for iconv support... yes, shared
- checking for iconv... yes
- checking if iconv is glibc's... yes
- checking if iconv supports errno... yes
- checking if iconv supports //IGNORE... no
- checking if your cpp allows macro usage in include lines... yes
- checking for ld used by cc... /usr/bin/ld
- checking if the linker (/usr/bin/ld) is GNU ld... yes
- checking for /usr/bin/ld option to reload object files... -r
- checking for BSD-compatible nm... /usr/bin/nm -B
- checking whether ln -s works... yes
- checking how to recognize dependent libraries... pass_all
- 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 dlfcn.h usability... yes
- checking dlfcn.h presence... yes
- checking for dlfcn.h... yes
- checking the maximum length of command line arguments... 1572864
- checking command to parse /usr/bin/nm -B output from cc object... ok
- checking for objdir... .libs
- checking for ar... ar
- checking for ranlib... ranlib
- checking for strip... strip
- checking if cc supports -fno-rtti -fno-exceptions... no
- checking for cc option to produce PIC... -fPIC
- checking if cc PIC flag -fPIC works... yes
- checking if cc static flag -static works... yes
- checking if cc supports -c -o file.o... yes
- checking whether the cc 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
- creating libtool
- appending configuration tag "CXX" to libtool
- configure: creating ./config.status
- config.status: creating config.h
- /bin/bash /usr/src/php/ext/iconv/libtool --mode=compile cc -I"/usr/include" -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/iconv -DPHP_ATOM_INC -I/usr/src/php/ext/iconv/include -I/usr/src/php/ext/iconv/main -I/usr/src/php/ext/iconv -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -I/usr/include -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/iconv/iconv.c -o iconv.lo
- mkdir .libs
- cc -I/usr/include -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/iconv -DPHP_ATOM_INC -I/usr/src/php/ext/iconv/include -I/usr/src/php/ext/iconv/main -I/usr/src/php/ext/iconv -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -I/usr/include -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/iconv/iconv.c -fPIC -DPIC -o .libs/iconv.o
- /bin/bash /usr/src/php/ext/iconv/libtool --mode=link cc -DPHP_ATOM_INC -I/usr/src/php/ext/iconv/include -I/usr/src/php/ext/iconv/main -I/usr/src/php/ext/iconv -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -I/usr/include -fstack-protector-strong -fpic -fpie -O2 -L/usr/lib -Wl,-O1 -Wl,--hash-style=both -pie -o iconv.la -export-dynamic -avoid-version -prefer-pic -module -rpath /usr/src/php/ext/iconv/modules iconv.lo
- cc -shared .libs/iconv.o -L/usr/lib -Wl,-O1 -Wl,--hash-style=both -Wl,-soname -Wl,iconv.so -o .libs/iconv.so
- creating iconv.la
- (cd .libs && rm -f iconv.la && ln -s ../iconv.la iconv.la)
- /bin/bash /usr/src/php/ext/iconv/libtool --mode=install cp ./iconv.la /usr/src/php/ext/iconv/modules
- cp ./.libs/iconv.so /usr/src/php/ext/iconv/modules/iconv.so
- cp ./.libs/iconv.lai /usr/src/php/ext/iconv/modules/iconv.la
- PATH="$PATH:/sbin" ldconfig -n /usr/src/php/ext/iconv/modules
- ----------------------------------------------------------------------
- Libraries have been installed in:
- /usr/src/php/ext/iconv/modules
- If you ever happen to want to link against installed libraries
- in a given directory, LIBDIR, you must either use libtool, and
- specify the full pathname of the library, or use the `-LLIBDIR'
- flag during linking and do at least one of the following:
- - add LIBDIR to the `LD_LIBRARY_PATH' environment variable
- during execution
- - add LIBDIR to the `LD_RUN_PATH' environment variable
- during linking
- - use the `-Wl,--rpath -Wl,LIBDIR' linker flag
- - have your system administrator add LIBDIR to `/etc/ld.so.conf'
- See any operating system documentation about shared libraries for
- more information, such as the ld(1) and ld.so(8) manual pages.
- ----------------------------------------------------------------------
- Build complete.
- Don't forget to run 'make test'.
- Installing shared extensions: /usr/local/lib/php/extensions/no-debug-non-zts-20180731/
- Installing header files: /usr/local/include/php/
- warning: iconv (iconv.so) is already loaded!
- find . -name \*.gcno -o -name \*.gcda | xargs rm -f
- find . -name \*.lo -o -name \*.o | xargs rm -f
- find . -name \*.la -o -name \*.a | xargs rm -f
- find . -name \*.so | xargs rm -f
- find . -name .libs -a -type d|xargs rm -rf
- rm -f libphp.la modules/* libs/*
- Configuring for:
- PHP Api Version: 20180731
- Zend Module Api No: 20180731
- Zend Extension Api No: 320180731
- checking for grep that handles long lines and -e... /bin/grep
- checking for egrep... /bin/grep -E
- checking for a sed that does not truncate output... /bin/sed
- checking for cc... cc
- checking whether the C compiler works... yes
- checking for C compiler default output file name... a.out
- checking for suffix of executables...
- checking whether we are cross compiling... no
- checking for suffix of object files... o
- checking whether we are using the GNU C compiler... yes
- checking whether cc accepts -g... yes
- checking for cc option to accept ISO C89... none needed
- checking how to run the C preprocessor... cc -E
- checking for icc... no
- checking for suncc... no
- checking whether cc understands -c and -o together... yes
- checking for system library directory... lib
- checking if compiler supports -R... no
- checking if compiler supports -Wl,-rpath,... yes
- checking build system type... x86_64-pc-linux-gnu
- checking host system type... x86_64-pc-linux-gnu
- checking target system type... x86_64-pc-linux-gnu
- checking for PHP prefix... /usr/local
- checking for PHP includes... -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib
- checking for PHP extension directory... /usr/local/lib/php/extensions/no-debug-non-zts-20180731
- checking for PHP installed headers prefix... /usr/local/include/php
- checking if debug is enabled... no
- checking if zts is enabled... no
- checking for re2c... re2c
- checking for re2c version... 0.16 (ok)
- checking for gawk... no
- checking for nawk... nawk
- checking if nawk is broken... no
- checking whether to enable PDO support... yes, shared
- checking for ld used by cc... /usr/bin/ld
- checking if the linker (/usr/bin/ld) is GNU ld... yes
- checking for /usr/bin/ld option to reload object files... -r
- checking for BSD-compatible nm... /usr/bin/nm -B
- checking whether ln -s works... yes
- checking how to recognize dependent libraries... pass_all
- 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 dlfcn.h usability... yes
- checking dlfcn.h presence... yes
- checking for dlfcn.h... yes
- checking the maximum length of command line arguments... 1572864
- checking command to parse /usr/bin/nm -B output from cc object... ok
- checking for objdir... .libs
- checking for ar... ar
- checking for ranlib... ranlib
- checking for strip... strip
- checking if cc supports -fno-rtti -fno-exceptions... no
- checking for cc option to produce PIC... -fPIC
- checking if cc PIC flag -fPIC works... yes
- checking if cc static flag -static works... yes
- checking if cc supports -c -o file.o... yes
- checking whether the cc 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
- creating libtool
- appending configuration tag "CXX" to libtool
- configure: creating ./config.status
- config.status: creating config.h
- /bin/bash /usr/src/php/ext/pdo/libtool --mode=compile cc -I. -I/usr/src/php/ext/pdo -DPHP_ATOM_INC -I/usr/src/php/ext/pdo/include -I/usr/src/php/ext/pdo/main -I/usr/src/php/ext/pdo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/pdo/pdo.c -o pdo.lo
- /bin/bash /usr/src/php/ext/pdo/libtool --mode=compile cc -I. -I/usr/src/php/ext/pdo -DPHP_ATOM_INC -I/usr/src/php/ext/pdo/include -I/usr/src/php/ext/pdo/main -I/usr/src/php/ext/pdo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/pdo/pdo_dbh.c -o pdo_dbh.lo
- /bin/bash /usr/src/php/ext/pdo/libtool --mode=compile cc -I. -I/usr/src/php/ext/pdo -DPHP_ATOM_INC -I/usr/src/php/ext/pdo/include -I/usr/src/php/ext/pdo/main -I/usr/src/php/ext/pdo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/pdo/pdo_stmt.c -o pdo_stmt.lo
- /bin/bash /usr/src/php/ext/pdo/libtool --mode=compile cc -I. -I/usr/src/php/ext/pdo -DPHP_ATOM_INC -I/usr/src/php/ext/pdo/include -I/usr/src/php/ext/pdo/main -I/usr/src/php/ext/pdo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/pdo/pdo_sql_parser.c -o pdo_sql_parser.lo
- /bin/bash /usr/src/php/ext/pdo/libtool --mode=compile cc -I. -I/usr/src/php/ext/pdo -DPHP_ATOM_INC -I/usr/src/php/ext/pdo/include -I/usr/src/php/ext/pdo/main -I/usr/src/php/ext/pdo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/pdo/pdo_sqlstate.c -o pdo_sqlstate.lo
- mkdir .libs
- mkdir .libs
- mkdir: cannot create directory '.libs': File exists
- cc -I. -I/usr/src/php/ext/pdo -DPHP_ATOM_INC -I/usr/src/php/ext/pdo/include -I/usr/src/php/ext/pdo/main -I/usr/src/php/ext/pdo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/pdo/pdo.c -fPIC -DPIC -o .libs/pdo.o
- cc -I. -I/usr/src/php/ext/pdo -DPHP_ATOM_INC -I/usr/src/php/ext/pdo/include -I/usr/src/php/ext/pdo/main -I/usr/src/php/ext/pdo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/pdo/pdo_sqlstate.c -fPIC -DPIC -o .libs/pdo_sqlstate.o
- cc -I. -I/usr/src/php/ext/pdo -DPHP_ATOM_INC -I/usr/src/php/ext/pdo/include -I/usr/src/php/ext/pdo/main -I/usr/src/php/ext/pdo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/pdo/pdo_sql_parser.c -fPIC -DPIC -o .libs/pdo_sql_parser.o
- cc -I. -I/usr/src/php/ext/pdo -DPHP_ATOM_INC -I/usr/src/php/ext/pdo/include -I/usr/src/php/ext/pdo/main -I/usr/src/php/ext/pdo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/pdo/pdo_stmt.c -fPIC -DPIC -o .libs/pdo_stmt.o
- cc -I. -I/usr/src/php/ext/pdo -DPHP_ATOM_INC -I/usr/src/php/ext/pdo/include -I/usr/src/php/ext/pdo/main -I/usr/src/php/ext/pdo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/pdo/pdo_dbh.c -fPIC -DPIC -o .libs/pdo_dbh.o
- /bin/bash /usr/src/php/ext/pdo/libtool --mode=link cc -DPHP_ATOM_INC -I/usr/src/php/ext/pdo/include -I/usr/src/php/ext/pdo/main -I/usr/src/php/ext/pdo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -Wl,-O1 -Wl,--hash-style=both -pie -o pdo.la -export-dynamic -avoid-version -prefer-pic -module -rpath /usr/src/php/ext/pdo/modules pdo.lo pdo_dbh.lo pdo_stmt.lo pdo_sql_parser.lo pdo_sqlstate.lo
- cc -shared .libs/pdo.o .libs/pdo_dbh.o .libs/pdo_stmt.o .libs/pdo_sql_parser.o .libs/pdo_sqlstate.o -Wl,-O1 -Wl,--hash-style=both -Wl,-soname -Wl,pdo.so -o .libs/pdo.so
- creating pdo.la
- (cd .libs && rm -f pdo.la && ln -s ../pdo.la pdo.la)
- /bin/bash /usr/src/php/ext/pdo/libtool --mode=install cp ./pdo.la /usr/src/php/ext/pdo/modules
- cp ./.libs/pdo.so /usr/src/php/ext/pdo/modules/pdo.so
- cp ./.libs/pdo.lai /usr/src/php/ext/pdo/modules/pdo.la
- PATH="$PATH:/sbin" ldconfig -n /usr/src/php/ext/pdo/modules
- ----------------------------------------------------------------------
- Libraries have been installed in:
- /usr/src/php/ext/pdo/modules
- If you ever happen to want to link against installed libraries
- in a given directory, LIBDIR, you must either use libtool, and
- specify the full pathname of the library, or use the `-LLIBDIR'
- flag during linking and do at least one of the following:
- - add LIBDIR to the `LD_LIBRARY_PATH' environment variable
- during execution
- - add LIBDIR to the `LD_RUN_PATH' environment variable
- during linking
- - use the `-Wl,--rpath -Wl,LIBDIR' linker flag
- - have your system administrator add LIBDIR to `/etc/ld.so.conf'
- See any operating system documentation about shared libraries for
- more information, such as the ld(1) and ld.so(8) manual pages.
- ----------------------------------------------------------------------
- Build complete.
- Don't forget to run 'make test'.
- Installing PDO headers: /usr/local/include/php/ext/pdo/
- Installing shared extensions: /usr/local/lib/php/extensions/no-debug-non-zts-20180731/
- Installing header files: /usr/local/include/php/
- warning: pdo (pdo.so) is already loaded!
- find . -name \*.gcno -o -name \*.gcda | xargs rm -f
- find . -name \*.lo -o -name \*.o | xargs rm -f
- find . -name \*.la -o -name \*.a | xargs rm -f
- find . -name \*.so | xargs rm -f
- find . -name .libs -a -type d|xargs rm -rf
- rm -f libphp.la modules/* libs/*
- Configuring for:
- PHP Api Version: 20180731
- Zend Module Api No: 20180731
- Zend Extension Api No: 320180731
- checking for grep that handles long lines and -e... /bin/grep
- checking for egrep... /bin/grep -E
- checking for a sed that does not truncate output... /bin/sed
- checking for cc... cc
- checking whether the C compiler works... yes
- checking for C compiler default output file name... a.out
- checking for suffix of executables...
- checking whether we are cross compiling... no
- checking for suffix of object files... o
- checking whether we are using the GNU C compiler... yes
- checking whether cc accepts -g... yes
- checking for cc option to accept ISO C89... none needed
- checking how to run the C preprocessor... cc -E
- checking for icc... no
- checking for suncc... no
- checking whether cc understands -c and -o together... yes
- checking for system library directory... lib
- checking if compiler supports -R... no
- checking if compiler supports -Wl,-rpath,... yes
- checking build system type... x86_64-pc-linux-gnu
- checking host system type... x86_64-pc-linux-gnu
- checking target system type... x86_64-pc-linux-gnu
- checking for PHP prefix... /usr/local
- checking for PHP includes... -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib
- checking for PHP extension directory... /usr/local/lib/php/extensions/no-debug-non-zts-20180731
- checking for PHP installed headers prefix... /usr/local/include/php
- checking if debug is enabled... no
- checking if zts is enabled... no
- checking for re2c... re2c
- checking for re2c version... 0.16 (ok)
- checking for gawk... no
- checking for nawk... nawk
- checking if nawk is broken... no
- checking for MySQL support for PDO... yes, shared
- checking for the location of libz... no
- checking for MySQL UNIX socket location...
- checking for PDO includes... checking for PDO includes... /usr/local/include/php/ext
- checking for ld used by cc... /usr/bin/ld
- checking if the linker (/usr/bin/ld) is GNU ld... yes
- checking for /usr/bin/ld option to reload object files... -r
- checking for BSD-compatible nm... /usr/bin/nm -B
- checking whether ln -s works... yes
- checking how to recognize dependent libraries... pass_all
- 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 dlfcn.h usability... yes
- checking dlfcn.h presence... yes
- checking for dlfcn.h... yes
- checking the maximum length of command line arguments... 1572864
- checking command to parse /usr/bin/nm -B output from cc object... ok
- checking for objdir... .libs
- checking for ar... ar
- checking for ranlib... ranlib
- checking for strip... strip
- checking if cc supports -fno-rtti -fno-exceptions... no
- checking for cc option to produce PIC... -fPIC
- checking if cc PIC flag -fPIC works... yes
- checking if cc static flag -static works... yes
- checking if cc supports -c -o file.o... yes
- checking whether the cc 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
- creating libtool
- appending configuration tag "CXX" to libtool
- configure: creating ./config.status
- config.status: creating config.h
- /bin/bash /usr/src/php/ext/pdo_mysql/libtool --mode=compile cc -I/usr/local/include/php/ext -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/pdo_mysql -DPHP_ATOM_INC -I/usr/src/php/ext/pdo_mysql/include -I/usr/src/php/ext/pdo_mysql/main -I/usr/src/php/ext/pdo_mysql -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/pdo_mysql/pdo_mysql.c -o pdo_mysql.lo
- /bin/bash /usr/src/php/ext/pdo_mysql/libtool --mode=compile cc -I/usr/local/include/php/ext -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/pdo_mysql -DPHP_ATOM_INC -I/usr/src/php/ext/pdo_mysql/include -I/usr/src/php/ext/pdo_mysql/main -I/usr/src/php/ext/pdo_mysql -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/pdo_mysql/mysql_driver.c -o mysql_driver.lo
- /bin/bash /usr/src/php/ext/pdo_mysql/libtool --mode=compile cc -I/usr/local/include/php/ext -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/pdo_mysql -DPHP_ATOM_INC -I/usr/src/php/ext/pdo_mysql/include -I/usr/src/php/ext/pdo_mysql/main -I/usr/src/php/ext/pdo_mysql -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/pdo_mysql/mysql_statement.c -o mysql_statement.lo
- mkdir .libs
- cc -I/usr/local/include/php/ext -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/pdo_mysql -DPHP_ATOM_INC -I/usr/src/php/ext/pdo_mysql/include -I/usr/src/php/ext/pdo_mysql/main -I/usr/src/php/ext/pdo_mysql -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/pdo_mysql/pdo_mysql.c -fPIC -DPIC -o .libs/pdo_mysql.o
- cc -I/usr/local/include/php/ext -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/pdo_mysql -DPHP_ATOM_INC -I/usr/src/php/ext/pdo_mysql/include -I/usr/src/php/ext/pdo_mysql/main -I/usr/src/php/ext/pdo_mysql -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/pdo_mysql/mysql_statement.c -fPIC -DPIC -o .libs/mysql_statement.o
- cc -I/usr/local/include/php/ext -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/pdo_mysql -DPHP_ATOM_INC -I/usr/src/php/ext/pdo_mysql/include -I/usr/src/php/ext/pdo_mysql/main -I/usr/src/php/ext/pdo_mysql -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/pdo_mysql/mysql_driver.c -fPIC -DPIC -o .libs/mysql_driver.o
- /bin/bash /usr/src/php/ext/pdo_mysql/libtool --mode=link cc -DPHP_ATOM_INC -I/usr/src/php/ext/pdo_mysql/include -I/usr/src/php/ext/pdo_mysql/main -I/usr/src/php/ext/pdo_mysql -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -Wl,-O1 -Wl,--hash-style=both -pie -o pdo_mysql.la -export-dynamic -avoid-version -prefer-pic -module -rpath /usr/src/php/ext/pdo_mysql/modules pdo_mysql.lo mysql_driver.lo mysql_statement.lo
- cc -shared .libs/pdo_mysql.o .libs/mysql_driver.o .libs/mysql_statement.o -Wl,-O1 -Wl,--hash-style=both -Wl,-soname -Wl,pdo_mysql.so -o .libs/pdo_mysql.so
- creating pdo_mysql.la
- (cd .libs && rm -f pdo_mysql.la && ln -s ../pdo_mysql.la pdo_mysql.la)
- /bin/bash /usr/src/php/ext/pdo_mysql/libtool --mode=install cp ./pdo_mysql.la /usr/src/php/ext/pdo_mysql/modules
- cp ./.libs/pdo_mysql.so /usr/src/php/ext/pdo_mysql/modules/pdo_mysql.so
- cp ./.libs/pdo_mysql.lai /usr/src/php/ext/pdo_mysql/modules/pdo_mysql.la
- PATH="$PATH:/sbin" ldconfig -n /usr/src/php/ext/pdo_mysql/modules
- ----------------------------------------------------------------------
- Libraries have been installed in:
- /usr/src/php/ext/pdo_mysql/modules
- If you ever happen to want to link against installed libraries
- in a given directory, LIBDIR, you must either use libtool, and
- specify the full pathname of the library, or use the `-LLIBDIR'
- flag during linking and do at least one of the following:
- - add LIBDIR to the `LD_LIBRARY_PATH' environment variable
- during execution
- - add LIBDIR to the `LD_RUN_PATH' environment variable
- during linking
- - use the `-Wl,--rpath -Wl,LIBDIR' linker flag
- - have your system administrator add LIBDIR to `/etc/ld.so.conf'
- See any operating system documentation about shared libraries for
- more information, such as the ld(1) and ld.so(8) manual pages.
- ----------------------------------------------------------------------
- Build complete.
- Don't forget to run 'make test'.
- Installing shared extensions: /usr/local/lib/php/extensions/no-debug-non-zts-20180731/
- find . -name \*.gcno -o -name \*.gcda | xargs rm -f
- find . -name \*.lo -o -name \*.o | xargs rm -f
- find . -name \*.la -o -name \*.a | xargs rm -f
- find . -name \*.so | xargs rm -f
- find . -name .libs -a -type d|xargs rm -rf
- rm -f libphp.la modules/* libs/*
- /bin/bash /usr/src/php/ext/gd/libtool --mode=compile cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/gd.c -o gd.lo
- /bin/bash /usr/src/php/ext/gd/libtool --mode=compile cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gd.c -o libgd/gd.lo
- /bin/bash /usr/src/php/ext/gd/libtool --mode=compile cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gd_gd.c -o libgd/gd_gd.lo
- /bin/bash /usr/src/php/ext/gd/libtool --mode=compile cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gd_gd2.c -o libgd/gd_gd2.lo
- /bin/bash /usr/src/php/ext/gd/libtool --mode=compile cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gd_io.c -o libgd/gd_io.lo
- /bin/bash /usr/src/php/ext/gd/libtool --mode=compile cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gd_io_dp.c -o libgd/gd_io_dp.lo
- /bin/bash /usr/src/php/ext/gd/libtool --mode=compile cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gd_io_file.c -o libgd/gd_io_file.lo
- /bin/bash /usr/src/php/ext/gd/libtool --mode=compile cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gd_ss.c -o libgd/gd_ss.lo
- mkdir libgd/.libs
- mkdir libgd/.libs
- mkdir libgd/.libs
- mkdir: cannot create directory 'libgd/.libs': File exists
- mkdir: cannot create directory 'libgd/.libs': File exists
- cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gd_gd.c -fPIC -DPIC -o libgd/.libs/gd_gd.o
- cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gd_ss.c -fPIC -DPIC -o libgd/.libs/gd_ss.o
- cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gd_io_dp.c -fPIC -DPIC -o libgd/.libs/gd_io_dp.o
- cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gd_io.c -fPIC -DPIC -o libgd/.libs/gd_io.o
- cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gd.c -fPIC -DPIC -o libgd/.libs/gd.o
- cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gd_io_file.c -fPIC -DPIC -o libgd/.libs/gd_io_file.o
- cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gd_gd2.c -fPIC -DPIC -o libgd/.libs/gd_gd2.o
- mkdir .libs
- cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/gd.c -fPIC -DPIC -o .libs/gd.o
- /bin/bash /usr/src/php/ext/gd/libtool --mode=compile cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gd_io_ss.c -o libgd/gd_io_ss.lo
- /bin/bash /usr/src/php/ext/gd/libtool --mode=compile cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gd_webp.c -o libgd/gd_webp.lo
- /bin/bash /usr/src/php/ext/gd/libtool --mode=compile cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gd_png.c -o libgd/gd_png.lo
- /bin/bash /usr/src/php/ext/gd/libtool --mode=compile cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gd_jpeg.c -o libgd/gd_jpeg.lo
- /bin/bash /usr/src/php/ext/gd/libtool --mode=compile cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gdxpm.c -o libgd/gdxpm.lo
- cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gd_io_ss.c -fPIC -DPIC -o libgd/.libs/gd_io_ss.o
- cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gd_webp.c -fPIC -DPIC -o libgd/.libs/gd_webp.o
- /bin/bash /usr/src/php/ext/gd/libtool --mode=compile cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gdfontt.c -o libgd/gdfontt.lo
- cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gd_png.c -fPIC -DPIC -o libgd/.libs/gd_png.o
- cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gd_jpeg.c -fPIC -DPIC -o libgd/.libs/gd_jpeg.o
- cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gdxpm.c -fPIC -DPIC -o libgd/.libs/gdxpm.o
- /bin/bash /usr/src/php/ext/gd/libtool --mode=compile cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gdfonts.c -o libgd/gdfonts.lo
- /bin/bash /usr/src/php/ext/gd/libtool --mode=compile cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gdfontmb.c -o libgd/gdfontmb.lo
- cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gdfontt.c -fPIC -DPIC -o libgd/.libs/gdfontt.o
- /bin/bash /usr/src/php/ext/gd/libtool --mode=compile cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gdfontl.c -o libgd/gdfontl.lo
- /bin/bash /usr/src/php/ext/gd/libtool --mode=compile cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gdfontg.c -o libgd/gdfontg.lo
- cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gdfonts.c -fPIC -DPIC -o libgd/.libs/gdfonts.o
- cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gdfontmb.c -fPIC -DPIC -o libgd/.libs/gdfontmb.o
- /bin/bash /usr/src/php/ext/gd/libtool --mode=compile cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gdtables.c -o libgd/gdtables.lo
- /bin/bash /usr/src/php/ext/gd/libtool --mode=compile cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gdft.c -o libgd/gdft.lo
- /bin/bash /usr/src/php/ext/gd/libtool --mode=compile cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gdcache.c -o libgd/gdcache.lo
- cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gdfontg.c -fPIC -DPIC -o libgd/.libs/gdfontg.o
- cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gdfontl.c -fPIC -DPIC -o libgd/.libs/gdfontl.o
- /bin/bash /usr/src/php/ext/gd/libtool --mode=compile cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gdkanji.c -o libgd/gdkanji.lo
- cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gdtables.c -fPIC -DPIC -o libgd/.libs/gdtables.o
- cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gdft.c -fPIC -DPIC -o libgd/.libs/gdft.o
- cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gdcache.c -fPIC -DPIC -o libgd/.libs/gdcache.o
- /bin/bash /usr/src/php/ext/gd/libtool --mode=compile cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/wbmp.c -o libgd/wbmp.lo
- /bin/bash /usr/src/php/ext/gd/libtool --mode=compile cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gd_wbmp.c -o libgd/gd_wbmp.lo
- /bin/bash /usr/src/php/ext/gd/libtool --mode=compile cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gdhelpers.c -o libgd/gdhelpers.lo
- cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gdkanji.c -fPIC -DPIC -o libgd/.libs/gdkanji.o
- cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/wbmp.c -fPIC -DPIC -o libgd/.libs/wbmp.o
- cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gd_wbmp.c -fPIC -DPIC -o libgd/.libs/gd_wbmp.o
- /bin/bash /usr/src/php/ext/gd/libtool --mode=compile cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gd_topal.c -o libgd/gd_topal.lo
- cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gdhelpers.c -fPIC -DPIC -o libgd/.libs/gdhelpers.o
- /bin/bash /usr/src/php/ext/gd/libtool --mode=compile cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gd_gif_in.c -o libgd/gd_gif_in.lo
- /bin/bash /usr/src/php/ext/gd/libtool --mode=compile cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gd_xbm.c -o libgd/gd_xbm.lo
- /bin/bash /usr/src/php/ext/gd/libtool --mode=compile cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gd_gif_out.c -o libgd/gd_gif_out.lo
- /bin/bash /usr/src/php/ext/gd/libtool --mode=compile cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gd_security.c -o libgd/gd_security.lo
- cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gd_topal.c -fPIC -DPIC -o libgd/.libs/gd_topal.o
- /bin/bash /usr/src/php/ext/gd/libtool --mode=compile cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gd_filter.c -o libgd/gd_filter.lo
- /bin/bash /usr/src/php/ext/gd/libtool --mode=compile cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gd_pixelate.c -o libgd/gd_pixelate.lo
- /bin/bash /usr/src/php/ext/gd/libtool --mode=compile cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gd_rotate.c -o libgd/gd_rotate.lo
- cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gd_gif_in.c -fPIC -DPIC -o libgd/.libs/gd_gif_in.o
- cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gd_xbm.c -fPIC -DPIC -o libgd/.libs/gd_xbm.o
- cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gd_gif_out.c -fPIC -DPIC -o libgd/.libs/gd_gif_out.o
- cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gd_security.c -fPIC -DPIC -o libgd/.libs/gd_security.o
- cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gd_pixelate.c -fPIC -DPIC -o libgd/.libs/gd_pixelate.o
- cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gd_filter.c -fPIC -DPIC -o libgd/.libs/gd_filter.o
- /bin/bash /usr/src/php/ext/gd/libtool --mode=compile cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gd_color_match.c -o libgd/gd_color_match.lo
- cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gd_rotate.c -fPIC -DPIC -o libgd/.libs/gd_rotate.o
- /bin/bash /usr/src/php/ext/gd/libtool --mode=compile cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gd_transform.c -o libgd/gd_transform.lo
- /bin/bash /usr/src/php/ext/gd/libtool --mode=compile cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gd_crop.c -o libgd/gd_crop.lo
- /bin/bash /usr/src/php/ext/gd/libtool --mode=compile cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gd_interpolation.c -o libgd/gd_interpolation.lo
- /bin/bash /usr/src/php/ext/gd/libtool --mode=compile cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gd_matrix.c -o libgd/gd_matrix.lo
- cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gd_color_match.c -fPIC -DPIC -o libgd/.libs/gd_color_match.o
- /bin/bash /usr/src/php/ext/gd/libtool --mode=compile cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gd_bmp.c -o libgd/gd_bmp.lo
- cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gd_transform.c -fPIC -DPIC -o libgd/.libs/gd_transform.o
- cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gd_crop.c -fPIC -DPIC -o libgd/.libs/gd_crop.o
- cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gd_interpolation.c -fPIC -DPIC -o libgd/.libs/gd_interpolation.o
- cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gd_matrix.c -fPIC -DPIC -o libgd/.libs/gd_matrix.o
- cc -I/usr/src/php/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -I. -I/usr/src/php/ext/gd -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/gd/libgd/gd_bmp.c -fPIC -DPIC -o libgd/.libs/gd_bmp.o
- /bin/bash /usr/src/php/ext/gd/libtool --mode=link cc -DPHP_ATOM_INC -I/usr/src/php/ext/gd/include -I/usr/src/php/ext/gd/main -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -Wl,-O1 -Wl,--hash-style=both -pie -o gd.la -export-dynamic -avoid-version -prefer-pic -module -rpath /usr/src/php/ext/gd/modules gd.lo libgd/gd.lo libgd/gd_gd.lo libgd/gd_gd2.lo libgd/gd_io.lo libgd/gd_io_dp.lo libgd/gd_io_file.lo libgd/gd_ss.lo libgd/gd_io_ss.lo libgd/gd_webp.lo libgd/gd_png.lo libgd/gd_jpeg.lo libgd/gdxpm.lo libgd/gdfontt.lo libgd/gdfonts.lo libgd/gdfontmb.lo libgd/gdfontl.lo libgd/gdfontg.lo libgd/gdtables.lo libgd/gdft.lo libgd/gdcache.lo libgd/gdkanji.lo libgd/wbmp.lo libgd/gd_wbmp.lo libgd/gdhelpers.lo libgd/gd_topal.lo libgd/gd_gif_in.lo libgd/gd_xbm.lo libgd/gd_gif_out.lo libgd/gd_security.lo libgd/gd_filter.lo libgd/gd_pixelate.lo libgd/gd_rotate.lo libgd/gd_color_match.lo libgd/gd_transform.lo libgd/gd_crop.lo libgd/gd_interpolation.lo libgd/gd_matrix.lo libgd/gd_bmp.lo -Wl,-rpath,/usr/lib/x86_64-linux-gnu -L/usr/lib/x86_64-linux-gnu -lpng -lz -ljpeg -lfreetype
- cc -shared .libs/gd.o libgd/.libs/gd.o libgd/.libs/gd_gd.o libgd/.libs/gd_gd2.o libgd/.libs/gd_io.o libgd/.libs/gd_io_dp.o libgd/.libs/gd_io_file.o libgd/.libs/gd_ss.o libgd/.libs/gd_io_ss.o libgd/.libs/gd_webp.o libgd/.libs/gd_png.o libgd/.libs/gd_jpeg.o libgd/.libs/gdxpm.o libgd/.libs/gdfontt.o libgd/.libs/gdfonts.o libgd/.libs/gdfontmb.o libgd/.libs/gdfontl.o libgd/.libs/gdfontg.o libgd/.libs/gdtables.o libgd/.libs/gdft.o libgd/.libs/gdcache.o libgd/.libs/gdkanji.o libgd/.libs/wbmp.o libgd/.libs/gd_wbmp.o libgd/.libs/gdhelpers.o libgd/.libs/gd_topal.o libgd/.libs/gd_gif_in.o libgd/.libs/gd_xbm.o libgd/.libs/gd_gif_out.o libgd/.libs/gd_security.o libgd/.libs/gd_filter.o libgd/.libs/gd_pixelate.o libgd/.libs/gd_rotate.o libgd/.libs/gd_color_match.o libgd/.libs/gd_transform.o libgd/.libs/gd_crop.o libgd/.libs/gd_interpolation.o libgd/.libs/gd_matrix.o libgd/.libs/gd_bmp.o -L/usr/lib/x86_64-linux-gnu -lpng -lz -ljpeg /usr/lib/x86_64-linux-gnu/libfreetype.so -Wl,-O1 -Wl,--hash-style=both -Wl,-rpath -Wl,/usr/lib/x86_64-linux-gnu -Wl,-soname -Wl,gd.so -o .libs/gd.so
- creating gd.la
- (cd .libs && rm -f gd.la && ln -s ../gd.la gd.la)
- /bin/bash /usr/src/php/ext/gd/libtool --mode=install cp ./gd.la /usr/src/php/ext/gd/modules
- cp ./.libs/gd.so /usr/src/php/ext/gd/modules/gd.so
- cp ./.libs/gd.lai /usr/src/php/ext/gd/modules/gd.la
- PATH="$PATH:/sbin" ldconfig -n /usr/src/php/ext/gd/modules
- ----------------------------------------------------------------------
- Libraries have been installed in:
- /usr/src/php/ext/gd/modules
- If you ever happen to want to link against installed libraries
- in a given directory, LIBDIR, you must either use libtool, and
- specify the full pathname of the library, or use the `-LLIBDIR'
- flag during linking and do at least one of the following:
- - add LIBDIR to the `LD_LIBRARY_PATH' environment variable
- during execution
- - add LIBDIR to the `LD_RUN_PATH' environment variable
- during linking
- - use the `-Wl,--rpath -Wl,LIBDIR' linker flag
- - have your system administrator add LIBDIR to `/etc/ld.so.conf'
- See any operating system documentation about shared libraries for
- more information, such as the ld(1) and ld.so(8) manual pages.
- ----------------------------------------------------------------------
- Build complete.
- Don't forget to run 'make test'.
- Installing shared extensions: /usr/local/lib/php/extensions/no-debug-non-zts-20180731/
- Installing header files: /usr/local/include/php/
- find . -name \*.gcno -o -name \*.gcda | xargs rm -f
- find . -name \*.lo -o -name \*.o | xargs rm -f
- find . -name \*.la -o -name \*.a | xargs rm -f
- find . -name \*.so | xargs rm -f
- find . -name .libs -a -type d|xargs rm -rf
- rm -f libphp.la modules/* libs/*
- Configuring for:
- PHP Api Version: 20180731
- Zend Module Api No: 20180731
- Zend Extension Api No: 320180731
- checking for grep that handles long lines and -e... /bin/grep
- checking for egrep... /bin/grep -E
- checking for a sed that does not truncate output... /bin/sed
- checking for cc... cc
- checking whether the C compiler works... yes
- checking for C compiler default output file name... a.out
- checking for suffix of executables...
- checking whether we are cross compiling... no
- checking for suffix of object files... o
- checking whether we are using the GNU C compiler... yes
- checking whether cc accepts -g... yes
- checking for cc option to accept ISO C89... none needed
- checking how to run the C preprocessor... cc -E
- checking for icc... no
- checking for suncc... no
- checking whether cc understands -c and -o together... yes
- checking for system library directory... lib
- checking if compiler supports -R... no
- checking if compiler supports -Wl,-rpath,... yes
- checking build system type... x86_64-pc-linux-gnu
- checking host system type... x86_64-pc-linux-gnu
- checking target system type... x86_64-pc-linux-gnu
- checking for PHP prefix... /usr/local
- checking for PHP includes... -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib
- checking for PHP extension directory... /usr/local/lib/php/extensions/no-debug-non-zts-20180731
- checking for PHP installed headers prefix... /usr/local/include/php
- checking if debug is enabled... no
- checking if zts is enabled... no
- checking for re2c... re2c
- checking for re2c version... 0.16 (ok)
- checking for gawk... no
- checking for nawk... nawk
- checking if nawk is broken... no
- checking for MySQLi support... yes, shared
- checking whether to enable embedded MySQLi support... no
- checking for specified location of the MySQL UNIX socket... no
- checking for MySQL UNIX socket location... no
- checking for ld used by cc... /usr/bin/ld
- checking if the linker (/usr/bin/ld) is GNU ld... yes
- checking for /usr/bin/ld option to reload object files... -r
- checking for BSD-compatible nm... /usr/bin/nm -B
- checking whether ln -s works... yes
- checking how to recognize dependent libraries... pass_all
- 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 dlfcn.h usability... yes
- checking dlfcn.h presence... yes
- checking for dlfcn.h... yes
- checking the maximum length of command line arguments... 1572864
- checking command to parse /usr/bin/nm -B output from cc object... ok
- checking for objdir... .libs
- checking for ar... ar
- checking for ranlib... ranlib
- checking for strip... strip
- checking if cc supports -fno-rtti -fno-exceptions... no
- checking for cc option to produce PIC... -fPIC
- checking if cc PIC flag -fPIC works... yes
- checking if cc static flag -static works... yes
- checking if cc supports -c -o file.o... yes
- checking whether the cc 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
- creating libtool
- appending configuration tag "CXX" to libtool
- configure: creating ./config.status
- config.status: creating config.h
- /bin/bash /usr/src/php/ext/mysqli/libtool --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/mysqli -DPHP_ATOM_INC -I/usr/src/php/ext/mysqli/include -I/usr/src/php/ext/mysqli/main -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/mysqli/mysqli.c -o mysqli.lo
- /bin/bash /usr/src/php/ext/mysqli/libtool --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/mysqli -DPHP_ATOM_INC -I/usr/src/php/ext/mysqli/include -I/usr/src/php/ext/mysqli/main -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/mysqli/mysqli_api.c -o mysqli_api.lo
- /bin/bash /usr/src/php/ext/mysqli/libtool --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/mysqli -DPHP_ATOM_INC -I/usr/src/php/ext/mysqli/include -I/usr/src/php/ext/mysqli/main -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/mysqli/mysqli_prop.c -o mysqli_prop.lo
- /bin/bash /usr/src/php/ext/mysqli/libtool --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/mysqli -DPHP_ATOM_INC -I/usr/src/php/ext/mysqli/include -I/usr/src/php/ext/mysqli/main -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/mysqli/mysqli_nonapi.c -o mysqli_nonapi.lo
- /bin/bash /usr/src/php/ext/mysqli/libtool --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/mysqli -DPHP_ATOM_INC -I/usr/src/php/ext/mysqli/include -I/usr/src/php/ext/mysqli/main -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/mysqli/mysqli_fe.c -o mysqli_fe.lo
- /bin/bash /usr/src/php/ext/mysqli/libtool --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/mysqli -DPHP_ATOM_INC -I/usr/src/php/ext/mysqli/include -I/usr/src/php/ext/mysqli/main -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/mysqli/mysqli_report.c -o mysqli_report.lo
- /bin/bash /usr/src/php/ext/mysqli/libtool --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/mysqli -DPHP_ATOM_INC -I/usr/src/php/ext/mysqli/include -I/usr/src/php/ext/mysqli/main -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/mysqli/mysqli_driver.c -o mysqli_driver.lo
- /bin/bash /usr/src/php/ext/mysqli/libtool --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/mysqli -DPHP_ATOM_INC -I/usr/src/php/ext/mysqli/include -I/usr/src/php/ext/mysqli/main -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/mysqli/mysqli_warning.c -o mysqli_warning.lo
- mkdir .libs
- cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/mysqli -DPHP_ATOM_INC -I/usr/src/php/ext/mysqli/include -I/usr/src/php/ext/mysqli/main -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/mysqli/mysqli_driver.c -fPIC -DPIC -o .libs/mysqli_driver.o
- cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/mysqli -DPHP_ATOM_INC -I/usr/src/php/ext/mysqli/include -I/usr/src/php/ext/mysqli/main -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/mysqli/mysqli.c -fPIC -DPIC -o .libs/mysqli.o
- cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/mysqli -DPHP_ATOM_INC -I/usr/src/php/ext/mysqli/include -I/usr/src/php/ext/mysqli/main -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/mysqli/mysqli_fe.c -fPIC -DPIC -o .libs/mysqli_fe.o
- cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/mysqli -DPHP_ATOM_INC -I/usr/src/php/ext/mysqli/include -I/usr/src/php/ext/mysqli/main -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/mysqli/mysqli_report.c -fPIC -DPIC -o .libs/mysqli_report.o
- cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/mysqli -DPHP_ATOM_INC -I/usr/src/php/ext/mysqli/include -I/usr/src/php/ext/mysqli/main -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/mysqli/mysqli_warning.c -fPIC -DPIC -o .libs/mysqli_warning.o
- cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/mysqli -DPHP_ATOM_INC -I/usr/src/php/ext/mysqli/include -I/usr/src/php/ext/mysqli/main -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/mysqli/mysqli_api.c -fPIC -DPIC -o .libs/mysqli_api.o
- cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/mysqli -DPHP_ATOM_INC -I/usr/src/php/ext/mysqli/include -I/usr/src/php/ext/mysqli/main -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/mysqli/mysqli_nonapi.c -fPIC -DPIC -o .libs/mysqli_nonapi.o
- cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/mysqli -DPHP_ATOM_INC -I/usr/src/php/ext/mysqli/include -I/usr/src/php/ext/mysqli/main -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/mysqli/mysqli_prop.c -fPIC -DPIC -o .libs/mysqli_prop.o
- /bin/bash /usr/src/php/ext/mysqli/libtool --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/mysqli -DPHP_ATOM_INC -I/usr/src/php/ext/mysqli/include -I/usr/src/php/ext/mysqli/main -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/mysqli/mysqli_exception.c -o mysqli_exception.lo
- /bin/bash /usr/src/php/ext/mysqli/libtool --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/mysqli -DPHP_ATOM_INC -I/usr/src/php/ext/mysqli/include -I/usr/src/php/ext/mysqli/main -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/mysqli/mysqli_result_iterator.c -o mysqli_result_iterator.lo
- cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/mysqli -DPHP_ATOM_INC -I/usr/src/php/ext/mysqli/include -I/usr/src/php/ext/mysqli/main -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/mysqli/mysqli_exception.c -fPIC -DPIC -o .libs/mysqli_exception.o
- cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/mysqli -DPHP_ATOM_INC -I/usr/src/php/ext/mysqli/include -I/usr/src/php/ext/mysqli/main -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/mysqli/mysqli_result_iterator.c -fPIC -DPIC -o .libs/mysqli_result_iterator.o
- /bin/bash /usr/src/php/ext/mysqli/libtool --mode=link cc -DPHP_ATOM_INC -I/usr/src/php/ext/mysqli/include -I/usr/src/php/ext/mysqli/main -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -Wl,-O1 -Wl,--hash-style=both -pie -o mysqli.la -export-dynamic -avoid-version -prefer-pic -module -rpath /usr/src/php/ext/mysqli/modules mysqli.lo mysqli_api.lo mysqli_prop.lo mysqli_nonapi.lo mysqli_fe.lo mysqli_report.lo mysqli_driver.lo mysqli_warning.lo mysqli_exception.lo mysqli_result_iterator.lo
- cc -shared .libs/mysqli.o .libs/mysqli_api.o .libs/mysqli_prop.o .libs/mysqli_nonapi.o .libs/mysqli_fe.o .libs/mysqli_report.o .libs/mysqli_driver.o .libs/mysqli_warning.o .libs/mysqli_exception.o .libs/mysqli_result_iterator.o -Wl,-O1 -Wl,--hash-style=both -Wl,-soname -Wl,mysqli.so -o .libs/mysqli.so
- creating mysqli.la
- (cd .libs && rm -f mysqli.la && ln -s ../mysqli.la mysqli.la)
- /bin/bash /usr/src/php/ext/mysqli/libtool --mode=install cp ./mysqli.la /usr/src/php/ext/mysqli/modules
- cp ./.libs/mysqli.so /usr/src/php/ext/mysqli/modules/mysqli.so
- cp ./.libs/mysqli.lai /usr/src/php/ext/mysqli/modules/mysqli.la
- PATH="$PATH:/sbin" ldconfig -n /usr/src/php/ext/mysqli/modules
- ----------------------------------------------------------------------
- Libraries have been installed in:
- /usr/src/php/ext/mysqli/modules
- If you ever happen to want to link against installed libraries
- in a given directory, LIBDIR, you must either use libtool, and
- specify the full pathname of the library, or use the `-LLIBDIR'
- flag during linking and do at least one of the following:
- - add LIBDIR to the `LD_LIBRARY_PATH' environment variable
- during execution
- - add LIBDIR to the `LD_RUN_PATH' environment variable
- during linking
- - use the `-Wl,--rpath -Wl,LIBDIR' linker flag
- - have your system administrator add LIBDIR to `/etc/ld.so.conf'
- See any operating system documentation about shared libraries for
- more information, such as the ld(1) and ld.so(8) manual pages.
- ----------------------------------------------------------------------
- Build complete.
- Don't forget to run 'make test'.
- Installing shared extensions: /usr/local/lib/php/extensions/no-debug-non-zts-20180731/
- Installing header files: /usr/local/include/php/
- find . -name \*.gcno -o -name \*.gcda | xargs rm -f
- find . -name \*.lo -o -name \*.o | xargs rm -f
- find . -name \*.la -o -name \*.a | xargs rm -f
- find . -name \*.so | xargs rm -f
- find . -name .libs -a -type d|xargs rm -rf
- rm -f libphp.la modules/* libs/*
- Configuring for:
- PHP Api Version: 20180731
- Zend Module Api No: 20180731
- Zend Extension Api No: 320180731
- checking for grep that handles long lines and -e... /bin/grep
- checking for egrep... /bin/grep -E
- checking for a sed that does not truncate output... /bin/sed
- checking for cc... cc
- checking whether the C compiler works... yes
- checking for C compiler default output file name... a.out
- checking for suffix of executables...
- checking whether we are cross compiling... no
- checking for suffix of object files... o
- checking whether we are using the GNU C compiler... yes
- checking whether cc accepts -g... yes
- checking for cc option to accept ISO C89... none needed
- checking how to run the C preprocessor... cc -E
- checking for icc... no
- checking for suncc... no
- checking whether cc understands -c and -o together... yes
- checking for system library directory... lib
- checking if compiler supports -R... no
- checking if compiler supports -Wl,-rpath,... yes
- checking build system type... x86_64-pc-linux-gnu
- checking host system type... x86_64-pc-linux-gnu
- checking target system type... x86_64-pc-linux-gnu
- checking for PHP prefix... /usr/local
- checking for PHP includes... -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib
- checking for PHP extension directory... /usr/local/lib/php/extensions/no-debug-non-zts-20180731
- checking for PHP installed headers prefix... /usr/local/include/php
- checking if debug is enabled... no
- checking if zts is enabled... no
- checking for re2c... re2c
- checking for re2c version... 0.16 (ok)
- checking for gawk... no
- checking for nawk... nawk
- checking if nawk is broken... no
- checking whether to enable Zend OPcache support... yes, shared
- checking whether to enable file based caching... yes
- checking whether to enable copying PHP CODE pages into HUGE PAGES... yes
- checking for mprotect... yes
- 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 unistd.h... (cached) yes
- checking sys/uio.h usability... yes
- checking sys/uio.h presence... yes
- checking for sys/uio.h... yes
- checking for sysvipc shared memory support... yes
- checking for mmap() using MAP_ANON shared memory support... yes
- checking for mmap() using /dev/zero shared memory support... yes
- checking for mmap() using shm_open() shared memory support... no
- checking for mmap() using regular file shared memory support... yes
- checking for ld used by cc... /usr/bin/ld
- checking if the linker (/usr/bin/ld) is GNU ld... yes
- checking for /usr/bin/ld option to reload object files... -r
- checking for BSD-compatible nm... /usr/bin/nm -B
- checking whether ln -s works... yes
- checking how to recognize dependent libraries... pass_all
- checking dlfcn.h usability... yes
- checking dlfcn.h presence... yes
- checking for dlfcn.h... yes
- checking the maximum length of command line arguments... 1572864
- checking command to parse /usr/bin/nm -B output from cc object... ok
- checking for objdir... .libs
- checking for ar... ar
- checking for ranlib... ranlib
- checking for strip... strip
- checking if cc supports -fno-rtti -fno-exceptions... no
- checking for cc option to produce PIC... -fPIC
- checking if cc PIC flag -fPIC works... yes
- checking if cc static flag -static works... yes
- checking if cc supports -c -o file.o... yes
- checking whether the cc 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
- creating libtool
- appending configuration tag "CXX" to libtool
- configure: creating ./config.status
- config.status: creating config.h
- /bin/bash /usr/src/php/ext/opcache/libtool --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/ZendAccelerator.c -o ZendAccelerator.lo
- /bin/bash /usr/src/php/ext/opcache/libtool --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/zend_accelerator_blacklist.c -o zend_accelerator_blacklist.lo
- /bin/bash /usr/src/php/ext/opcache/libtool --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/zend_accelerator_debug.c -o zend_accelerator_debug.lo
- /bin/bash /usr/src/php/ext/opcache/libtool --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/zend_accelerator_hash.c -o zend_accelerator_hash.lo
- /bin/bash /usr/src/php/ext/opcache/libtool --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/zend_accelerator_module.c -o zend_accelerator_module.lo
- /bin/bash /usr/src/php/ext/opcache/libtool --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/zend_persist.c -o zend_persist.lo
- /bin/bash /usr/src/php/ext/opcache/libtool --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/zend_persist_calc.c -o zend_persist_calc.lo
- /bin/bash /usr/src/php/ext/opcache/libtool --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/zend_file_cache.c -o zend_file_cache.lo
- mkdir .libs
- mkdir .libs
- mkdir: cannot create directory '.libs': File exists
- cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/zend_persist.c -fPIC -DPIC -o .libs/zend_persist.o
- cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/zend_accelerator_hash.c -fPIC -DPIC -o .libs/zend_accelerator_hash.o
- cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/zend_accelerator_module.c -fPIC -DPIC -o .libs/zend_accelerator_module.o
- cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/zend_accelerator_debug.c -fPIC -DPIC -o .libs/zend_accelerator_debug.o
- cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/ZendAccelerator.c -fPIC -DPIC -o .libs/ZendAccelerator.o
- cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/zend_accelerator_blacklist.c -fPIC -DPIC -o .libs/zend_accelerator_blacklist.o
- cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/zend_file_cache.c -fPIC -DPIC -o .libs/zend_file_cache.o
- cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/zend_persist_calc.c -fPIC -DPIC -o .libs/zend_persist_calc.o
- /bin/bash /usr/src/php/ext/opcache/libtool --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/zend_shared_alloc.c -o zend_shared_alloc.lo
- /bin/bash /usr/src/php/ext/opcache/libtool --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/zend_accelerator_util_funcs.c -o zend_accelerator_util_funcs.lo
- /bin/bash /usr/src/php/ext/opcache/libtool --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/shared_alloc_shm.c -o shared_alloc_shm.lo
- cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/zend_shared_alloc.c -fPIC -DPIC -o .libs/zend_shared_alloc.o
- /bin/bash /usr/src/php/ext/opcache/libtool --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/shared_alloc_mmap.c -o shared_alloc_mmap.lo
- /bin/bash /usr/src/php/ext/opcache/libtool --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/shared_alloc_posix.c -o shared_alloc_posix.lo
- cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/zend_accelerator_util_funcs.c -fPIC -DPIC -o .libs/zend_accelerator_util_funcs.o
- cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/shared_alloc_shm.c -fPIC -DPIC -o .libs/shared_alloc_shm.o
- cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/shared_alloc_mmap.c -fPIC -DPIC -o .libs/shared_alloc_mmap.o
- cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/shared_alloc_posix.c -fPIC -DPIC -o .libs/shared_alloc_posix.o
- /bin/bash /usr/src/php/ext/opcache/libtool --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/Optimizer/zend_optimizer.c -o Optimizer/zend_optimizer.lo
- /bin/bash /usr/src/php/ext/opcache/libtool --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/Optimizer/pass1_5.c -o Optimizer/pass1_5.lo
- /bin/bash /usr/src/php/ext/opcache/libtool --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/Optimizer/pass2.c -o Optimizer/pass2.lo
- /bin/bash /usr/src/php/ext/opcache/libtool --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/Optimizer/pass3.c -o Optimizer/pass3.lo
- /bin/bash /usr/src/php/ext/opcache/libtool --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/Optimizer/optimize_func_calls.c -o Optimizer/optimize_func_calls.lo
- mkdir Optimizer/.libs
- cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/Optimizer/zend_optimizer.c -fPIC -DPIC -o Optimizer/.libs/zend_optimizer.o
- cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/Optimizer/pass1_5.c -fPIC -DPIC -o Optimizer/.libs/pass1_5.o
- cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/Optimizer/pass2.c -fPIC -DPIC -o Optimizer/.libs/pass2.o
- cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/Optimizer/pass3.c -fPIC -DPIC -o Optimizer/.libs/pass3.o
- cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/Optimizer/optimize_func_calls.c -fPIC -DPIC -o Optimizer/.libs/optimize_func_calls.o
- /bin/bash /usr/src/php/ext/opcache/libtool --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/Optimizer/block_pass.c -o Optimizer/block_pass.lo
- /bin/bash /usr/src/php/ext/opcache/libtool --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/Optimizer/optimize_temp_vars_5.c -o Optimizer/optimize_temp_vars_5.lo
- cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/Optimizer/block_pass.c -fPIC -DPIC -o Optimizer/.libs/block_pass.o
- /bin/bash /usr/src/php/ext/opcache/libtool --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/Optimizer/nop_removal.c -o Optimizer/nop_removal.lo
- /bin/bash /usr/src/php/ext/opcache/libtool --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/Optimizer/compact_literals.c -o Optimizer/compact_literals.lo
- /bin/bash /usr/src/php/ext/opcache/libtool --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/Optimizer/zend_cfg.c -o Optimizer/zend_cfg.lo
- cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/Optimizer/optimize_temp_vars_5.c -fPIC -DPIC -o Optimizer/.libs/optimize_temp_vars_5.o
- /bin/bash /usr/src/php/ext/opcache/libtool --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/Optimizer/zend_dfg.c -o Optimizer/zend_dfg.lo
- cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/Optimizer/nop_removal.c -fPIC -DPIC -o Optimizer/.libs/nop_removal.o
- cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/Optimizer/compact_literals.c -fPIC -DPIC -o Optimizer/.libs/compact_literals.o
- /bin/bash /usr/src/php/ext/opcache/libtool --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/Optimizer/dfa_pass.c -o Optimizer/dfa_pass.lo
- cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/Optimizer/zend_cfg.c -fPIC -DPIC -o Optimizer/.libs/zend_cfg.o
- cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/Optimizer/zend_dfg.c -fPIC -DPIC -o Optimizer/.libs/zend_dfg.o
- cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/Optimizer/dfa_pass.c -fPIC -DPIC -o Optimizer/.libs/dfa_pass.o
- /bin/bash /usr/src/php/ext/opcache/libtool --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/Optimizer/zend_ssa.c -o Optimizer/zend_ssa.lo
- /bin/bash /usr/src/php/ext/opcache/libtool --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/Optimizer/zend_inference.c -o Optimizer/zend_inference.lo
- cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/Optimizer/zend_ssa.c -fPIC -DPIC -o Optimizer/.libs/zend_ssa.o
- /bin/bash /usr/src/php/ext/opcache/libtool --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/Optimizer/zend_func_info.c -o Optimizer/zend_func_info.lo
- /bin/bash /usr/src/php/ext/opcache/libtool --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/Optimizer/zend_call_graph.c -o Optimizer/zend_call_graph.lo
- cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/Optimizer/zend_inference.c -fPIC -DPIC -o Optimizer/.libs/zend_inference.o
- /bin/bash /usr/src/php/ext/opcache/libtool --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/Optimizer/sccp.c -o Optimizer/sccp.lo
- cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/Optimizer/zend_func_info.c -fPIC -DPIC -o Optimizer/.libs/zend_func_info.o
- cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/Optimizer/zend_call_graph.c -fPIC -DPIC -o Optimizer/.libs/zend_call_graph.o
- cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/Optimizer/sccp.c -fPIC -DPIC -o Optimizer/.libs/sccp.o
- /bin/bash /usr/src/php/ext/opcache/libtool --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/Optimizer/scdf.c -o Optimizer/scdf.lo
- cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/Optimizer/scdf.c -fPIC -DPIC -o Optimizer/.libs/scdf.o
- /bin/bash /usr/src/php/ext/opcache/libtool --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/Optimizer/dce.c -o Optimizer/dce.lo
- /bin/bash /usr/src/php/ext/opcache/libtool --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/Optimizer/escape_analysis.c -o Optimizer/escape_analysis.lo
- /bin/bash /usr/src/php/ext/opcache/libtool --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/Optimizer/compact_vars.c -o Optimizer/compact_vars.lo
- cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/Optimizer/dce.c -fPIC -DPIC -o Optimizer/.libs/dce.o
- /bin/bash /usr/src/php/ext/opcache/libtool --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/Optimizer/zend_dump.c -o Optimizer/zend_dump.lo
- cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/Optimizer/compact_vars.c -fPIC -DPIC -o Optimizer/.libs/compact_vars.o
- cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/Optimizer/escape_analysis.c -fPIC -DPIC -o Optimizer/.libs/escape_analysis.o
- cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/opcache -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/opcache/Optimizer/zend_dump.c -fPIC -DPIC -o Optimizer/.libs/zend_dump.o
- /bin/bash /usr/src/php/ext/opcache/libtool --mode=link cc -DPHP_ATOM_INC -I/usr/src/php/ext/opcache/include -I/usr/src/php/ext/opcache/main -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -Wl,-O1 -Wl,--hash-style=both -pie -o opcache.la -export-dynamic -avoid-version -prefer-pic -module -rpath /usr/src/php/ext/opcache/modules ZendAccelerator.lo zend_accelerator_blacklist.lo zend_accelerator_debug.lo zend_accelerator_hash.lo zend_accelerator_module.lo zend_persist.lo zend_persist_calc.lo zend_file_cache.lo zend_shared_alloc.lo zend_accelerator_util_funcs.lo shared_alloc_shm.lo shared_alloc_mmap.lo shared_alloc_posix.lo Optimizer/zend_optimizer.lo Optimizer/pass1_5.lo Optimizer/pass2.lo Optimizer/pass3.lo Optimizer/optimize_func_calls.lo Optimizer/block_pass.lo Optimizer/optimize_temp_vars_5.lo Optimizer/nop_removal.lo Optimizer/compact_literals.lo Optimizer/zend_cfg.lo Optimizer/zend_dfg.lo Optimizer/dfa_pass.lo Optimizer/zend_ssa.lo Optimizer/zend_inference.lo Optimizer/zend_func_info.lo Optimizer/zend_call_graph.lo Optimizer/sccp.lo Optimizer/scdf.lo Optimizer/dce.lo Optimizer/escape_analysis.lo Optimizer/compact_vars.lo Optimizer/zend_dump.lo
- cc -shared .libs/ZendAccelerator.o .libs/zend_accelerator_blacklist.o .libs/zend_accelerator_debug.o .libs/zend_accelerator_hash.o .libs/zend_accelerator_module.o .libs/zend_persist.o .libs/zend_persist_calc.o .libs/zend_file_cache.o .libs/zend_shared_alloc.o .libs/zend_accelerator_util_funcs.o .libs/shared_alloc_shm.o .libs/shared_alloc_mmap.o .libs/shared_alloc_posix.o Optimizer/.libs/zend_optimizer.o Optimizer/.libs/pass1_5.o Optimizer/.libs/pass2.o Optimizer/.libs/pass3.o Optimizer/.libs/optimize_func_calls.o Optimizer/.libs/block_pass.o Optimizer/.libs/optimize_temp_vars_5.o Optimizer/.libs/nop_removal.o Optimizer/.libs/compact_literals.o Optimizer/.libs/zend_cfg.o Optimizer/.libs/zend_dfg.o Optimizer/.libs/dfa_pass.o Optimizer/.libs/zend_ssa.o Optimizer/.libs/zend_inference.o Optimizer/.libs/zend_func_info.o Optimizer/.libs/zend_call_graph.o Optimizer/.libs/sccp.o Optimizer/.libs/scdf.o Optimizer/.libs/dce.o Optimizer/.libs/escape_analysis.o Optimizer/.libs/compact_vars.o Optimizer/.libs/zend_dump.o -Wl,-O1 -Wl,--hash-style=both -Wl,-soname -Wl,opcache.so -o .libs/opcache.so
- creating opcache.la
- (cd .libs && rm -f opcache.la && ln -s ../opcache.la opcache.la)
- /bin/bash /usr/src/php/ext/opcache/libtool --mode=install cp ./opcache.la /usr/src/php/ext/opcache/modules
- cp ./.libs/opcache.so /usr/src/php/ext/opcache/modules/opcache.so
- cp ./.libs/opcache.lai /usr/src/php/ext/opcache/modules/opcache.la
- PATH="$PATH:/sbin" ldconfig -n /usr/src/php/ext/opcache/modules
- ----------------------------------------------------------------------
- Libraries have been installed in:
- /usr/src/php/ext/opcache/modules
- If you ever happen to want to link against installed libraries
- in a given directory, LIBDIR, you must either use libtool, and
- specify the full pathname of the library, or use the `-LLIBDIR'
- flag during linking and do at least one of the following:
- - add LIBDIR to the `LD_LIBRARY_PATH' environment variable
- during execution
- - add LIBDIR to the `LD_RUN_PATH' environment variable
- during linking
- - use the `-Wl,--rpath -Wl,LIBDIR' linker flag
- - have your system administrator add LIBDIR to `/etc/ld.so.conf'
- See any operating system documentation about shared libraries for
- more information, such as the ld(1) and ld.so(8) manual pages.
- ----------------------------------------------------------------------
- Build complete.
- Don't forget to run 'make test'.
- Installing shared extensions: /usr/local/lib/php/extensions/no-debug-non-zts-20180731/
- find . -name \*.gcno -o -name \*.gcda | xargs rm -f
- find . -name \*.lo -o -name \*.o | xargs rm -f
- find . -name \*.la -o -name \*.a | xargs rm -f
- find . -name \*.so | xargs rm -f
- find . -name .libs -a -type d|xargs rm -rf
- rm -f libphp.la modules/* libs/*
- Configuring for:
- PHP Api Version: 20180731
- Zend Module Api No: 20180731
- Zend Extension Api No: 320180731
- checking for grep that handles long lines and -e... /bin/grep
- checking for egrep... /bin/grep -E
- checking for a sed that does not truncate output... /bin/sed
- checking for cc... cc
- checking whether the C compiler works... yes
- checking for C compiler default output file name... a.out
- checking for suffix of executables...
- checking whether we are cross compiling... no
- checking for suffix of object files... o
- checking whether we are using the GNU C compiler... yes
- checking whether cc accepts -g... yes
- checking for cc option to accept ISO C89... none needed
- checking how to run the C preprocessor... cc -E
- checking for icc... no
- checking for suncc... no
- checking whether cc understands -c and -o together... yes
- checking for system library directory... lib
- checking if compiler supports -R... no
- checking if compiler supports -Wl,-rpath,... yes
- checking build system type... x86_64-pc-linux-gnu
- checking host system type... x86_64-pc-linux-gnu
- checking target system type... x86_64-pc-linux-gnu
- checking for PHP prefix... /usr/local
- checking for PHP includes... -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib
- checking for PHP extension directory... /usr/local/lib/php/extensions/no-debug-non-zts-20180731
- checking for PHP installed headers prefix... /usr/local/include/php
- checking if debug is enabled... no
- checking if zts is enabled... no
- checking for re2c... re2c
- checking for re2c version... 0.16 (ok)
- checking for gawk... no
- checking for nawk... nawk
- checking if nawk is broken... no
- checking whether to enable internationalization support... yes, shared
- checking for location of ICU headers and libraries... checking for pkg-config... /usr/bin/pkg-config
- found 57.1
- found
- checking for g++... g++
- checking whether we are using the GNU C++ compiler... yes
- checking whether g++ accepts -g... yes
- checking how to run the C++ preprocessor... g++ -E
- checking for ld used by cc... /usr/bin/ld
- checking if the linker (/usr/bin/ld) is GNU ld... yes
- checking for /usr/bin/ld option to reload object files... -r
- checking for BSD-compatible nm... /usr/bin/nm -B
- checking whether ln -s works... yes
- checking how to recognize dependent libraries... pass_all
- 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 dlfcn.h usability... yes
- checking dlfcn.h presence... yes
- checking for dlfcn.h... yes
- checking how to run the C++ preprocessor... g++ -E
- checking the maximum length of command line arguments... 1572864
- checking command to parse /usr/bin/nm -B output from cc object... ok
- checking for objdir... .libs
- checking for ar... ar
- checking for ranlib... ranlib
- checking for strip... strip
- checking if cc supports -fno-rtti -fno-exceptions... no
- checking for cc option to produce PIC... -fPIC
- checking if cc PIC flag -fPIC works... yes
- checking if cc static flag -static works... yes
- checking if cc supports -c -o file.o... yes
- checking whether the cc 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
- creating libtool
- appending configuration tag "CXX" to libtool
- checking for ld used by g++... /usr/bin/ld -m elf_x86_64
- checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
- checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
- checking for g++ option to produce PIC... -fPIC
- checking if g++ PIC flag -fPIC works... yes
- checking if g++ static flag -static works... yes
- checking if g++ supports -c -o file.o... yes
- checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
- checking dynamic linker characteristics... GNU/Linux ld.so
- (cached) (cached) checking how to hardcode library paths into programs... immediate
- configure: creating ./config.status
- config.status: creating config.h
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/php_intl.c -o php_intl.lo
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/intl_error.c -o intl_error.lo
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/intl_convert.c -o intl_convert.lo
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/collator/collator.c -o collator/collator.lo
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/collator/collator_class.c -o collator/collator_class.lo
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/collator/collator_sort.c -o collator/collator_sort.lo
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/collator/collator_convert.c -o collator/collator_convert.lo
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/collator/collator_locale.c -o collator/collator_locale.lo
- mkdir collator/.libs
- mkdir .libs
- cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/collator/collator_sort.c -fPIC -DPIC -o collator/.libs/collator_sort.o
- cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/collator/collator_locale.c -fPIC -DPIC -o collator/.libs/collator_locale.o
- cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/collator/collator_class.c -fPIC -DPIC -o collator/.libs/collator_class.o
- cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/php_intl.c -fPIC -DPIC -o .libs/php_intl.o
- cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/intl_convert.c -fPIC -DPIC -o .libs/intl_convert.o
- cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/intl_error.c -fPIC -DPIC -o .libs/intl_error.o
- cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/collator/collator_convert.c -fPIC -DPIC -o collator/.libs/collator_convert.o
- cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/collator/collator.c -fPIC -DPIC -o collator/.libs/collator.o
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/collator/collator_compare.c -o collator/collator_compare.lo
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/collator/collator_attr.c -o collator/collator_attr.lo
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/collator/collator_create.c -o collator/collator_create.lo
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/collator/collator_is_numeric.c -o collator/collator_is_numeric.lo
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/collator/collator_error.c -o collator/collator_error.lo
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/common/common_error.c -o common/common_error.lo
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/converter/converter.c -o converter/converter.lo
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/formatter/formatter.c -o formatter/formatter.lo
- cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/collator/collator_compare.c -fPIC -DPIC -o collator/.libs/collator_compare.o
- cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/collator/collator_attr.c -fPIC -DPIC -o collator/.libs/collator_attr.o
- cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/collator/collator_create.c -fPIC -DPIC -o collator/.libs/collator_create.o
- cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/collator/collator_is_numeric.c -fPIC -DPIC -o collator/.libs/collator_is_numeric.o
- cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/collator/collator_error.c -fPIC -DPIC -o collator/.libs/collator_error.o
- mkdir common/.libs
- cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/common/common_error.c -fPIC -DPIC -o common/.libs/common_error.o
- mkdir converter/.libs
- cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/converter/converter.c -fPIC -DPIC -o converter/.libs/converter.o
- mkdir formatter/.libs
- cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/formatter/formatter.c -fPIC -DPIC -o formatter/.libs/formatter.o
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/formatter/formatter_main.c -o formatter/formatter_main.lo
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/formatter/formatter_class.c -o formatter/formatter_class.lo
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/formatter/formatter_attr.c -o formatter/formatter_attr.lo
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/formatter/formatter_data.c -o formatter/formatter_data.lo
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/formatter/formatter_format.c -o formatter/formatter_format.lo
- cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/formatter/formatter_main.c -fPIC -DPIC -o formatter/.libs/formatter_main.o
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/formatter/formatter_parse.c -o formatter/formatter_parse.lo
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/normalizer/normalizer.c -o normalizer/normalizer.lo
- cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/formatter/formatter_class.c -fPIC -DPIC -o formatter/.libs/formatter_class.o
- cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/formatter/formatter_attr.c -fPIC -DPIC -o formatter/.libs/formatter_attr.o
- cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/formatter/formatter_data.c -fPIC -DPIC -o formatter/.libs/formatter_data.o
- cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/formatter/formatter_format.c -fPIC -DPIC -o formatter/.libs/formatter_format.o
- cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/formatter/formatter_parse.c -fPIC -DPIC -o formatter/.libs/formatter_parse.o
- mkdir normalizer/.libs
- cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/normalizer/normalizer.c -fPIC -DPIC -o normalizer/.libs/normalizer.o
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/normalizer/normalizer_class.c -o normalizer/normalizer_class.lo
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/normalizer/normalizer_normalize.c -o normalizer/normalizer_normalize.lo
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/locale/locale.c -o locale/locale.lo
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/locale/locale_class.c -o locale/locale_class.lo
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/locale/locale_methods.c -o locale/locale_methods.lo
- cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/normalizer/normalizer_class.c -fPIC -DPIC -o normalizer/.libs/normalizer_class.o
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/dateformat/dateformat.c -o dateformat/dateformat.lo
- cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/normalizer/normalizer_normalize.c -fPIC -DPIC -o normalizer/.libs/normalizer_normalize.o
- mkdir locale/.libs
- cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/locale/locale.c -fPIC -DPIC -o locale/.libs/locale.o
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/dateformat/dateformat_class.c -o dateformat/dateformat_class.lo
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/dateformat/dateformat_attr.c -o dateformat/dateformat_attr.lo
- cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/locale/locale_class.c -fPIC -DPIC -o locale/.libs/locale_class.o
- cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/locale/locale_methods.c -fPIC -DPIC -o locale/.libs/locale_methods.o
- mkdir dateformat/.libs
- cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/dateformat/dateformat.c -fPIC -DPIC -o dateformat/.libs/dateformat.o
- cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/dateformat/dateformat_class.c -fPIC -DPIC -o dateformat/.libs/dateformat_class.o
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/dateformat/dateformat_data.c -o dateformat/dateformat_data.lo
- cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/dateformat/dateformat_attr.c -fPIC -DPIC -o dateformat/.libs/dateformat_attr.o
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/dateformat/dateformat_format.c -o dateformat/dateformat_format.lo
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/dateformat/dateformat_parse.c -o dateformat/dateformat_parse.lo
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/msgformat/msgformat.c -o msgformat/msgformat.lo
- cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/dateformat/dateformat_data.c -fPIC -DPIC -o dateformat/.libs/dateformat_data.o
- cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/dateformat/dateformat_format.c -fPIC -DPIC -o dateformat/.libs/dateformat_format.o
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/msgformat/msgformat_attr.c -o msgformat/msgformat_attr.lo
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/msgformat/msgformat_class.c -o msgformat/msgformat_class.lo
- cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/dateformat/dateformat_parse.c -fPIC -DPIC -o dateformat/.libs/dateformat_parse.o
- mkdir msgformat/.libs
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/msgformat/msgformat_data.c -o msgformat/msgformat_data.lo
- cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/msgformat/msgformat.c -fPIC -DPIC -o msgformat/.libs/msgformat.o
- cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/msgformat/msgformat_attr.c -fPIC -DPIC -o msgformat/.libs/msgformat_attr.o
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/msgformat/msgformat_format.c -o msgformat/msgformat_format.lo
- cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/msgformat/msgformat_class.c -fPIC -DPIC -o msgformat/.libs/msgformat_class.o
- cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/msgformat/msgformat_data.c -fPIC -DPIC -o msgformat/.libs/msgformat_data.o
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/msgformat/msgformat_parse.c -o msgformat/msgformat_parse.lo
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/grapheme/grapheme_string.c -o grapheme/grapheme_string.lo
- cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/msgformat/msgformat_format.c -fPIC -DPIC -o msgformat/.libs/msgformat_format.o
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/grapheme/grapheme_util.c -o grapheme/grapheme_util.lo
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/resourcebundle/resourcebundle.c -o resourcebundle/resourcebundle.lo
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/resourcebundle/resourcebundle_class.c -o resourcebundle/resourcebundle_class.lo
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/resourcebundle/resourcebundle_iterator.c -o resourcebundle/resourcebundle_iterator.lo
- cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/msgformat/msgformat_parse.c -fPIC -DPIC -o msgformat/.libs/msgformat_parse.o
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/transliterator/transliterator.c -o transliterator/transliterator.lo
- mkdir grapheme/.libs
- cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/grapheme/grapheme_string.c -fPIC -DPIC -o grapheme/.libs/grapheme_string.o
- cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/grapheme/grapheme_util.c -fPIC -DPIC -o grapheme/.libs/grapheme_util.o
- mkdir resourcebundle/.libs
- cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/resourcebundle/resourcebundle.c -fPIC -DPIC -o resourcebundle/.libs/resourcebundle.o
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/transliterator/transliterator_class.c -o transliterator/transliterator_class.lo
- cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/resourcebundle/resourcebundle_class.c -fPIC -DPIC -o resourcebundle/.libs/resourcebundle_class.o
- cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/resourcebundle/resourcebundle_iterator.c -fPIC -DPIC -o resourcebundle/.libs/resourcebundle_iterator.o
- mkdir transliterator/.libs
- cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/transliterator/transliterator.c -fPIC -DPIC -o transliterator/.libs/transliterator.o
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/transliterator/transliterator_methods.c -o transliterator/transliterator_methods.lo
- cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/transliterator/transliterator_class.c -fPIC -DPIC -o transliterator/.libs/transliterator_class.o
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/uchar/uchar.c -o uchar/uchar.lo
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/idn/idn.c -o idn/idn.lo
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/spoofchecker/spoofchecker_class.c -o spoofchecker/spoofchecker_class.lo
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/spoofchecker/spoofchecker.c -o spoofchecker/spoofchecker.lo
- cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/transliterator/transliterator_methods.c -fPIC -DPIC -o transliterator/.libs/transliterator_methods.o
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/spoofchecker/spoofchecker_create.c -o spoofchecker/spoofchecker_create.lo
- mkdir uchar/.libs
- cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/uchar/uchar.c -fPIC -DPIC -o uchar/.libs/uchar.o
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/spoofchecker/spoofchecker_main.c -o spoofchecker/spoofchecker_main.lo
- mkdir idn/.libs
- cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/idn/idn.c -fPIC -DPIC -o idn/.libs/idn.o
- mkdir spoofchecker/.libs
- cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/spoofchecker/spoofchecker_class.c -fPIC -DPIC -o spoofchecker/.libs/spoofchecker_class.o
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile g++ -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DU_USING_ICU_NAMESPACE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -g -O2 -c /usr/src/php/ext/intl/intl_convertcpp.cpp -o intl_convertcpp.lo
- cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/spoofchecker/spoofchecker.c -fPIC -DPIC -o spoofchecker/.libs/spoofchecker.o
- cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/spoofchecker/spoofchecker_create.c -fPIC -DPIC -o spoofchecker/.libs/spoofchecker_create.o
- cc -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/intl/spoofchecker/spoofchecker_main.c -fPIC -DPIC -o spoofchecker/.libs/spoofchecker_main.o
- g++ -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DU_USING_ICU_NAMESPACE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -g -O2 -c /usr/src/php/ext/intl/intl_convertcpp.cpp -fPIC -DPIC -o .libs/intl_convertcpp.o
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile g++ -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DU_USING_ICU_NAMESPACE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -g -O2 -c /usr/src/php/ext/intl/common/common_enum.cpp -o common/common_enum.lo
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile g++ -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DU_USING_ICU_NAMESPACE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -g -O2 -c /usr/src/php/ext/intl/common/common_date.cpp -o common/common_date.lo
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile g++ -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DU_USING_ICU_NAMESPACE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -g -O2 -c /usr/src/php/ext/intl/dateformat/dateformat_format_object.cpp -o dateformat/dateformat_format_object.lo
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile g++ -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DU_USING_ICU_NAMESPACE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -g -O2 -c /usr/src/php/ext/intl/dateformat/dateformat_create.cpp -o dateformat/dateformat_create.lo
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile g++ -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DU_USING_ICU_NAMESPACE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -g -O2 -c /usr/src/php/ext/intl/dateformat/dateformat_attrcpp.cpp -o dateformat/dateformat_attrcpp.lo
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile g++ -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DU_USING_ICU_NAMESPACE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -g -O2 -c /usr/src/php/ext/intl/dateformat/dateformat_helpers.cpp -o dateformat/dateformat_helpers.lo
- g++ -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DU_USING_ICU_NAMESPACE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -g -O2 -c /usr/src/php/ext/intl/common/common_enum.cpp -fPIC -DPIC -o common/.libs/common_enum.o
- g++ -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DU_USING_ICU_NAMESPACE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -g -O2 -c /usr/src/php/ext/intl/dateformat/dateformat_format_object.cpp -fPIC -DPIC -o dateformat/.libs/dateformat_format_object.o
- g++ -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DU_USING_ICU_NAMESPACE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -g -O2 -c /usr/src/php/ext/intl/common/common_date.cpp -fPIC -DPIC -o common/.libs/common_date.o
- g++ -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DU_USING_ICU_NAMESPACE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -g -O2 -c /usr/src/php/ext/intl/dateformat/dateformat_create.cpp -fPIC -DPIC -o dateformat/.libs/dateformat_create.o
- g++ -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DU_USING_ICU_NAMESPACE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -g -O2 -c /usr/src/php/ext/intl/dateformat/dateformat_attrcpp.cpp -fPIC -DPIC -o dateformat/.libs/dateformat_attrcpp.o
- g++ -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DU_USING_ICU_NAMESPACE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -g -O2 -c /usr/src/php/ext/intl/dateformat/dateformat_helpers.cpp -fPIC -DPIC -o dateformat/.libs/dateformat_helpers.o
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile g++ -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DU_USING_ICU_NAMESPACE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -g -O2 -c /usr/src/php/ext/intl/msgformat/msgformat_helpers.cpp -o msgformat/msgformat_helpers.lo
- g++ -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DU_USING_ICU_NAMESPACE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -g -O2 -c /usr/src/php/ext/intl/msgformat/msgformat_helpers.cpp -fPIC -DPIC -o msgformat/.libs/msgformat_helpers.o
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile g++ -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DU_USING_ICU_NAMESPACE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -g -O2 -c /usr/src/php/ext/intl/timezone/timezone_class.cpp -o timezone/timezone_class.lo
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile g++ -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DU_USING_ICU_NAMESPACE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -g -O2 -c /usr/src/php/ext/intl/timezone/timezone_methods.cpp -o timezone/timezone_methods.lo
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile g++ -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DU_USING_ICU_NAMESPACE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -g -O2 -c /usr/src/php/ext/intl/calendar/calendar_class.cpp -o calendar/calendar_class.lo
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile g++ -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DU_USING_ICU_NAMESPACE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -g -O2 -c /usr/src/php/ext/intl/calendar/calendar_methods.cpp -o calendar/calendar_methods.lo
- mkdir timezone/.libs
- g++ -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DU_USING_ICU_NAMESPACE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -g -O2 -c /usr/src/php/ext/intl/timezone/timezone_class.cpp -fPIC -DPIC -o timezone/.libs/timezone_class.o
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile g++ -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DU_USING_ICU_NAMESPACE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -g -O2 -c /usr/src/php/ext/intl/calendar/gregoriancalendar_methods.cpp -o calendar/gregoriancalendar_methods.lo
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile g++ -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DU_USING_ICU_NAMESPACE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -g -O2 -c /usr/src/php/ext/intl/breakiterator/breakiterator_class.cpp -o breakiterator/breakiterator_class.lo
- g++ -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DU_USING_ICU_NAMESPACE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -g -O2 -c /usr/src/php/ext/intl/timezone/timezone_methods.cpp -fPIC -DPIC -o timezone/.libs/timezone_methods.o
- mkdir calendar/.libs
- g++ -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DU_USING_ICU_NAMESPACE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -g -O2 -c /usr/src/php/ext/intl/calendar/calendar_methods.cpp -fPIC -DPIC -o calendar/.libs/calendar_methods.o
- g++ -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DU_USING_ICU_NAMESPACE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -g -O2 -c /usr/src/php/ext/intl/calendar/calendar_class.cpp -fPIC -DPIC -o calendar/.libs/calendar_class.o
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile g++ -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DU_USING_ICU_NAMESPACE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -g -O2 -c /usr/src/php/ext/intl/breakiterator/breakiterator_iterators.cpp -o breakiterator/breakiterator_iterators.lo
- g++ -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DU_USING_ICU_NAMESPACE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -g -O2 -c /usr/src/php/ext/intl/calendar/gregoriancalendar_methods.cpp -fPIC -DPIC -o calendar/.libs/gregoriancalendar_methods.o
- mkdir breakiterator/.libs
- g++ -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DU_USING_ICU_NAMESPACE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -g -O2 -c /usr/src/php/ext/intl/breakiterator/breakiterator_class.cpp -fPIC -DPIC -o breakiterator/.libs/breakiterator_class.o
- g++ -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DU_USING_ICU_NAMESPACE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -g -O2 -c /usr/src/php/ext/intl/breakiterator/breakiterator_iterators.cpp -fPIC -DPIC -o breakiterator/.libs/breakiterator_iterators.o
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile g++ -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DU_USING_ICU_NAMESPACE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -g -O2 -c /usr/src/php/ext/intl/breakiterator/breakiterator_methods.cpp -o breakiterator/breakiterator_methods.lo
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile g++ -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DU_USING_ICU_NAMESPACE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -g -O2 -c /usr/src/php/ext/intl/breakiterator/rulebasedbreakiterator_methods.cpp -o breakiterator/rulebasedbreakiterator_methods.lo
- g++ -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DU_USING_ICU_NAMESPACE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -g -O2 -c /usr/src/php/ext/intl/breakiterator/breakiterator_methods.cpp -fPIC -DPIC -o breakiterator/.libs/breakiterator_methods.o
- g++ -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DU_USING_ICU_NAMESPACE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -g -O2 -c /usr/src/php/ext/intl/breakiterator/rulebasedbreakiterator_methods.cpp -fPIC -DPIC -o breakiterator/.libs/rulebasedbreakiterator_methods.o
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile g++ -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DU_USING_ICU_NAMESPACE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -g -O2 -c /usr/src/php/ext/intl/breakiterator/codepointiterator_internal.cpp -o breakiterator/codepointiterator_internal.lo
- /bin/bash /usr/src/php/ext/intl/libtool --mode=compile g++ -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DU_USING_ICU_NAMESPACE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -g -O2 -c /usr/src/php/ext/intl/breakiterator/codepointiterator_methods.cpp -o breakiterator/codepointiterator_methods.lo
- g++ -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DU_USING_ICU_NAMESPACE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -g -O2 -c /usr/src/php/ext/intl/breakiterator/codepointiterator_internal.cpp -fPIC -DPIC -o breakiterator/.libs/codepointiterator_internal.o
- g++ -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DU_USING_ICU_NAMESPACE=1 -I. -I/usr/src/php/ext/intl -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -g -O2 -c /usr/src/php/ext/intl/breakiterator/codepointiterator_methods.cpp -fPIC -DPIC -o breakiterator/.libs/codepointiterator_methods.o
- /bin/bash /usr/src/php/ext/intl/libtool --mode=link g++ -DPHP_ATOM_INC -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -Wl,-O1 -Wl,--hash-style=both -pie -o intl.la -export-dynamic -avoid-version -prefer-pic -module -rpath /usr/src/php/ext/intl/modules php_intl.lo intl_error.lo intl_convert.lo collator/collator.lo collator/collator_class.lo collator/collator_sort.lo collator/collator_convert.lo collator/collator_locale.lo collator/collator_compare.lo collator/collator_attr.lo collator/collator_create.lo collator/collator_is_numeric.lo collator/collator_error.lo common/common_error.lo converter/converter.lo formatter/formatter.lo formatter/formatter_main.lo formatter/formatter_class.lo formatter/formatter_attr.lo formatter/formatter_data.lo formatter/formatter_format.lo formatter/formatter_parse.lo normalizer/normalizer.lo normalizer/normalizer_class.lo normalizer/normalizer_normalize.lo locale/locale.lo locale/locale_class.lo locale/locale_methods.lo dateformat/dateformat.lo dateformat/dateformat_class.lo dateformat/dateformat_attr.lo dateformat/dateformat_data.lo dateformat/dateformat_format.lo dateformat/dateformat_parse.lo msgformat/msgformat.lo msgformat/msgformat_attr.lo msgformat/msgformat_class.lo msgformat/msgformat_data.lo msgformat/msgformat_format.lo msgformat/msgformat_parse.lo grapheme/grapheme_string.lo grapheme/grapheme_util.lo resourcebundle/resourcebundle.lo resourcebundle/resourcebundle_class.lo resourcebundle/resourcebundle_iterator.lo transliterator/transliterator.lo transliterator/transliterator_class.lo transliterator/transliterator_methods.lo uchar/uchar.lo idn/idn.lo spoofchecker/spoofchecker_class.lo spoofchecker/spoofchecker.lo spoofchecker/spoofchecker_create.lo spoofchecker/spoofchecker_main.lo intl_convertcpp.lo common/common_enum.lo common/common_date.lo dateformat/dateformat_format_object.lo dateformat/dateformat_create.lo dateformat/dateformat_attrcpp.lo dateformat/dateformat_helpers.lo msgformat/msgformat_helpers.lo timezone/timezone_class.lo timezone/timezone_methods.lo calendar/calendar_class.lo calendar/calendar_methods.lo calendar/gregoriancalendar_methods.lo breakiterator/breakiterator_class.lo breakiterator/breakiterator_iterators.lo breakiterator/breakiterator_methods.lo breakiterator/rulebasedbreakiterator_methods.lo breakiterator/codepointiterator_internal.lo breakiterator/codepointiterator_methods.lo -licuio -licui18n -licuuc -licudata
- g++ -shared -nostdlib /usr/lib/gcc/x86_64-linux-gnu/6/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/6/crtbeginS.o .libs/php_intl.o .libs/intl_error.o .libs/intl_convert.o collator/.libs/collator.o collator/.libs/collator_class.o collator/.libs/collator_sort.o collator/.libs/collator_convert.o collator/.libs/collator_locale.o collator/.libs/collator_compare.o collator/.libs/collator_attr.o collator/.libs/collator_create.o collator/.libs/collator_is_numeric.o collator/.libs/collator_error.o common/.libs/common_error.o converter/.libs/converter.o formatter/.libs/formatter.o formatter/.libs/formatter_main.o formatter/.libs/formatter_class.o formatter/.libs/formatter_attr.o formatter/.libs/formatter_data.o formatter/.libs/formatter_format.o formatter/.libs/formatter_parse.o normalizer/.libs/normalizer.o normalizer/.libs/normalizer_class.o normalizer/.libs/normalizer_normalize.o locale/.libs/locale.o locale/.libs/locale_class.o locale/.libs/locale_methods.o dateformat/.libs/dateformat.o dateformat/.libs/dateformat_class.o dateformat/.libs/dateformat_attr.o dateformat/.libs/dateformat_data.o dateformat/.libs/dateformat_format.o dateformat/.libs/dateformat_parse.o msgformat/.libs/msgformat.o msgformat/.libs/msgformat_attr.o msgformat/.libs/msgformat_class.o msgformat/.libs/msgformat_data.o msgformat/.libs/msgformat_format.o msgformat/.libs/msgformat_parse.o grapheme/.libs/grapheme_string.o grapheme/.libs/grapheme_util.o resourcebundle/.libs/resourcebundle.o resourcebundle/.libs/resourcebundle_class.o resourcebundle/.libs/resourcebundle_iterator.o transliterator/.libs/transliterator.o transliterator/.libs/transliterator_class.o transliterator/.libs/transliterator_methods.o uchar/.libs/uchar.o idn/.libs/idn.o spoofchecker/.libs/spoofchecker_class.o spoofchecker/.libs/spoofchecker.o spoofchecker/.libs/spoofchecker_create.o spoofchecker/.libs/spoofchecker_main.o .libs/intl_convertcpp.o common/.libs/common_enum.o common/.libs/common_date.o dateformat/.libs/dateformat_format_object.o dateformat/.libs/dateformat_create.o dateformat/.libs/dateformat_attrcpp.o dateformat/.libs/dateformat_helpers.o msgformat/.libs/msgformat_helpers.o timezone/.libs/timezone_class.o timezone/.libs/timezone_methods.o calendar/.libs/calendar_class.o calendar/.libs/calendar_methods.o calendar/.libs/gregoriancalendar_methods.o breakiterator/.libs/breakiterator_class.o breakiterator/.libs/breakiterator_iterators.o breakiterator/.libs/breakiterator_methods.o breakiterator/.libs/rulebasedbreakiterator_methods.o breakiterator/.libs/codepointiterator_internal.o breakiterator/.libs/codepointiterator_methods.o -licuio -licui18n -licuuc -licudata -L/usr/lib/gcc/x86_64-linux-gnu/6 -L/usr/lib/gcc/x86_64-linux-gnu/6/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/6/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/6/../../.. -lstdc++ -lm -lc -lgcc_s /usr/lib/gcc/x86_64-linux-gnu/6/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/6/../../../x86_64-linux-gnu/crtn.o -Wl,-O1 -Wl,--hash-style=both -Wl,-soname -Wl,intl.so -o .libs/intl.so
- creating intl.la
- (cd .libs && rm -f intl.la && ln -s ../intl.la intl.la)
- /bin/bash /usr/src/php/ext/intl/libtool --mode=install cp ./intl.la /usr/src/php/ext/intl/modules
- cp ./.libs/intl.so /usr/src/php/ext/intl/modules/intl.so
- cp ./.libs/intl.lai /usr/src/php/ext/intl/modules/intl.la
- PATH="$PATH:/sbin" ldconfig -n /usr/src/php/ext/intl/modules
- ----------------------------------------------------------------------
- Libraries have been installed in:
- /usr/src/php/ext/intl/modules
- If you ever happen to want to link against installed libraries
- in a given directory, LIBDIR, you must either use libtool, and
- specify the full pathname of the library, or use the `-LLIBDIR'
- flag during linking and do at least one of the following:
- - add LIBDIR to the `LD_LIBRARY_PATH' environment variable
- during execution
- - add LIBDIR to the `LD_RUN_PATH' environment variable
- during linking
- - use the `-Wl,--rpath -Wl,LIBDIR' linker flag
- - have your system administrator add LIBDIR to `/etc/ld.so.conf'
- See any operating system documentation about shared libraries for
- more information, such as the ld(1) and ld.so(8) manual pages.
- ----------------------------------------------------------------------
- Build complete.
- Don't forget to run 'make test'.
- Installing shared extensions: /usr/local/lib/php/extensions/no-debug-non-zts-20180731/
- find . -name \*.gcno -o -name \*.gcda | xargs rm -f
- find . -name \*.lo -o -name \*.o | xargs rm -f
- find . -name \*.la -o -name \*.a | xargs rm -f
- find . -name \*.so | xargs rm -f
- find . -name .libs -a -type d|xargs rm -rf
- rm -f libphp.la modules/* libs/*
- downloading imagick-3.4.4.tgz ...
- Starting to download imagick-3.4.4.tgz (253,434 bytes)
- .....................................................done: 253,434 bytes
- 19 source files, building
- running: phpize
- Configuring for:
- PHP Api Version: 20180731
- Zend Module Api No: 20180731
- Zend Extension Api No: 320180731
- Please provide the prefix of ImageMagick installation [autodetect] : building in /tmp/pear/temp/pear-build-defaultuserxfLI0h/imagick-3.4.4
- running: /tmp/pear/temp/imagick/configure --with-php-config=/usr/local/bin/php-config --with-imagick
- checking for grep that handles long lines and -e... /bin/grep
- checking for egrep... /bin/grep -E
- checking for a sed that does not truncate output... /bin/sed
- checking for cc... cc
- checking whether the C compiler works... yes
- checking for C compiler default output file name... a.out
- checking for suffix of executables...
- checking whether we are cross compiling... no
- checking for suffix of object files... o
- checking whether we are using the GNU C compiler... yes
- checking whether cc accepts -g... yes
- checking for cc option to accept ISO C89... none needed
- checking how to run the C preprocessor... cc -E
- checking for icc... no
- checking for suncc... no
- checking whether cc understands -c and -o together... yes
- checking for system library directory... lib
- checking if compiler supports -R... no
- checking if compiler supports -Wl,-rpath,... yes
- checking build system type... x86_64-pc-linux-gnu
- checking host system type... x86_64-pc-linux-gnu
- checking target system type... x86_64-pc-linux-gnu
- checking for PHP prefix... /usr/local
- checking for PHP includes... -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib
- checking for PHP extension directory... /usr/local/lib/php/extensions/no-debug-non-zts-20180731
- checking for PHP installed headers prefix... /usr/local/include/php
- checking if debug is enabled... no
- checking if zts is enabled... no
- checking for re2c... re2c
- checking for re2c version... 0.16 (ok)
- checking for gawk... no
- checking for nawk... nawk
- checking if nawk is broken... no
- checking whether to enable the imagick extension... yes, shared
- checking for pkg-config... /usr/bin/pkg-config
- checking ImageMagick MagickWand API configuration program... checking Testing /usr/local/bin/MagickWand-config... Doesn't exist
- checking Testing /usr/bin/MagickWand-config... Doesn't exist
- checking Testing /usr/sbin/bin/MagickWand-config... Doesn't exist
- checking Testing /opt/bin/MagickWand-config... Doesn't exist
- checking Testing /opt/local/bin/MagickWand-config... Doesn't exist
- found in /usr/bin/pkg-config
- checking if ImageMagick version is at least 6.2.4... found version 6.9.7
- checking for MagickWand.h or magick-wand.h header... /usr/include/ImageMagick-6/wand/MagickWand.h
- checking PHP version is at least 5.3.2... yes. found 7.3.3
- libs
- -lMagickWand-6.Q16 -lMagickCore-6.Q16
- checking for MagickGetVersion... yes
- checking for ld used by cc... /usr/bin/ld
- checking if the linker (/usr/bin/ld) is GNU ld... yes
- checking for /usr/bin/ld option to reload object files... -r
- checking for BSD-compatible nm... /usr/bin/nm -B
- checking whether ln -s works... yes
- checking how to recognize dependent libraries... pass_all
- 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 dlfcn.h usability... yes
- checking dlfcn.h presence... yes
- checking for dlfcn.h... yes
- checking the maximum length of command line arguments... 1572864
- checking command to parse /usr/bin/nm -B output from cc object... ok
- checking for objdir... .libs
- checking for ar... ar
- checking for ranlib... ranlib
- checking for strip... strip
- checking if cc supports -fno-rtti -fno-exceptions... no
- checking for cc option to produce PIC... -fPIC
- checking if cc PIC flag -fPIC works... yes
- checking if cc static flag -static works... yes
- checking if cc supports -c -o file.o... yes
- checking whether the cc 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
- creating libtool
- appending configuration tag "CXX" to libtool
- configure: creating ./config.status
- config.status: creating config.h
- running: make
- /bin/bash /tmp/pear/temp/pear-build-defaultuserxfLI0h/imagick-3.4.4/libtool --mode=compile cc -fopenmp -DMAGICKCORE_HDRI_ENABLE=0 -DMAGICKCORE_QUANTUM_DEPTH=16 -fopenmp -DMAGICKCORE_HDRI_ENABLE=0 -DMAGICKCORE_QUANTUM_DEPTH=16 -I/usr/include/x86_64-linux-gnu//ImageMagick-6 -I/usr/include/ImageMagick-6 -I/usr/include/x86_64-linux-gnu//ImageMagick-6 -I/usr/include/ImageMagick-6 -I. -I/tmp/pear/temp/imagick -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuserxfLI0h/imagick-3.4.4/include -I/tmp/pear/temp/pear-build-defaultuserxfLI0h/imagick-3.4.4/main -I/tmp/pear/temp/imagick -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/x86_64-linux-gnu//ImageMagick-6 -I/usr/include/ImageMagick-6 -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/imagick/imagick_file.c -o imagick_file.lo
- mkdir .libs
- cc -fopenmp -DMAGICKCORE_HDRI_ENABLE=0 -DMAGICKCORE_QUANTUM_DEPTH=16 -fopenmp -DMAGICKCORE_HDRI_ENABLE=0 -DMAGICKCORE_QUANTUM_DEPTH=16 -I/usr/include/x86_64-linux-gnu//ImageMagick-6 -I/usr/include/ImageMagick-6 -I/usr/include/x86_64-linux-gnu//ImageMagick-6 -I/usr/include/ImageMagick-6 -I. -I/tmp/pear/temp/imagick -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuserxfLI0h/imagick-3.4.4/include -I/tmp/pear/temp/pear-build-defaultuserxfLI0h/imagick-3.4.4/main -I/tmp/pear/temp/imagick -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/x86_64-linux-gnu//ImageMagick-6 -I/usr/include/ImageMagick-6 -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/imagick/imagick_file.c -fPIC -DPIC -o .libs/imagick_file.o
- /bin/bash /tmp/pear/temp/pear-build-defaultuserxfLI0h/imagick-3.4.4/libtool --mode=compile cc -fopenmp -DMAGICKCORE_HDRI_ENABLE=0 -DMAGICKCORE_QUANTUM_DEPTH=16 -fopenmp -DMAGICKCORE_HDRI_ENABLE=0 -DMAGICKCORE_QUANTUM_DEPTH=16 -I/usr/include/x86_64-linux-gnu//ImageMagick-6 -I/usr/include/ImageMagick-6 -I/usr/include/x86_64-linux-gnu//ImageMagick-6 -I/usr/include/ImageMagick-6 -I. -I/tmp/pear/temp/imagick -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuserxfLI0h/imagick-3.4.4/include -I/tmp/pear/temp/pear-build-defaultuserxfLI0h/imagick-3.4.4/main -I/tmp/pear/temp/imagick -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/x86_64-linux-gnu//ImageMagick-6 -I/usr/include/ImageMagick-6 -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/imagick/imagick_class.c -o imagick_class.lo
- cc -fopenmp -DMAGICKCORE_HDRI_ENABLE=0 -DMAGICKCORE_QUANTUM_DEPTH=16 -fopenmp -DMAGICKCORE_HDRI_ENABLE=0 -DMAGICKCORE_QUANTUM_DEPTH=16 -I/usr/include/x86_64-linux-gnu//ImageMagick-6 -I/usr/include/ImageMagick-6 -I/usr/include/x86_64-linux-gnu//ImageMagick-6 -I/usr/include/ImageMagick-6 -I. -I/tmp/pear/temp/imagick -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuserxfLI0h/imagick-3.4.4/include -I/tmp/pear/temp/pear-build-defaultuserxfLI0h/imagick-3.4.4/main -I/tmp/pear/temp/imagick -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/x86_64-linux-gnu//ImageMagick-6 -I/usr/include/ImageMagick-6 -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/imagick/imagick_class.c -fPIC -DPIC -o .libs/imagick_class.o
- /tmp/pear/temp/imagick/imagick_class.c: In function 'zim_imagick_getimagematte':
- /tmp/pear/temp/imagick/imagick_class.c:299:2: warning: 'MagickGetImageMatte' is deprecated [-Wdeprecated-declarations]
- matte = MagickGetImageMatte(intern->magick_wand);
- ^~~~~
- In file included from /usr/include/ImageMagick-6/wand/MagickWand.h:82:0,
- from /tmp/pear/temp/imagick/php_imagick_defs.h:29,
- from /tmp/pear/temp/imagick/imagick_class.c:22:
- /usr/include/ImageMagick-6/wand/deprecate.h:85:3: note: declared here
- MagickGetImageMatte(MagickWand *) magick_attribute((deprecated)),
- ^~~~~~~~~~~~~~~~~~~
- /tmp/pear/temp/imagick/imagick_class.c: In function 'zim_imagick_paintfloodfillimage':
- /tmp/pear/temp/imagick/imagick_class.c:1284:3: warning: 'MagickPaintFloodfillImage' is deprecated [-Wdeprecated-declarations]
- status = MagickPaintFloodfillImage(intern->magick_wand, channel, fill_wand, fuzz, NULL, x, y);
- ^~~~~~
- In file included from /usr/include/ImageMagick-6/wand/MagickWand.h:82:0,
- from /tmp/pear/temp/imagick/php_imagick_defs.h:29,
- from /tmp/pear/temp/imagick/imagick_class.c:22:
- /usr/include/ImageMagick-6/wand/deprecate.h:102:3: note: declared here
- MagickPaintFloodfillImage(MagickWand *,const ChannelType,const PixelWand *,
- ^~~~~~~~~~~~~~~~~~~~~~~~~
- /tmp/pear/temp/imagick/imagick_class.c:1292:3: warning: 'MagickPaintFloodfillImage' is deprecated [-Wdeprecated-declarations]
- status = MagickPaintFloodfillImage(intern->magick_wand, channel, fill_wand, fuzz, border_wand, x, y);
- ^~~~~~
- In file included from /usr/include/ImageMagick-6/wand/MagickWand.h:82:0,
- from /tmp/pear/temp/imagick/php_imagick_defs.h:29,
- from /tmp/pear/temp/imagick/imagick_class.c:22:
- /usr/include/ImageMagick-6/wand/deprecate.h:102:3: note: declared here
- MagickPaintFloodfillImage(MagickWand *,const ChannelType,const PixelWand *,
- ^~~~~~~~~~~~~~~~~~~~~~~~~
- /tmp/pear/temp/imagick/imagick_class.c: In function 'zim_imagick_recolorimage':
- /tmp/pear/temp/imagick/imagick_class.c:1774:2: warning: 'MagickRecolorImage' is deprecated [-Wdeprecated-declarations]
- status = MagickRecolorImage(intern->magick_wand, order, array);
- ^~~~~~
- In file included from /usr/include/ImageMagick-6/wand/MagickWand.h:82:0,
- from /tmp/pear/temp/imagick/php_imagick_defs.h:29,
- from /tmp/pear/temp/imagick/imagick_class.c:22:
- /usr/include/ImageMagick-6/wand/deprecate.h:116:3: note: declared here
- MagickRecolorImage(MagickWand *,const size_t,const double *)
- ^~~~~~~~~~~~~~~~~~
- /tmp/pear/temp/imagick/imagick_class.c: In function 'zim_imagick_colorfloodfillimage':
- /tmp/pear/temp/imagick/imagick_class.c:4315:2: warning: 'MagickColorFloodfillImage' is deprecated [-Wdeprecated-declarations]
- status = MagickColorFloodfillImage(intern->magick_wand, fill_wand, fuzz, border_wand, x, y);
- ^~~~~~
- In file included from /usr/include/ImageMagick-6/wand/MagickWand.h:82:0,
- from /tmp/pear/temp/imagick/php_imagick_defs.h:29,
- from /tmp/pear/temp/imagick/imagick_class.c:22:
- /usr/include/ImageMagick-6/wand/deprecate.h:78:3: note: declared here
- MagickColorFloodfillImage(MagickWand *,const PixelWand *,const double,
- ^~~~~~~~~~~~~~~~~~~~~~~~~
- /tmp/pear/temp/imagick/imagick_class.c: In function 'zim_imagick_mapimage':
- /tmp/pear/temp/imagick/imagick_class.c:4743:2: warning: 'MagickMapImage' is deprecated [-Wdeprecated-declarations]
- status = MagickMapImage(intern->magick_wand, intern_map->magick_wand, dither);
- ^~~~~~
- In file included from /usr/include/ImageMagick-6/wand/MagickWand.h:82:0,
- from /tmp/pear/temp/imagick/php_imagick_defs.h:29,
- from /tmp/pear/temp/imagick/imagick_class.c:22:
- /usr/include/ImageMagick-6/wand/deprecate.h:89:3: note: declared here
- MagickMapImage(MagickWand *,const MagickWand *,const MagickBooleanType)
- ^~~~~~~~~~~~~~
- /tmp/pear/temp/imagick/imagick_class.c: In function 'zim_imagick_mattefloodfillimage':
- /tmp/pear/temp/imagick/imagick_class.c:4784:2: warning: 'MagickMatteFloodfillImage' is deprecated [-Wdeprecated-declarations]
- status = MagickMatteFloodfillImage(intern->magick_wand, alpha, fuzz, color_wand, x, y);
- ^~~~~~
- In file included from /usr/include/ImageMagick-6/wand/MagickWand.h:82:0,
- from /tmp/pear/temp/imagick/php_imagick_defs.h:29,
- from /tmp/pear/temp/imagick/imagick_class.c:22:
- /usr/include/ImageMagick-6/wand/deprecate.h:91:3: note: declared here
- MagickMatteFloodfillImage(MagickWand *,const double,const double,
- ^~~~~~~~~~~~~~~~~~~~~~~~~
- /tmp/pear/temp/imagick/imagick_class.c: In function 'zim_imagick_medianfilterimage':
- /tmp/pear/temp/imagick/imagick_class.c:4822:2: warning: 'MagickMedianFilterImage' is deprecated [-Wdeprecated-declarations]
- status = MagickMedianFilterImage(intern->magick_wand, radius);
- ^~~~~~
- In file included from /usr/include/ImageMagick-6/wand/MagickWand.h:88:0,
- from /tmp/pear/temp/imagick/php_imagick_defs.h:29,
- from /tmp/pear/temp/imagick/imagick_class.c:22:
- /usr/include/ImageMagick-6/wand/magick-image.h:222:3: note: declared here
- MagickMedianFilterImage(MagickWand *,const double),
- ^~~~~~~~~~~~~~~~~~~~~~~
- /tmp/pear/temp/imagick/imagick_class.c: In function 'zim_imagick_paintopaqueimage':
- /tmp/pear/temp/imagick/imagick_class.c:4904:2: warning: 'MagickPaintOpaqueImageChannel' is deprecated [-Wdeprecated-declarations]
- status = MagickPaintOpaqueImageChannel(intern->magick_wand, channel, target_wand, fill_wand, fuzz);
- ^~~~~~
- In file included from /usr/include/ImageMagick-6/wand/MagickWand.h:82:0,
- from /tmp/pear/temp/imagick/php_imagick_defs.h:29,
- from /tmp/pear/temp/imagick/imagick_class.c:22:
- /usr/include/ImageMagick-6/wand/deprecate.h:107:3: note: declared here
- MagickPaintOpaqueImageChannel(MagickWand *,const ChannelType,
- ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- /tmp/pear/temp/imagick/imagick_class.c: In function 'zim_imagick_painttransparentimage':
- /tmp/pear/temp/imagick/imagick_class.c:4987:2: warning: 'MagickPaintTransparentImage' is deprecated [-Wdeprecated-declarations]
- status = MagickPaintTransparentImage(intern->magick_wand, color_wand, alpha, fuzz);
- ^~~~~~
- In file included from /usr/include/ImageMagick-6/wand/MagickWand.h:82:0,
- from /tmp/pear/temp/imagick/php_imagick_defs.h:29,
- from /tmp/pear/temp/imagick/imagick_class.c:22:
- /usr/include/ImageMagick-6/wand/deprecate.h:110:3: note: declared here
- MagickPaintTransparentImage(MagickWand *,const PixelWand *,const double,
- ^~~~~~~~~~~~~~~~~~~~~~~~~~~
- /tmp/pear/temp/imagick/imagick_class.c: In function 'zim_imagick_reducenoiseimage':
- /tmp/pear/temp/imagick/imagick_class.c:5151:2: warning: 'MagickReduceNoiseImage' is deprecated [-Wdeprecated-declarations]
- status = MagickReduceNoiseImage(intern->magick_wand, radius);
- ^~~~~~
- In file included from /usr/include/ImageMagick-6/wand/MagickWand.h:88:0,
- from /tmp/pear/temp/imagick/php_imagick_defs.h:29,
- from /tmp/pear/temp/imagick/imagick_class.c:22:
- /usr/include/ImageMagick-6/wand/magick-image.h:269:3: note: declared here
- MagickReduceNoiseImage(MagickWand *,const double),
- ^~~~~~~~~~~~~~~~~~~~~~
- /tmp/pear/temp/imagick/imagick_class.c: In function 'zim_imagick_getimageattribute':
- /tmp/pear/temp/imagick/imagick_class.c:6481:2: warning: 'MagickGetImageAttribute' is deprecated [-Wdeprecated-declarations]
- attribute = MagickGetImageAttribute(intern->magick_wand, key);
- ^~~~~~~~~
- In file included from /usr/include/ImageMagick-6/wand/MagickWand.h:82:0,
- from /tmp/pear/temp/imagick/php_imagick_defs.h:29,
- from /tmp/pear/temp/imagick/imagick_class.c:22:
- /usr/include/ImageMagick-6/wand/deprecate.h:62:4: note: declared here
- *MagickGetImageAttribute(MagickWand *,const char *)
- ^~~~~~~~~~~~~~~~~~~~~~~
- /tmp/pear/temp/imagick/imagick_class.c: In function 'zim_imagick_getimagechannelextrema':
- /tmp/pear/temp/imagick/imagick_class.c:6698:2: warning: 'MagickGetImageChannelExtrema' is deprecated [-Wdeprecated-declarations]
- status = MagickGetImageChannelExtrema(intern->magick_wand, channel_type, &minima, &maxima);
- ^~~~~~
- In file included from /usr/include/ImageMagick-6/wand/MagickWand.h:82:0,
- from /tmp/pear/temp/imagick/php_imagick_defs.h:29,
- from /tmp/pear/temp/imagick/imagick_class.c:22:
- /usr/include/ImageMagick-6/wand/deprecate.h:81:3: note: declared here
- MagickGetImageChannelExtrema(MagickWand *,const ChannelType,size_t *,
- ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
- /tmp/pear/temp/imagick/imagick_class.c: In function 'zim_imagick_getimageextrema':
- /tmp/pear/temp/imagick/imagick_class.c:7039:2: warning: 'MagickGetImageExtrema' is deprecated [-Wdeprecated-declarations]
- status = MagickGetImageExtrema(intern->magick_wand, &min, &max);
- ^~~~~~
- In file included from /usr/include/ImageMagick-6/wand/MagickWand.h:82:0,
- from /tmp/pear/temp/imagick/php_imagick_defs.h:29,
- from /tmp/pear/temp/imagick/imagick_class.c:22:
- /usr/include/ImageMagick-6/wand/deprecate.h:83:3: note: declared here
- MagickGetImageExtrema(MagickWand *,size_t *,size_t *)
- ^~~~~~~~~~~~~~~~~~~~~
- /tmp/pear/temp/imagick/imagick_class.c: In function 'zim_imagick_getimageindex':
- /tmp/pear/temp/imagick/imagick_class.c:8151:2: warning: 'MagickGetImageIndex' is deprecated [-Wdeprecated-declarations]
- status = MagickGetImageIndex(intern->magick_wand);
- ^~~~~~
- In file included from /usr/include/ImageMagick-6/wand/MagickWand.h:82:0,
- from /tmp/pear/temp/imagick/php_imagick_defs.h:29,
- from /tmp/pear/temp/imagick/imagick_class.c:22:
- /usr/include/ImageMagick-6/wand/deprecate.h:68:3: note: declared here
- MagickGetImageIndex(MagickWand *) magick_attribute((deprecated));
- ^~~~~~~~~~~~~~~~~~~
- /tmp/pear/temp/imagick/imagick_class.c: In function 'zim_imagick_getimagesize':
- /tmp/pear/temp/imagick/imagick_class.c:8272:2: warning: 'MagickGetImageSize' is deprecated [-Wdeprecated-declarations]
- ZVAL_LONG(return_value, (long)MagickGetImageSize(intern->magick_wand));
- ^~~~~~~~~
- In file included from /usr/include/ImageMagick-6/wand/MagickWand.h:82:0,
- from /tmp/pear/temp/imagick/php_imagick_defs.h:29,
- from /tmp/pear/temp/imagick/imagick_class.c:22:
- /usr/include/ImageMagick-6/wand/deprecate.h:147:3: note: declared here
- MagickGetImageSize(MagickWand *) magick_attribute((deprecated));
- ^~~~~~~~~~~~~~~~~~
- /tmp/pear/temp/imagick/imagick_class.c: In function 'zim_imagick_setimageattribute':
- /tmp/pear/temp/imagick/imagick_class.c:8746:2: warning: 'MagickSetImageAttribute' is deprecated [-Wdeprecated-declarations]
- status = MagickSetImageAttribute(intern->magick_wand, key, attribute);
- ^~~~~~
- In file included from /usr/include/ImageMagick-6/wand/MagickWand.h:82:0,
- from /tmp/pear/temp/imagick/php_imagick_defs.h:29,
- from /tmp/pear/temp/imagick/imagick_class.c:22:
- /usr/include/ImageMagick-6/wand/deprecate.h:118:3: note: declared here
- MagickSetImageAttribute(MagickWand *,const char *,const char *)
- ^~~~~~~~~~~~~~~~~~~~~~~
- /tmp/pear/temp/imagick/imagick_class.c: In function 'zim_imagick_flattenimages':
- /tmp/pear/temp/imagick/imagick_class.c:9121:2: warning: 'MagickFlattenImages' is deprecated [-Wdeprecated-declarations]
- tmp_wand = MagickFlattenImages(intern->magick_wand);
- ^~~~~~~~
- In file included from /usr/include/ImageMagick-6/wand/MagickWand.h:82:0,
- from /tmp/pear/temp/imagick/php_imagick_defs.h:29,
- from /tmp/pear/temp/imagick/imagick_class.c:22:
- /usr/include/ImageMagick-6/wand/deprecate.h:139:4: note: declared here
- *MagickFlattenImages(MagickWand *) magick_attribute((deprecated)),
- ^~~~~~~~~~~~~~~~~~~
- /tmp/pear/temp/imagick/imagick_class.c: In function 'zim_imagick_averageimages':
- /tmp/pear/temp/imagick/imagick_class.c:10308:2: warning: 'MagickAverageImages' is deprecated [-Wdeprecated-declarations]
- tmp_wand = MagickAverageImages(intern->magick_wand);
- ^~~~~~~~
- In file included from /usr/include/ImageMagick-6/wand/MagickWand.h:82:0,
- from /tmp/pear/temp/imagick/php_imagick_defs.h:29,
- from /tmp/pear/temp/imagick/imagick_class.c:22:
- /usr/include/ImageMagick-6/wand/deprecate.h:138:4: note: declared here
- *MagickAverageImages(MagickWand *) magick_attribute((deprecated)),
- ^~~~~~~~~~~~~~~~~~~
- /tmp/pear/temp/imagick/imagick_class.c: In function 'zim_imagick_mosaicimages':
- /tmp/pear/temp/imagick/imagick_class.c:10811:2: warning: 'MagickMosaicImages' is deprecated [-Wdeprecated-declarations]
- tmp_wand = MagickMosaicImages(intern->magick_wand);
- ^~~~~~~~
- In file included from /usr/include/ImageMagick-6/wand/MagickWand.h:82:0,
- from /tmp/pear/temp/imagick/php_imagick_defs.h:29,
- from /tmp/pear/temp/imagick/imagick_class.c:22:
- /usr/include/ImageMagick-6/wand/deprecate.h:142:4: note: declared here
- *MagickMosaicImages(MagickWand *) magick_attribute((deprecated)),
- ^~~~~~~~~~~~~~~~~~
- /tmp/pear/temp/imagick/imagick_class.c: In function 'zim_imagick_radialblurimage':
- /tmp/pear/temp/imagick/imagick_class.c:10941:2: warning: 'MagickRadialBlurImageChannel' is deprecated [-Wdeprecated-declarations]
- status = MagickRadialBlurImageChannel(intern->magick_wand, channel, angle);
- ^~~~~~
- In file included from /usr/include/ImageMagick-6/wand/MagickWand.h:82:0,
- from /tmp/pear/temp/imagick/php_imagick_defs.h:29,
- from /tmp/pear/temp/imagick/imagick_class.c:22:
- /usr/include/ImageMagick-6/wand/deprecate.h:114:3: note: declared here
- MagickRadialBlurImageChannel(MagickWand *,const ChannelType,const double)
- ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
- /bin/bash /tmp/pear/temp/pear-build-defaultuserxfLI0h/imagick-3.4.4/libtool --mode=compile cc -fopenmp -DMAGICKCORE_HDRI_ENABLE=0 -DMAGICKCORE_QUANTUM_DEPTH=16 -fopenmp -DMAGICKCORE_HDRI_ENABLE=0 -DMAGICKCORE_QUANTUM_DEPTH=16 -I/usr/include/x86_64-linux-gnu//ImageMagick-6 -I/usr/include/ImageMagick-6 -I/usr/include/x86_64-linux-gnu//ImageMagick-6 -I/usr/include/ImageMagick-6 -I. -I/tmp/pear/temp/imagick -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuserxfLI0h/imagick-3.4.4/include -I/tmp/pear/temp/pear-build-defaultuserxfLI0h/imagick-3.4.4/main -I/tmp/pear/temp/imagick -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/x86_64-linux-gnu//ImageMagick-6 -I/usr/include/ImageMagick-6 -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/imagick/imagickdraw_class.c -o imagickdraw_class.lo
- cc -fopenmp -DMAGICKCORE_HDRI_ENABLE=0 -DMAGICKCORE_QUANTUM_DEPTH=16 -fopenmp -DMAGICKCORE_HDRI_ENABLE=0 -DMAGICKCORE_QUANTUM_DEPTH=16 -I/usr/include/x86_64-linux-gnu//ImageMagick-6 -I/usr/include/ImageMagick-6 -I/usr/include/x86_64-linux-gnu//ImageMagick-6 -I/usr/include/ImageMagick-6 -I. -I/tmp/pear/temp/imagick -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuserxfLI0h/imagick-3.4.4/include -I/tmp/pear/temp/pear-build-defaultuserxfLI0h/imagick-3.4.4/main -I/tmp/pear/temp/imagick -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/x86_64-linux-gnu//ImageMagick-6 -I/usr/include/ImageMagick-6 -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/imagick/imagickdraw_class.c -fPIC -DPIC -o .libs/imagickdraw_class.o
- /bin/bash /tmp/pear/temp/pear-build-defaultuserxfLI0h/imagick-3.4.4/libtool --mode=compile cc -fopenmp -DMAGICKCORE_HDRI_ENABLE=0 -DMAGICKCORE_QUANTUM_DEPTH=16 -fopenmp -DMAGICKCORE_HDRI_ENABLE=0 -DMAGICKCORE_QUANTUM_DEPTH=16 -I/usr/include/x86_64-linux-gnu//ImageMagick-6 -I/usr/include/ImageMagick-6 -I/usr/include/x86_64-linux-gnu//ImageMagick-6 -I/usr/include/ImageMagick-6 -I. -I/tmp/pear/temp/imagick -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuserxfLI0h/imagick-3.4.4/include -I/tmp/pear/temp/pear-build-defaultuserxfLI0h/imagick-3.4.4/main -I/tmp/pear/temp/imagick -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/x86_64-linux-gnu//ImageMagick-6 -I/usr/include/ImageMagick-6 -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/imagick/imagickpixel_class.c -o imagickpixel_class.lo
- cc -fopenmp -DMAGICKCORE_HDRI_ENABLE=0 -DMAGICKCORE_QUANTUM_DEPTH=16 -fopenmp -DMAGICKCORE_HDRI_ENABLE=0 -DMAGICKCORE_QUANTUM_DEPTH=16 -I/usr/include/x86_64-linux-gnu//ImageMagick-6 -I/usr/include/ImageMagick-6 -I/usr/include/x86_64-linux-gnu//ImageMagick-6 -I/usr/include/ImageMagick-6 -I. -I/tmp/pear/temp/imagick -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuserxfLI0h/imagick-3.4.4/include -I/tmp/pear/temp/pear-build-defaultuserxfLI0h/imagick-3.4.4/main -I/tmp/pear/temp/imagick -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/x86_64-linux-gnu//ImageMagick-6 -I/usr/include/ImageMagick-6 -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/imagick/imagickpixel_class.c -fPIC -DPIC -o .libs/imagickpixel_class.o
- /bin/bash /tmp/pear/temp/pear-build-defaultuserxfLI0h/imagick-3.4.4/libtool --mode=compile cc -fopenmp -DMAGICKCORE_HDRI_ENABLE=0 -DMAGICKCORE_QUANTUM_DEPTH=16 -fopenmp -DMAGICKCORE_HDRI_ENABLE=0 -DMAGICKCORE_QUANTUM_DEPTH=16 -I/usr/include/x86_64-linux-gnu//ImageMagick-6 -I/usr/include/ImageMagick-6 -I/usr/include/x86_64-linux-gnu//ImageMagick-6 -I/usr/include/ImageMagick-6 -I. -I/tmp/pear/temp/imagick -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuserxfLI0h/imagick-3.4.4/include -I/tmp/pear/temp/pear-build-defaultuserxfLI0h/imagick-3.4.4/main -I/tmp/pear/temp/imagick -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/x86_64-linux-gnu//ImageMagick-6 -I/usr/include/ImageMagick-6 -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/imagick/imagickpixeliterator_class.c -o imagickpixeliterator_class.lo
- cc -fopenmp -DMAGICKCORE_HDRI_ENABLE=0 -DMAGICKCORE_QUANTUM_DEPTH=16 -fopenmp -DMAGICKCORE_HDRI_ENABLE=0 -DMAGICKCORE_QUANTUM_DEPTH=16 -I/usr/include/x86_64-linux-gnu//ImageMagick-6 -I/usr/include/ImageMagick-6 -I/usr/include/x86_64-linux-gnu//ImageMagick-6 -I/usr/include/ImageMagick-6 -I. -I/tmp/pear/temp/imagick -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuserxfLI0h/imagick-3.4.4/include -I/tmp/pear/temp/pear-build-defaultuserxfLI0h/imagick-3.4.4/main -I/tmp/pear/temp/imagick -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/x86_64-linux-gnu//ImageMagick-6 -I/usr/include/ImageMagick-6 -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/imagick/imagickpixeliterator_class.c -fPIC -DPIC -o .libs/imagickpixeliterator_class.o
- /bin/bash /tmp/pear/temp/pear-build-defaultuserxfLI0h/imagick-3.4.4/libtool --mode=compile cc -fopenmp -DMAGICKCORE_HDRI_ENABLE=0 -DMAGICKCORE_QUANTUM_DEPTH=16 -fopenmp -DMAGICKCORE_HDRI_ENABLE=0 -DMAGICKCORE_QUANTUM_DEPTH=16 -I/usr/include/x86_64-linux-gnu//ImageMagick-6 -I/usr/include/ImageMagick-6 -I/usr/include/x86_64-linux-gnu//ImageMagick-6 -I/usr/include/ImageMagick-6 -I. -I/tmp/pear/temp/imagick -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuserxfLI0h/imagick-3.4.4/include -I/tmp/pear/temp/pear-build-defaultuserxfLI0h/imagick-3.4.4/main -I/tmp/pear/temp/imagick -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/x86_64-linux-gnu//ImageMagick-6 -I/usr/include/ImageMagick-6 -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/imagick/imagick_helpers.c -o imagick_helpers.lo
- cc -fopenmp -DMAGICKCORE_HDRI_ENABLE=0 -DMAGICKCORE_QUANTUM_DEPTH=16 -fopenmp -DMAGICKCORE_HDRI_ENABLE=0 -DMAGICKCORE_QUANTUM_DEPTH=16 -I/usr/include/x86_64-linux-gnu//ImageMagick-6 -I/usr/include/ImageMagick-6 -I/usr/include/x86_64-linux-gnu//ImageMagick-6 -I/usr/include/ImageMagick-6 -I. -I/tmp/pear/temp/imagick -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuserxfLI0h/imagick-3.4.4/include -I/tmp/pear/temp/pear-build-defaultuserxfLI0h/imagick-3.4.4/main -I/tmp/pear/temp/imagick -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/x86_64-linux-gnu//ImageMagick-6 -I/usr/include/ImageMagick-6 -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/imagick/imagick_helpers.c -fPIC -DPIC -o .libs/imagick_helpers.o
- /bin/bash /tmp/pear/temp/pear-build-defaultuserxfLI0h/imagick-3.4.4/libtool --mode=compile cc -fopenmp -DMAGICKCORE_HDRI_ENABLE=0 -DMAGICKCORE_QUANTUM_DEPTH=16 -fopenmp -DMAGICKCORE_HDRI_ENABLE=0 -DMAGICKCORE_QUANTUM_DEPTH=16 -I/usr/include/x86_64-linux-gnu//ImageMagick-6 -I/usr/include/ImageMagick-6 -I/usr/include/x86_64-linux-gnu//ImageMagick-6 -I/usr/include/ImageMagick-6 -I. -I/tmp/pear/temp/imagick -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuserxfLI0h/imagick-3.4.4/include -I/tmp/pear/temp/pear-build-defaultuserxfLI0h/imagick-3.4.4/main -I/tmp/pear/temp/imagick -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/x86_64-linux-gnu//ImageMagick-6 -I/usr/include/ImageMagick-6 -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/imagick/imagick.c -o imagick.lo
- cc -fopenmp -DMAGICKCORE_HDRI_ENABLE=0 -DMAGICKCORE_QUANTUM_DEPTH=16 -fopenmp -DMAGICKCORE_HDRI_ENABLE=0 -DMAGICKCORE_QUANTUM_DEPTH=16 -I/usr/include/x86_64-linux-gnu//ImageMagick-6 -I/usr/include/ImageMagick-6 -I/usr/include/x86_64-linux-gnu//ImageMagick-6 -I/usr/include/ImageMagick-6 -I. -I/tmp/pear/temp/imagick -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuserxfLI0h/imagick-3.4.4/include -I/tmp/pear/temp/pear-build-defaultuserxfLI0h/imagick-3.4.4/main -I/tmp/pear/temp/imagick -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/x86_64-linux-gnu//ImageMagick-6 -I/usr/include/ImageMagick-6 -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/imagick/imagick.c -fPIC -DPIC -o .libs/imagick.o
- /bin/bash /tmp/pear/temp/pear-build-defaultuserxfLI0h/imagick-3.4.4/libtool --mode=compile cc -fopenmp -DMAGICKCORE_HDRI_ENABLE=0 -DMAGICKCORE_QUANTUM_DEPTH=16 -fopenmp -DMAGICKCORE_HDRI_ENABLE=0 -DMAGICKCORE_QUANTUM_DEPTH=16 -I/usr/include/x86_64-linux-gnu//ImageMagick-6 -I/usr/include/ImageMagick-6 -I/usr/include/x86_64-linux-gnu//ImageMagick-6 -I/usr/include/ImageMagick-6 -I. -I/tmp/pear/temp/imagick -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuserxfLI0h/imagick-3.4.4/include -I/tmp/pear/temp/pear-build-defaultuserxfLI0h/imagick-3.4.4/main -I/tmp/pear/temp/imagick -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/x86_64-linux-gnu//ImageMagick-6 -I/usr/include/ImageMagick-6 -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/imagick/imagickkernel_class.c -o imagickkernel_class.lo
- cc -fopenmp -DMAGICKCORE_HDRI_ENABLE=0 -DMAGICKCORE_QUANTUM_DEPTH=16 -fopenmp -DMAGICKCORE_HDRI_ENABLE=0 -DMAGICKCORE_QUANTUM_DEPTH=16 -I/usr/include/x86_64-linux-gnu//ImageMagick-6 -I/usr/include/ImageMagick-6 -I/usr/include/x86_64-linux-gnu//ImageMagick-6 -I/usr/include/ImageMagick-6 -I. -I/tmp/pear/temp/imagick -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuserxfLI0h/imagick-3.4.4/include -I/tmp/pear/temp/pear-build-defaultuserxfLI0h/imagick-3.4.4/main -I/tmp/pear/temp/imagick -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/x86_64-linux-gnu//ImageMagick-6 -I/usr/include/ImageMagick-6 -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/imagick/imagickkernel_class.c -fPIC -DPIC -o .libs/imagickkernel_class.o
- /bin/bash /tmp/pear/temp/pear-build-defaultuserxfLI0h/imagick-3.4.4/libtool --mode=compile cc -fopenmp -DMAGICKCORE_HDRI_ENABLE=0 -DMAGICKCORE_QUANTUM_DEPTH=16 -fopenmp -DMAGICKCORE_HDRI_ENABLE=0 -DMAGICKCORE_QUANTUM_DEPTH=16 -I/usr/include/x86_64-linux-gnu//ImageMagick-6 -I/usr/include/ImageMagick-6 -I/usr/include/x86_64-linux-gnu//ImageMagick-6 -I/usr/include/ImageMagick-6 -I. -I/tmp/pear/temp/imagick -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuserxfLI0h/imagick-3.4.4/include -I/tmp/pear/temp/pear-build-defaultuserxfLI0h/imagick-3.4.4/main -I/tmp/pear/temp/imagick -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/x86_64-linux-gnu//ImageMagick-6 -I/usr/include/ImageMagick-6 -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/imagick/shim_im6_to_im7.c -o shim_im6_to_im7.lo
- cc -fopenmp -DMAGICKCORE_HDRI_ENABLE=0 -DMAGICKCORE_QUANTUM_DEPTH=16 -fopenmp -DMAGICKCORE_HDRI_ENABLE=0 -DMAGICKCORE_QUANTUM_DEPTH=16 -I/usr/include/x86_64-linux-gnu//ImageMagick-6 -I/usr/include/ImageMagick-6 -I/usr/include/x86_64-linux-gnu//ImageMagick-6 -I/usr/include/ImageMagick-6 -I. -I/tmp/pear/temp/imagick -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuserxfLI0h/imagick-3.4.4/include -I/tmp/pear/temp/pear-build-defaultuserxfLI0h/imagick-3.4.4/main -I/tmp/pear/temp/imagick -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/x86_64-linux-gnu//ImageMagick-6 -I/usr/include/ImageMagick-6 -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/imagick/shim_im6_to_im7.c -fPIC -DPIC -o .libs/shim_im6_to_im7.o
- /bin/bash /tmp/pear/temp/pear-build-defaultuserxfLI0h/imagick-3.4.4/libtool --mode=link cc -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuserxfLI0h/imagick-3.4.4/include -I/tmp/pear/temp/pear-build-defaultuserxfLI0h/imagick-3.4.4/main -I/tmp/pear/temp/imagick -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/x86_64-linux-gnu//ImageMagick-6 -I/usr/include/ImageMagick-6 -DHAVE_CONFIG_H -g -O2 -o imagick.la -export-dynamic -avoid-version -prefer-pic -module -rpath /tmp/pear/temp/pear-build-defaultuserxfLI0h/imagick-3.4.4/modules imagick_file.lo imagick_class.lo imagickdraw_class.lo imagickpixel_class.lo imagickpixeliterator_class.lo imagick_helpers.lo imagick.lo imagickkernel_class.lo shim_im6_to_im7.lo -lMagickWand-6.Q16 -lMagickCore-6.Q16
- cc -shared .libs/imagick_file.o .libs/imagick_class.o .libs/imagickdraw_class.o .libs/imagickpixel_class.o .libs/imagickpixeliterator_class.o .libs/imagick_helpers.o .libs/imagick.o .libs/imagickkernel_class.o .libs/shim_im6_to_im7.o /usr/lib/x86_64-linux-gnu/libMagickWand-6.Q16.so /usr/lib/x86_64-linux-gnu/libMagickCore-6.Q16.so -Wl,-soname -Wl,imagick.so -o .libs/imagick.so
- creating imagick.la
- (cd .libs && rm -f imagick.la && ln -s ../imagick.la imagick.la)
- /bin/bash /tmp/pear/temp/pear-build-defaultuserxfLI0h/imagick-3.4.4/libtool --mode=install cp ./imagick.la /tmp/pear/temp/pear-build-defaultuserxfLI0h/imagick-3.4.4/modules
- cp ./.libs/imagick.so /tmp/pear/temp/pear-build-defaultuserxfLI0h/imagick-3.4.4/modules/imagick.so
- cp ./.libs/imagick.lai /tmp/pear/temp/pear-build-defaultuserxfLI0h/imagick-3.4.4/modules/imagick.la
- PATH="$PATH:/sbin" ldconfig -n /tmp/pear/temp/pear-build-defaultuserxfLI0h/imagick-3.4.4/modules
- ----------------------------------------------------------------------
- Libraries have been installed in:
- /tmp/pear/temp/pear-build-defaultuserxfLI0h/imagick-3.4.4/modules
- If you ever happen to want to link against installed libraries
- in a given directory, LIBDIR, you must either use libtool, and
- specify the full pathname of the library, or use the `-LLIBDIR'
- flag during linking and do at least one of the following:
- - add LIBDIR to the `LD_LIBRARY_PATH' environment variable
- during execution
- - add LIBDIR to the `LD_RUN_PATH' environment variable
- during linking
- - use the `-Wl,--rpath -Wl,LIBDIR' linker flag
- - have your system administrator add LIBDIR to `/etc/ld.so.conf'
- See any operating system documentation about shared libraries for
- more information, such as the ld(1) and ld.so(8) manual pages.
- ----------------------------------------------------------------------
- Build complete.
- Don't forget to run 'make test'.
- running: make INSTALL_ROOT="/tmp/pear/temp/pear-build-defaultuserxfLI0h/install-imagick-3.4.4" install
- Installing shared extensions: /tmp/pear/temp/pear-build-defaultuserxfLI0h/install-imagick-3.4.4/usr/local/lib/php/extensions/no-debug-non-zts-20180731/
- Installing header files: /tmp/pear/temp/pear-build-defaultuserxfLI0h/install-imagick-3.4.4/usr/local/include/php/
- running: find "/tmp/pear/temp/pear-build-defaultuserxfLI0h/install-imagick-3.4.4" | xargs ls -dils
- 11016968 4 drwxr-xr-x 3 root root 4096 Dec 16 14:20 /tmp/pear/temp/pear-build-defaultuserxfLI0h/install-imagick-3.4.4
- 11017005 4 drwxr-xr-x 3 root root 4096 Dec 16 14:20 /tmp/pear/temp/pear-build-defaultuserxfLI0h/install-imagick-3.4.4/usr
- 11017006 4 drwxr-xr-x 4 root root 4096 Dec 16 14:20 /tmp/pear/temp/pear-build-defaultuserxfLI0h/install-imagick-3.4.4/usr/local
- 11017011 4 drwxr-xr-x 3 root root 4096 Dec 16 14:20 /tmp/pear/temp/pear-build-defaultuserxfLI0h/install-imagick-3.4.4/usr/local/include
- 11017012 4 drwxr-xr-x 3 root root 4096 Dec 16 14:20 /tmp/pear/temp/pear-build-defaultuserxfLI0h/install-imagick-3.4.4/usr/local/include/php
- 11017013 4 drwxr-xr-x 3 root root 4096 Dec 16 14:20 /tmp/pear/temp/pear-build-defaultuserxfLI0h/install-imagick-3.4.4/usr/local/include/php/ext
- 11017014 4 drwxr-xr-x 2 root root 4096 Dec 16 14:20 /tmp/pear/temp/pear-build-defaultuserxfLI0h/install-imagick-3.4.4/usr/local/include/php/ext/imagick
- 11017015 4 -rw-r--r-- 1 root root 1828 Dec 16 14:20 /tmp/pear/temp/pear-build-defaultuserxfLI0h/install-imagick-3.4.4/usr/local/include/php/ext/imagick/php_imagick_shared.h
- 11017007 4 drwxr-xr-x 3 root root 4096 Dec 16 14:20 /tmp/pear/temp/pear-build-defaultuserxfLI0h/install-imagick-3.4.4/usr/local/lib
- 11017008 4 drwxr-xr-x 3 root root 4096 Dec 16 14:20 /tmp/pear/temp/pear-build-defaultuserxfLI0h/install-imagick-3.4.4/usr/local/lib/php
- 11017009 4 drwxr-xr-x 3 root root 4096 Dec 16 14:20 /tmp/pear/temp/pear-build-defaultuserxfLI0h/install-imagick-3.4.4/usr/local/lib/php/extensions
- 11017010 4 drwxr-xr-x 2 root root 4096 Dec 16 14:20 /tmp/pear/temp/pear-build-defaultuserxfLI0h/install-imagick-3.4.4/usr/local/lib/php/extensions/no-debug-non-zts-20180731
- 11017003 1240 -rwxr-xr-x 1 root root 1268712 Dec 16 14:20 /tmp/pear/temp/pear-build-defaultuserxfLI0h/install-imagick-3.4.4/usr/local/lib/php/extensions/no-debug-non-zts-20180731/imagick.so
- Build process completed successfully
- Installing '/usr/local/lib/php/extensions/no-debug-non-zts-20180731/imagick.so'
- Installing '/usr/local/include/php/ext/imagick/php_imagick_shared.h'
- install ok: channel://pecl.php.net/imagick-3.4.4
- configuration option "php_ini" is not set to php.ini location
- You should add "extension=imagick.so" to php.ini
- Removing intermediate container 5b3b1b2a038a
- ---> 7f6cc6340b4c
- Step 6/15 : RUN curl -fsSLR -o /tmp/composer-setup.php https://getcomposer.org/installer && php /tmp/composer-setup.php --quiet --install-dir=/usr/local/bin --filename=composer && rm /tmp/composer-setup.php && chmod +x /usr/local/bin/composer && composer -q -n config -g repo.packagist false && composer -q -n config -g repositories.packagist-https composer https://packagist.org
- ---> Running in 84a6a48e6a9d
- Removing intermediate container 84a6a48e6a9d
- ---> e2bec9f23be3
- Step 7/15 : RUN curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar && chmod +x wp-cli.phar && mv wp-cli.phar /usr/local/bin/wp
- ---> Running in c53a55eb4557
- % Total % Received % Xferd Average Speed Time Time Time Current
- Dload Upload Total Spent Left Speed
- 100 5437k 100 5437k 0 0 12.8M 0 --:--:-- --:--:-- --:--:-- 12.8M
- Removing intermediate container c53a55eb4557
- ---> 43147aa51a9f
- Step 8/15 : RUN composer create-project roots/bedrock /var/www/bedrock $BEDROCK_VER && rm -f /var/www/bedrock/.env*
- ---> Running in d060e683a23c
- Installing roots/bedrock (1.8.12)
- - Installing roots/bedrock (1.8.12): Downloading (100%)
- Created project in /var/www/bedrock
- > php -r "copy('.env.example', '.env');"
- Loading composer repositories with package information
- Installing dependencies (including require-dev) from lock file
- Package operations: 8 installs, 0 updates, 0 removals
- - Installing johnpbloch/wordpress-core-installer (1.0.0.2): Downloading (100%)
- - Installing composer/installers (v1.5.0): Downloading (100%)
- - Installing johnpbloch/wordpress-core (4.9.8): Downloading (100%)
- - Installing johnpbloch/wordpress (4.9.8): Downloading (100%)
- - Installing oscarotero/env (v1.1.0): Downloading (100%)
- - Installing roots/wp-password-bcrypt (1.0.0): Downloading (100%)
- - Installing vlucas/phpdotenv (v2.5.1): Downloading (100%)
- - Installing squizlabs/php_codesniffer (3.3.1): Downloading (100%)
- Generating autoload files
- Removing intermediate container d060e683a23c
- ---> 35f116b4b23f
- Step 9/15 : COPY ./etc/bedrock/ /var/www/bedrock/
- ---> 8a48caf632a0
- Step 10/15 : COPY ./entrypoint.sh /usr/bin/entrypoint
- ---> 3c28c76af36b
- Step 11/15 : RUN mkdir /root/.ssh
- ---> Running in 90fda518fd60
- Removing intermediate container 90fda518fd60
- ---> 2bfa07b8d511
- Step 12/15 : COPY ./ssh/config /root/.ssh/
- ---> f9131995409e
- Step 13/15 : RUN chmod 755 /usr/bin/entrypoint && mkdir -p /var/www /var/package
- ---> Running in 323413da5097
- Removing intermediate container 323413da5097
- ---> d002d69c2881
- Step 14/15 : WORKDIR /var/www/bedrock
- ---> Running in 41dc46a0bb53
- Removing intermediate container 41dc46a0bb53
- ---> cc0fc590b7d2
- Step 15/15 : CMD [ "entrypoint" ]
- ---> Running in 89909c45c38d
- Removing intermediate container 89909c45c38d
- ---> 7f8d2e0b183c
- Successfully built 7f8d2e0b183c
- Successfully tagged bedmaker:latest
- [ Waiting for it ... ]
- \m/
- [ Starting Bedmaker ]
- docker: Error response from daemon: could not get container for db-bedmaker: No such container: db-bedmaker.
- See 'docker run --help'.
- docker: Error response from daemon: could not get container for db-bedmaker: No such container: db-bedmaker.
- See 'docker run --help'.
- Unable to find image 'alpine:latest' locally
- latest: Pulling from library/alpine
- 89d9c30c1d48: Already exists
- Digest: sha256:c19173c5ada610a5989151111163d28a67368362762534d8a8121ce95cf2bd5a
- Status: Downloaded newer image for alpine:latest
- /
- cp: can't stat '/tmp/bedmaker_fr_Dh5TU/bedmaker/bedrock-fr-*.tar.gz': No such file or directory
- chown: /tmp/bedmaker_code_VvwDN/bedrock-fr-*.tar.gz: No such file or directory
- \o/
- skhouildi@ubuntu ~/Documents/sites/bedmaker (develop) $ docker rm -f $(docker ps -aq)
- 3410aae0de2a
- aa8ec6cef31f
- 3c3d23efeec9
- skhouildi@ubuntu ~/Documents/sites/bedmaker (develop) $ bash resources/bedmaker.sh fr
- [ Starting DB ]
- \o/
- MYSQL_HOST=db-bedmaker
- MYSQL_DATABASE=bedrock
- MYSQL_USER=bedrock
- MYSQL_PASSWORD=test
- MYSQL_ROOT_PASSWORD=test
- 77aa1b81fddac6f68449616eed61d368a581886e4ec344be3bb4ba53befc5666
- docker: Error response from daemon: driver failed programming external connectivity on endpoint db-bedmaker (e9355d3dbf3740de664d082e4c5720e4ff7f34ce8d21cc8c30b1b0af5b54f74c): Error starting userland proxy: listen tcp 0.0.0.0:3306: bind: address already in use.
- Mysql is up and running.
- Sending build context to Docker daemon 291.3kB
- Step 1/15 : FROM php:7.3.3-cli
- ---> 90102e6d83ad
- Step 2/15 : ENV DEBIAN_FRONTEND=noninteractive
- ---> Using cache
- ---> fc8187d5b9c4
- Step 3/15 : ENV BEDROCK_VER=1.8.12
- ---> Using cache
- ---> dc8a83af95d0
- Step 4/15 : RUN curl -sL https://deb.nodesource.com/setup_11.x | bash - && apt-get update && apt-get install -y nodejs jq psmisc libfreetype6-dev libjpeg62-turbo-dev libmcrypt-dev pkg-config libmagickwand-dev imagemagick libjpeg-dev libpng-dev libfontconfig1 libicu-dev zip mysql-client unzip git && npm install -g gulp gulp-cli
- ---> Using cache
- ---> b162dcd44a7d
- Step 5/15 : RUN docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ && docker-php-ext-install -j$(nproc) sockets iconv pdo pdo_mysql gd mysqli opcache intl && printf "\n" | pecl install imagick && docker-php-ext-enable imagick
- ---> Using cache
- ---> 7f6cc6340b4c
- Step 6/15 : RUN curl -fsSLR -o /tmp/composer-setup.php https://getcomposer.org/installer && php /tmp/composer-setup.php --quiet --install-dir=/usr/local/bin --filename=composer && rm /tmp/composer-setup.php && chmod +x /usr/local/bin/composer && composer -q -n config -g repo.packagist false && composer -q -n config -g repositories.packagist-https composer https://packagist.org
- ---> Using cache
- ---> e2bec9f23be3
- Step 7/15 : RUN curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar && chmod +x wp-cli.phar && mv wp-cli.phar /usr/local/bin/wp
- ---> Using cache
- ---> 43147aa51a9f
- Step 8/15 : RUN composer create-project roots/bedrock /var/www/bedrock $BEDROCK_VER && rm -f /var/www/bedrock/.env*
- ---> Using cache
- ---> 35f116b4b23f
- Step 9/15 : COPY ./etc/bedrock/ /var/www/bedrock/
- ---> Using cache
- ---> 8a48caf632a0
- Step 10/15 : COPY ./entrypoint.sh /usr/bin/entrypoint
- ---> Using cache
- ---> 3c28c76af36b
- Step 11/15 : RUN mkdir /root/.ssh
- ---> Using cache
- ---> 2bfa07b8d511
- Step 12/15 : COPY ./ssh/config /root/.ssh/
- ---> Using cache
- ---> f9131995409e
- Step 13/15 : RUN chmod 755 /usr/bin/entrypoint && mkdir -p /var/www /var/package
- ---> Using cache
- ---> d002d69c2881
- Step 14/15 : WORKDIR /var/www/bedrock
- ---> Using cache
- ---> cc0fc590b7d2
- Step 15/15 : CMD [ "entrypoint" ]
- ---> Using cache
- ---> 7f8d2e0b183c
- Successfully built 7f8d2e0b183c
- Successfully tagged bedmaker:latest
- [ Waiting for it ... ]
- \m/
- [ Starting Bedmaker ]
- docker: Error response from daemon: could not get container for db-bedmaker: No such container: db-bedmaker.
- See 'docker run --help'.
- docker: Error response from daemon: could not get container for db-bedmaker: No such container: db-bedmaker.
- See 'docker run --help'.
- /
- cp: can't stat '/tmp/bedmaker_fr_aIWA0/bedmaker/bedrock-fr-*.tar.gz': No such file or directory
- chown: /tmp/bedmaker_code_1cwEk/bedrock-fr-*.tar.gz: No such file or directory
- \o/
- skhouildi@ubuntu ~/Documents/sites/bedmaker (develop) $ sudo service mysql stop
- [sudo] Mot de passe de skhouildiĀ :
- skhouildi@ubuntu ~/Documents/sites/bedmaker (develop) $ bash resources/bedmaker.sh fr
- [ Starting DB ]
- \o/
- MYSQL_HOST=db-bedmaker
- MYSQL_DATABASE=bedrock
- MYSQL_USER=bedrock
- MYSQL_PASSWORD=test
- MYSQL_ROOT_PASSWORD=test
- 04406db17dbdd3f258f8eb640770688b00b4c2fc9d829bd61257d0cead0efbaf
- Mysql is up and running.
- Sending build context to Docker daemon 291.3kB
- Step 1/15 : FROM php:7.3.3-cli
- ---> 90102e6d83ad
- Step 2/15 : ENV DEBIAN_FRONTEND=noninteractive
- ---> Using cache
- ---> fc8187d5b9c4
- Step 3/15 : ENV BEDROCK_VER=1.8.12
- ---> Using cache
- ---> dc8a83af95d0
- Step 4/15 : RUN curl -sL https://deb.nodesource.com/setup_11.x | bash - && apt-get update && apt-get install -y nodejs jq psmisc libfreetype6-dev libjpeg62-turbo-dev libmcrypt-dev pkg-config libmagickwand-dev imagemagick libjpeg-dev libpng-dev libfontconfig1 libicu-dev zip mysql-client unzip git && npm install -g gulp gulp-cli
- ---> Using cache
- ---> b162dcd44a7d
- Step 5/15 : RUN docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ && docker-php-ext-install -j$(nproc) sockets iconv pdo pdo_mysql gd mysqli opcache intl && printf "\n" | pecl install imagick && docker-php-ext-enable imagick
- ---> Using cache
- ---> 7f6cc6340b4c
- Step 6/15 : RUN curl -fsSLR -o /tmp/composer-setup.php https://getcomposer.org/installer && php /tmp/composer-setup.php --quiet --install-dir=/usr/local/bin --filename=composer && rm /tmp/composer-setup.php && chmod +x /usr/local/bin/composer && composer -q -n config -g repo.packagist false && composer -q -n config -g repositories.packagist-https composer https://packagist.org
- ---> Using cache
- ---> e2bec9f23be3
- Step 7/15 : RUN curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar && chmod +x wp-cli.phar && mv wp-cli.phar /usr/local/bin/wp
- ---> Using cache
- ---> 43147aa51a9f
- Step 8/15 : RUN composer create-project roots/bedrock /var/www/bedrock $BEDROCK_VER && rm -f /var/www/bedrock/.env*
- ---> Using cache
- ---> 35f116b4b23f
- Step 9/15 : COPY ./etc/bedrock/ /var/www/bedrock/
- ---> Using cache
- ---> 8a48caf632a0
- Step 10/15 : COPY ./entrypoint.sh /usr/bin/entrypoint
- ---> Using cache
- ---> 3c28c76af36b
- Step 11/15 : RUN mkdir /root/.ssh
- ---> Using cache
- ---> 2bfa07b8d511
- Step 12/15 : COPY ./ssh/config /root/.ssh/
- ---> Using cache
- ---> f9131995409e
- Step 13/15 : RUN chmod 755 /usr/bin/entrypoint && mkdir -p /var/www /var/package
- ---> Using cache
- ---> d002d69c2881
- Step 14/15 : WORKDIR /var/www/bedrock
- ---> Using cache
- ---> cc0fc590b7d2
- Step 15/15 : CMD [ "entrypoint" ]
- ---> Using cache
- ---> 7f8d2e0b183c
- Successfully built 7f8d2e0b183c
- Successfully tagged bedmaker:latest
- [ Waiting for it ... ]
- \m/
- [ Starting Bedmaker ]
- Warning: "continue" targeting switch is equivalent to "break". Did you mean to use "continue 2"? in /var/www/bedrock/web/wp/wp-includes/pomo/plural-forms.php on line 210
- Created single site database tables.
- Set up multisite database tables.
- Success: Network installed. Don't forget to set up rewrite rules (and a .htaccess file, if using Apache).
- URL is HTTPS
- Cloning into '.'...
- npm WARN deprecated [email protected]: gulp-util is deprecated - replace it, following the guidelines at https://medium.com/gulpjs/gulp-util-ca3b1f9f9ac5
- npm WARN deprecated [email protected]: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue
- npm WARN deprecated [email protected]: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue
- npm WARN deprecated [email protected]: please upgrade to graceful-fs 4 for compatibility with current and future versions of Node.js
- npm WARN deprecated [email protected]: This module relies on Node.js's internals and will break at some point. Do not use it, and update to [email protected].
- > [email protected] install /var/www/bedrock/web/app/themes/dlbi-sodexo-theme/node_modules/node-sass
- > node scripts/install.js
- Downloading binary from https://github.com/sass/node-sass/releases/download/v4.13.0/linux-x64-67_binding.node
- Download complete
- Binary saved to /var/www/bedrock/web/app/themes/dlbi-sodexo-theme/node_modules/node-sass/vendor/linux-x64-67/binding.node
- Caching binary to /root/.npm/node-sass/4.13.0/linux-x64-67_binding.node
- > [email protected] postinstall /var/www/bedrock/web/app/themes/dlbi-sodexo-theme/node_modules/node-sass
- > node scripts/build.js
- Binary found at /var/www/bedrock/web/app/themes/dlbi-sodexo-theme/node_modules/node-sass/vendor/linux-x64-67/binding.node
- Testing binary
- Binary is fine
- > [email protected] postinstall /var/www/bedrock/web/app/themes/dlbi-sodexo-theme/node_modules/gifsicle
- > node lib/install.js
- ā gifsicle pre-build test passed successfully
- > [email protected] postinstall /var/www/bedrock/web/app/themes/dlbi-sodexo-theme/node_modules/jpegtran-bin
- > node lib/install.js
- ā jpegtran pre-build test passed successfully
- > [email protected] postinstall /var/www/bedrock/web/app/themes/dlbi-sodexo-theme/node_modules/optipng-bin
- > node lib/install.js
- ā optipng pre-build test passed successfully
- > [email protected] postinstall /var/www/bedrock/web/app/themes/dlbi-sodexo-theme/node_modules/understrap
- > gulp copy-assets
- [14:23:51] Using gulpfile /var/www/bedrock/web/app/themes/dlbi-sodexo-theme/node_modules/understrap/gulpfile.js
- [14:23:51] Starting 'copy-assets'...
- [14:23:51] Finished 'copy-assets' after 12 ms
- npm notice created a lockfile as package-lock.json. You should commit this file.
- npm WARN [email protected] requires a peer of [email protected] - 3 but none is installed. You must install peer dependencies yourself.
- npm WARN [email protected] requires a peer of popper.js@^1.14.6 but none is installed. You must install peer dependencies yourself.
- npm WARN [email protected] requires a peer of gulp@>=4 but none is installed. You must install peer dependencies yourself.
- npm WARN [email protected] requires a peer of [email protected] - 3 but none is installed. You must install peer dependencies yourself.
- npm WARN [email protected] requires a peer of popper.js@^1.16.0 but none is installed. You must install peer dependencies yourself.
- npm WARN [email protected] requires a peer of jquery@>=1.8.0 but none is installed. You must install peer dependencies yourself.
- npm WARN optional SKIPPING OPTIONAL DEPENDENCY: [email protected] (node_modules/fsevents):
- npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for [email protected]: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})
- added 1022 packages from 607 contributors and audited 16260 packages in 34.213s
- found 16 vulnerabilities (3 low, 1 moderate, 12 high)
- run `npm audit fix` to fix them, or `npm audit` for details
- npm WARN deprecated [email protected]: š Thanks for using Babel: we recommend using babel-preset-env now: please read https://babeljs.io/env to update!
- npm WARN deprecated [email protected]: Browserslist 2 could fail on reading Browserslist >3.0 config used in other tools.
- npm WARN deprecated [email protected]: gulp-util is deprecated - replace it, following the guidelines at https://medium.com/gulpjs/gulp-util-ca3b1f9f9ac5
- npm WARN deprecated [email protected]: core-js@<3 is no longer maintained and not recommended for usage due to the number of issues. Please, upgrade your dependencies to the actual version of core-js@3.
- npm WARN deprecated [email protected]: CircularJSON is in maintenance only, flatted is its successor.
- > [email protected] postinstall /var/www/bedrock/web/app/themes/dlbi-sodexo-theme/node_modules/core-js
- > node -e "try{require('./postinstall')}catch(e){}"
- Thank you for using core-js ( https://github.com/zloirock/core-js ) for polyfilling JavaScript standard library!
- The project needs your help! Please consider supporting of core-js on Open Collective or Patreon:
- > https://opencollective.com/core-js
- > https://www.patreon.com/zloirock
- Also, the author of core-js ( https://github.com/zloirock ) is looking for a good job -)
- > [email protected] postinstall /var/www/bedrock/web/app/themes/dlbi-sodexo-theme/node_modules/gulp-imagemin/node_modules/gifsicle
- > node lib/install.js
- ā gifsicle pre-build test passed successfully
- > [email protected] postinstall /var/www/bedrock/web/app/themes/dlbi-sodexo-theme/node_modules/gulp-imagemin/node_modules/jpegtran-bin
- > node lib/install.js
- ā jpegtran pre-build test passed successfully
- > [email protected] postinstall /var/www/bedrock/web/app/themes/dlbi-sodexo-theme/node_modules/gulp-imagemin/node_modules/optipng-bin
- > node lib/install.js
- ā optipng pre-build test passed successfully
- > [email protected] postinstall /var/www/bedrock/web/app/themes/dlbi-sodexo-theme/node_modules/imagemin-pngquant/node_modules/pngquant-bin
- > node lib/install.js
- ā The `/var/www/bedrock/web/app/themes/dlbi-sodexo-theme/node_modules/imagemin-pngquant/node_modules/pngquant-bin/vendor/pngquant` binary doesn't seem to work correctly
- ā pngquant pre-build test failed
- ā¹ compiling from source
- ā pngquant pre-build test passed successfully
- ā pngquant built successfully
- > [email protected] postinstall /var/www/bedrock/web/app/themes/dlbi-sodexo-theme/node_modules/jpeg-recompress-bin
- > node lib/install.js
- ā jpeg-recompress pre-build test passed successfully
- > [email protected] postinstall /var/www/bedrock/web/app/themes/dlbi-sodexo-theme/node_modules/pngquant-bin
- > node lib/install.js
- ā The `/var/www/bedrock/web/app/themes/dlbi-sodexo-theme/node_modules/pngquant-bin/vendor/pngquant` binary doesn't seem to work correctly
- ā pngquant pre-build test failed
- ā¹ compiling from source
- ā pngquant built successfully
- npm WARN [email protected] requires a peer of [email protected] - 3 but none is installed. You must install peer dependencies yourself.
- npm WARN [email protected] requires a peer of popper.js@^1.16.0 but none is installed. You must install peer dependencies yourself.
- npm WARN [email protected] requires a peer of jquery@>=1.8.0 but none is installed. You must install peer dependencies yourself.
- npm WARN [email protected] requires a peer of [email protected] - 3 but none is installed. You must install peer dependencies yourself.
- npm WARN [email protected] requires a peer of popper.js@^1.14.6 but none is installed. You must install peer dependencies yourself.
- npm WARN [email protected] requires a peer of gulp@>=4 but none is installed. You must install peer dependencies yourself.
- npm WARN optional SKIPPING OPTIONAL DEPENDENCY: [email protected] (node_modules/fsevents):
- npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for [email protected]: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})
- added 862 packages from 401 contributors and audited 34617 packages in 29.974s
- found 54 vulnerabilities (27 low, 13 moderate, 14 high)
- run `npm audit fix` to fix them, or `npm audit` for details
- [14:24:25] Using gulpfile /var/www/bedrock/web/app/themes/dlbi-sodexo-theme/gulpfile.js
- [14:24:25] Starting 'build'...
- [14:24:25] Starting 'stylesForProd'...
- [14:24:25] Finished 'build' after 14 ms
- [14:24:26] Finished 'stylesForProd' after 1.07 s
- [14:24:26] Starting 'lint'...
- [14:24:27]
- /var/www/bedrock/web/app/themes/dlbi-sodexo-theme/src/assets/scripts/index.js
- 15:10 warning 'timelapse' is defined but never used no-unused-vars
- 73:23 error 'LazyloadSettings' is not defined no-undef
- 75:21 error 'LazyloadSettings' is not defined no-undef
- 76:32 error 'LazyloadSettings' is not defined no-undef
- 117:17 warning Unexpected console statement no-console
- 222:9 warning 'once' is assigned a value but never used no-unused-vars
- 246:9 error 'dataLayer' is not defined no-undef
- 254:9 error 'dataLayer' is not defined no-undef
- 262:9 error 'dataLayer' is not defined no-undef
- 272:9 error 'dataLayer' is not defined no-undef
- 281:9 error 'dataLayer' is not defined no-undef
- 290:9 error 'dataLayer' is not defined no-undef
- 298:9 error 'dataLayer' is not defined no-undef
- 307:9 error 'dataLayer' is not defined no-undef
- 385:9 error 'direct_link' is not defined no-undef
- 635:459 error 'closetext' is not defined no-undef
- 666:21 error 'dataLayer' is not defined no-undef
- 846:9 error 'outdatedBrowser' is not defined no-undef
- 1081:22 error 'ajaxurl' is not defined no-undef
- 1100:21 error '$loader' is not defined no-undef
- 1178:13 warning Unexpected console statement no-console
- 1315:37 warning 'newFontSizeUnitValue' is defined but never used no-unused-vars
- 1403:9 warning Unexpected console statement no-console
- 1425:9 error 'DQEPluginIsActive' is not defined no-undef
- 1427:13 warning 'hasDQE' is assigned a value but never used no-unused-vars
- 1429:13 warning 'b2b' is assigned a value but never used no-unused-vars
- 1443:29 error 'DQEJSUrl' is not defined no-undef
- 1444:33 error 'DQEJSB2BUrl' is not defined no-undef
- 1446:37 error 'DQEPluginURL' is not defined no-undef
- 1453:37 error 'DQEPluginURL' is not defined no-undef
- 1466:9 error 'SimulatorsSettings' is not defined no-undef
- 1466:31 error 'SimulatorsSettings' is not defined no-undef
- 1466:63 error 'SimulatorsSettings' is not defined no-undef
- 1471:29 error 'SimulatorsSettings' is not defined no-undef
- 1472:33 error 'SimulatorsSettings' is not defined no-undef
- 1473:37 error 'SimulatorsSettings' is not defined no-undef
- 1474:41 error 'SimulatorsSettings' is not defined no-undef
- 1475:33 warning Unexpected console statement no-console
- 1498:17 warning Unexpected console statement no-console
- 1570:14 warning 'fullyVisibleInElement' is defined but never used no-unused-vars
- 1633:13 warning Unexpected console statement no-console
- 1648:9 warning Unexpected console statement no-console
- 1698:9 warning Unexpected console statement no-console
- 1715:10 warning 'checkSEO' is defined but never used no-unused-vars
- 1723:9 warning Unexpected console statement no-console
- 1725:9 warning Unexpected console statement no-console
- 1743:13 warning Unexpected console statement no-console
- 1745:13 warning Unexpected console statement no-console
- 1748:9 warning Unexpected console statement no-console
- 1752:9 warning Unexpected console statement no-console
- 1754:9 warning Unexpected console statement no-console
- 1757:9 warning Unexpected console statement no-console
- 1759:9 warning Unexpected console statement no-console
- 1768:10 warning 'callback_b2b_autocomplete' is defined but never used no-unused-vars
- 1795:19 error 'visibleInElement' is not defined no-undef
- /var/www/bedrock/web/app/themes/dlbi-sodexo-theme/src/assets/scripts/phantom_generate.js
- 70:2 warning Unexpected console statement no-console
- 72:2 error 'phantom' is not defined no-undef
- /var/www/bedrock/web/app/themes/dlbi-sodexo-theme/src/assets/scripts/rasterize.js
- 7:5 warning Unexpected console statement no-console
- 8:5 warning Unexpected console statement no-console
- 9:5 warning Unexpected console statement no-console
- 10:5 warning Unexpected console statement no-console
- 11:5 error 'phantom' is not defined no-undef
- 23:17 error 'pageWidth' is already defined no-redeclare
- 24:17 error 'pageHeight' is already defined no-redeclare
- 28:13 warning Unexpected console statement no-console
- 29:17 error 'pageWidth' is already defined no-redeclare
- 30:17 error 'pageHeight' is already defined no-redeclare
- 31:13 warning Unexpected console statement no-console
- 40:13 warning Unexpected console statement no-console
- 41:13 error 'phantom' is not defined no-undef
- 45:17 error 'phantom' is not defined no-undef
- /var/www/bedrock/web/app/themes/dlbi-sodexo-theme/src/assets/scripts/admin/admin.js
- 3:5 warning Unexpected console statement no-console
- 76:18 error 'ajaxurl' is not defined no-undef
- /var/www/bedrock/web/app/themes/dlbi-sodexo-theme/src/assets/scripts/modules/geolocation.js
- 38:10 warning 'storeIframe' is defined but never used no-unused-vars
- /var/www/bedrock/web/app/themes/dlbi-sodexo-theme/src/assets/scripts/modules/load-more.js
- 1:10 warning 'loadMore' is defined but never used no-unused-vars
- ā 75 problems (39 errors, 36 warnings)
- [14:24:27] gulp-notify: [Gulp] Failed with 39 errors
- [14:24:27] gulp-notify: [Error running notifier] Could not send message: not found: notify-send
- [14:24:27] Finished 'lint' after 681 ms
- [14:24:27] Starting 'scriptsForProd'...
- [14:24:27] Finished 'scriptsForProd' after 352 ms
- [14:24:27] Starting 'scriptsVendorsForProd'...
- [14:24:27] Finished 'scriptsVendorsForProd' after 1.5 ms
- [14:24:27] Starting 'lint'...
- [14:24:29]
- /var/www/bedrock/web/app/themes/dlbi-sodexo-theme/src/assets/scripts/index.js
- 15:10 warning 'timelapse' is defined but never used no-unused-vars
- 73:23 error 'LazyloadSettings' is not defined no-undef
- 75:21 error 'LazyloadSettings' is not defined no-undef
- 76:32 error 'LazyloadSettings' is not defined no-undef
- 117:17 warning Unexpected console statement no-console
- 222:9 warning 'once' is assigned a value but never used no-unused-vars
- 246:9 error 'dataLayer' is not defined no-undef
- 254:9 error 'dataLayer' is not defined no-undef
- 262:9 error 'dataLayer' is not defined no-undef
- 272:9 error 'dataLayer' is not defined no-undef
- 281:9 error 'dataLayer' is not defined no-undef
- 290:9 error 'dataLayer' is not defined no-undef
- 298:9 error 'dataLayer' is not defined no-undef
- 307:9 error 'dataLayer' is not defined no-undef
- 385:9 error 'direct_link' is not defined no-undef
- 635:459 error 'closetext' is not defined no-undef
- 666:21 error 'dataLayer' is not defined no-undef
- 846:9 error 'outdatedBrowser' is not defined no-undef
- 1081:22 error 'ajaxurl' is not defined no-undef
- 1100:21 error '$loader' is not defined no-undef
- 1178:13 warning Unexpected console statement no-console
- 1315:37 warning 'newFontSizeUnitValue' is defined but never used no-unused-vars
- 1403:9 warning Unexpected console statement no-console
- 1425:9 error 'DQEPluginIsActive' is not defined no-undef
- 1427:13 warning 'hasDQE' is assigned a value but never used no-unused-vars
- 1429:13 warning 'b2b' is assigned a value but never used no-unused-vars
- 1443:29 error 'DQEJSUrl' is not defined no-undef
- 1444:33 error 'DQEJSB2BUrl' is not defined no-undef
- 1446:37 error 'DQEPluginURL' is not defined no-undef
- 1453:37 error 'DQEPluginURL' is not defined no-undef
- 1466:9 error 'SimulatorsSettings' is not defined no-undef
- 1466:31 error 'SimulatorsSettings' is not defined no-undef
- 1466:63 error 'SimulatorsSettings' is not defined no-undef
- 1471:29 error 'SimulatorsSettings' is not defined no-undef
- 1472:33 error 'SimulatorsSettings' is not defined no-undef
- 1473:37 error 'SimulatorsSettings' is not defined no-undef
- 1474:41 error 'SimulatorsSettings' is not defined no-undef
- 1475:33 warning Unexpected console statement no-console
- 1498:17 warning Unexpected console statement no-console
- 1570:14 warning 'fullyVisibleInElement' is defined but never used no-unused-vars
- 1633:13 warning Unexpected console statement no-console
- 1648:9 warning Unexpected console statement no-console
- 1698:9 warning Unexpected console statement no-console
- 1715:10 warning 'checkSEO' is defined but never used no-unused-vars
- 1723:9 warning Unexpected console statement no-console
- 1725:9 warning Unexpected console statement no-console
- 1743:13 warning Unexpected console statement no-console
- 1745:13 warning Unexpected console statement no-console
- 1748:9 warning Unexpected console statement no-console
- 1752:9 warning Unexpected console statement no-console
- 1754:9 warning Unexpected console statement no-console
- 1757:9 warning Unexpected console statement no-console
- 1759:9 warning Unexpected console statement no-console
- 1768:10 warning 'callback_b2b_autocomplete' is defined but never used no-unused-vars
- 1795:19 error 'visibleInElement' is not defined no-undef
- /var/www/bedrock/web/app/themes/dlbi-sodexo-theme/src/assets/scripts/phantom_generate.js
- 70:2 warning Unexpected console statement no-console
- 72:2 error 'phantom' is not defined no-undef
- /var/www/bedrock/web/app/themes/dlbi-sodexo-theme/src/assets/scripts/rasterize.js
- 7:5 warning Unexpected console statement no-console
- 8:5 warning Unexpected console statement no-console
- 9:5 warning Unexpected console statement no-console
- 10:5 warning Unexpected console statement no-console
- 11:5 error 'phantom' is not defined no-undef
- 23:17 error 'pageWidth' is already defined no-redeclare
- 24:17 error 'pageHeight' is already defined no-redeclare
- 28:13 warning Unexpected console statement no-console
- 29:17 error 'pageWidth' is already defined no-redeclare
- 30:17 error 'pageHeight' is already defined no-redeclare
- 31:13 warning Unexpected console statement no-console
- 40:13 warning Unexpected console statement no-console
- 41:13 error 'phantom' is not defined no-undef
- 45:17 error 'phantom' is not defined no-undef
- /var/www/bedrock/web/app/themes/dlbi-sodexo-theme/src/assets/scripts/admin/admin.js
- 3:5 warning Unexpected console statement no-console
- 76:18 error 'ajaxurl' is not defined no-undef
- /var/www/bedrock/web/app/themes/dlbi-sodexo-theme/src/assets/scripts/modules/geolocation.js
- 38:10 warning 'storeIframe' is defined but never used no-unused-vars
- /var/www/bedrock/web/app/themes/dlbi-sodexo-theme/src/assets/scripts/modules/load-more.js
- 1:10 warning 'loadMore' is defined but never used no-unused-vars
- ā 75 problems (39 errors, 36 warnings)
- [14:24:29] gulp-notify: [Gulp] Failed with 39 errors
- [14:24:29] gulp-notify: [Error running notifier] Could not send message: notify-send must be installed on the system.
- [14:24:29] Finished 'lint' after 1.99 s
- [14:24:29] Starting 'scriptsBoForProd'...
- [14:24:29] Finished 'scriptsBoForProd' after 23 ms
- [14:24:29] Starting 'stylesAdminForProd'...
- [14:24:29] Finished 'stylesAdminForProd' after 12 ms
- [14:24:29] Starting 'fonts'...
- [14:24:29] Starting 'images'...
- [14:24:29] gulp-imagemin: ā ajax-loader.gif (already optimized)
- [14:24:29] gulp-imagemin: ā apple-touch-icon.png (saved 383 B - 12.6%)
- [14:24:29] gulp-imagemin: ā apps-download-applestore.png (saved 1.64 kB - 55%)
- [14:24:29] gulp-imagemin: ā apps-download-googleplay.png (saved 1.16 kB - 36.5%)
- [14:24:29] gulp-imagemin: ā best-seller.svg (already optimized)
- [14:24:29] gulp-imagemin: ā apps-download-windowsphone.png (saved 2.56 kB - 47.3%)
- [14:24:29] gulp-imagemin: ā btn-play-video.svg (already optimized)
- [14:24:29] gulp-imagemin: ā favicon-16x16.png (saved 322 B - 37.4%)
- [14:24:29] gulp-imagemin: ā confianza-online.png (saved 19.5 kB - 72.1%)
- [14:24:29] gulp-imagemin: ā favicon-32x32.png (saved 335 B - 27.1%)
- [14:24:29] gulp-imagemin: Skipping unsupported image favicon.ico
- [14:24:29] gulp-imagemin: ā hipo.png (already optimized)
- [14:24:29] gulp-imagemin: ā bg-404.jpg (already optimized)
- [14:24:29] gulp-imagemin: ā icon-contact.svg (already optimized)
- [14:24:29] gulp-imagemin: ā icon-facebook.svg (already optimized)
- [14:24:29] gulp-imagemin: ā ho-resto-carte.png (saved 14.2 kB - 67.4%)
- [14:24:29] gulp-imagemin: ā icon-footer-app-1.png (saved 1.4 kB - 36.2%)
- [14:24:29] gulp-imagemin: ā icon-footer-app-2.png (saved 837 B - 27.2%)
- [14:24:29] gulp-imagemin: ā icon-linkedin.svg (already optimized)
- [14:24:29] gulp-imagemin: ā icon-mail.svg (already optimized)
- [14:24:29] gulp-imagemin: ā icon-twitter.svg (already optimized)
- [14:24:29] gulp-imagemin: ā logo-sodexo-header.svg (already optimized)
- [14:24:29] gulp-imagemin: ā logo-sodexo-login.svg (already optimized)
- [14:24:29] gulp-imagemin: ā logo-sodexo-sticky.svg (already optimized)
- [14:24:29] gulp-imagemin: ā icon-footer-app-3.png (saved 1.17 kB - 32.9%)
- [14:24:29] gulp-imagemin: ā safari-pinned-tab.svg (already optimized)
- [14:24:29] gulp-imagemin: ā mstile-150x150.png (saved 55 B - 2.1%)
- [14:24:29] gulp-imagemin: ā top-discover-dark.svg (already optimized)
- [14:24:29] gulp-imagemin: ā top-discover-light.svg (already optimized)
- [14:24:29] gulp-imagemin: ā wave-blue.svg (already optimized)
- [14:24:29] gulp-imagemin: ā wave-blue2.svg (already optimized)
- [14:24:29] gulp-imagemin: ā wave-dark-blue.svg (already optimized)
- [14:24:29] gulp-imagemin: ā wave-dark2-blue.svg (already optimized)
- [14:24:29] gulp-imagemin: ā pass-restaurant-need.png (saved 16.3 kB - 70.5%)
- [14:24:29] gulp-imagemin: ā sodexo-cheque-pass-restaurant-2.png (saved 14.9 kB - 71%)
- [14:24:29] gulp-imagemin: ā wave-down-bis.png (saved 282 B - 11.1%)
- [14:24:29] gulp-imagemin: ā wave-down.png (saved 324 B - 39%)
- [14:24:29] gulp-imagemin: ā wave-down.svg (already optimized)
- [14:24:29] gulp-imagemin: ā wave-green.svg (already optimized)
- [14:24:29] gulp-imagemin: ā wave.svg (already optimized)
- [14:24:29] gulp-imagemin: ā wave-up.png (saved 347 B - 38.3%)
- [14:24:29] Finished 'fonts' after 458 ms
- [14:24:30] gulp-imagemin: ā bg-store-locator.jpg (already optimized)
- [14:24:30] gulp-imagemin: ā gf-img.png (saved 280 kB - 71.4%)
- [14:24:31] gulp-imagemin: ā bg-404-search.jpg (saved 8.09 kB - 16.1%)
- [14:24:31] gulp-imagemin: ā main-image-header-home.jpg (saved 32.8 kB - 12.4%)
- [14:24:31] gulp-imagemin: Minified 20 images (saved 396 kB - 47.6%)
- [14:24:31] Finished 'images' after 1.71 s
- Gulp ran 10 tasks in 5.85 s
- Task Time % of total Finished
- lint 1.99 s 34% 6th
- images 1.71 s 29% 10th
- stylesForProd 1.07 s 18% 2nd
- lint 681 ms 12% 3rd
- fonts 458 ms 8% 9th
- scriptsForProd 352 ms 6% 4th
- scriptsBoForProd 23 ms 0% 7th
- build 14 ms 0% 1st
- stylesAdminForProd 12 ms 0% 8th
- scriptsVendorsForProd 1.5 ms 0% 5th
- ./:
- total 92K
- drwxr-xr-x 1 www-data www-data 4.0K Dec 16 14:24 .
- drwxr-xr-x 1 root root 4.0K Dec 16 14:21 ..
- -rw-r--r-- 1 www-data www-data 248 Aug 3 2018 .gitignore
- -rwxr-xr-x 1 www-data www-data 444 Nov 15 13:50 .htaccess
- -rw-r--r-- 1 www-data www-data 5.1K Aug 3 2018 CHANGELOG.md
- -rw-r--r-- 1 www-data www-data 3.2K Aug 3 2018 CODE_OF_CONDUCT.md
- -rw-r--r-- 1 www-data www-data 1.1K Aug 3 2018 LICENSE.md
- -rw-r--r-- 1 www-data www-data 3.9K Aug 3 2018 README.md
- -rw-r--r-- 1 www-data www-data 1.6K Aug 3 2018 composer.json
- -rw-r--r-- 1 www-data www-data 16K Aug 3 2018 composer.lock
- drwxr-xr-x 1 www-data www-data 4.0K Nov 15 13:50 config
- drwxr-xr-x 1 www-data www-data 4.0K Dec 16 14:21 vendor
- drwxr-xr-x 1 www-data www-data 4.0K Dec 9 09:09 web
- -rw-r--r-- 1 www-data www-data 13 Aug 3 2018 wp-cli.yml
- /var/package/:
- total 116M
- drwxr-xr-x 2 root root 4.0K Dec 16 14:24 .
- drwxr-xr-x 1 root root 4.0K Dec 16 14:21 ..
- -rw-r--r-- 1 www-data www-data 116M Dec 16 14:24 bedrock-fr-5807b55.tar.gz
- /
- '/tmp/bedmaker_fr_izy0S/bedmaker/bedrock-fr-5807b55.tar.gz' -> '/tmp/bedmaker_code_JZQFQ/bedrock-fr-5807b55.tar.gz'
- \o/
- skhouildi@ubuntu ~/Documents/sites/bedmaker (develop) $ docker ps
- CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
- 04406db17dbd mariadb "docker-entrypoint.sā¦" 4 minutes ago Up 4 minutes 0.0.0.0:3306->3306/tcp db-bedmaker
- skhouildi@ubuntu ~/Documents/sites/bedmaker (develop) $ bash resources/bedmaker.sh fr
Advertisement
Add Comment
Please, Sign In to add comment