[horde] Error on fresh install

pierre pierre.m at nikolov.fr
Fri Jun 14 09:26:16 UTC 2019


Hi,

I am trying to install horde on a fresh docker php:debian9. I get the
same error on a fresh debian9.
Here is what I do:

-----------------------------------------------------------------------
apt update; apt install -y libpng-dev libtidy-dev libssl-dev libcurl4-
openssl-dev libmagickwand-dev libpam0g-devaspell --no-install-
recommends; rm -r /var/lib/apt/lists/*

docker-php-ext-install -j$(nproc) gettext mbstring gd tidy fileinfo
intl curl ftp

apt update; apt install -y libpq-dev --no-install-recommends; rm -r
/var/lib/apt/lists/*
docker-php-ext-install -j$(nproc) pgsql

pear upgrade PEAR
pear channel-discover pear.horde.org

pear install Net_DNS2 File_Fstab http2

yes '' | pecl install -f imagick; pecl install horde/horde_lz4

pear install horde/horde_role
echo "/usr/local/lib/php/www/horde" | pear run-scripts horde/horde_role
pear config-set horde_dir /var/www/html
-----------------------------------------------------------------------
until here, everything works fine.

When i do "pear install -a horde/groupware"
I get the following error, how can I pass this step?

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-defaultusert3S4B9/pam-1.0.3/libtool 
--mode=compile cc  -I. -I/tmp/pear/temp/pam -DPHP_ATOM_INC
-I/tmp/pear/temp/pear-build-defaultusert3S4B9/pam-1.0.3/include
-I/tmp/pear/temp/pear-build-defaultusert3S4B9/pam-1.0.3/main
-I/tmp/pear/temp/pam -I/usr/local/include/php
-I/usr/local/include/php/main -I/usr/local/include/php/TSRM
-I/usr/local/include/php/Zend -I/usr/local/include/php/ext
-I/usr/local/include/php/ext/date/lib  -DHAVE_CONFIG_H  -g -O2   -c
/tmp/pear/temp/pam/pam.c -o pam.lo
mkdir .libs
 cc -I. -I/tmp/pear/temp/pam -DPHP_ATOM_INC -I/tmp/pear/temp/pear-
build-defaultusert3S4B9/pam-1.0.3/include -I/tmp/pear/temp/pear-build-
defaultusert3S4B9/pam-1.0.3/main -I/tmp/pear/temp/pam
-I/usr/local/include/php -I/usr/local/include/php/main
-I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend
-I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib
-DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/pam/pam.c  -fPIC -DPIC -o
.libs/pam.o
/tmp/pear/temp/pam/pam.c: In function 'zif_pam_auth':
/tmp/pear/temp/pam/pam.c:251:36: error: macro "ZVAL_STRING" passed 3
arguments, but takes just 2
    ZVAL_STRING(status, error_msg, 0);
                                    ^
/tmp/pear/temp/pam/pam.c:251:4: error: 'ZVAL_STRING' undeclared (first
use in this function)
    ZVAL_STRING(status, error_msg, 0);
    ^~~~~~~~~~~
/tmp/pear/temp/pam/pam.c:251:4: note: each undeclared identifier is
reported only once for each function it appears in
/tmp/pear/temp/pam/pam.c:256:40: warning: passing argument 2 of
'zend_hash_find' from incompatible pointer type [-Wincompatible-
pointer-types]
  if (zend_hash_find(&EG(symbol_table), "_SERVER", sizeof("_SERVER"),
(void **)&server) == SUCCESS && Z_TYPE_PP(server) == IS_ARRAY) {
                                        ^~~~~~~~~
In file included from /usr/local/include/php/Zend/zend.h:32:0,
                 from /usr/local/include/php/main/php.h:33,
                 from /tmp/pear/temp/pam/pam.c:26:
/usr/local/include/php/Zend/zend_hash.h:166:30: note: expected
'zend_string * {aka struct _zend_string *}' but argument is of type
'char *'
 ZEND_API zval* ZEND_FASTCALL zend_hash_find(const HashTable *ht,
zend_string *key);
                              ^~~~~~~~~~~~~~
/tmp/pear/temp/pam/pam.c:256:6: error: too many arguments to function
'zend_hash_find'
  if (zend_hash_find(&EG(symbol_table), "_SERVER", sizeof("_SERVER"),
(void **)&server) == SUCCESS && Z_TYPE_PP(server) == IS_ARRAY) {
      ^~~~~~~~~~~~~~
In file included from /usr/local/include/php/Zend/zend.h:32:0,
                 from /usr/local/include/php/main/php.h:33,
                 from /tmp/pear/temp/pam/pam.c:26:
/usr/local/include/php/Zend/zend_hash.h:166:30: note: declared here
 ZEND_API zval* ZEND_FASTCALL zend_hash_find(const HashTable *ht,
zend_string *key);
                              ^~~~~~~~~~~~~~
/tmp/pear/temp/pam/pam.c:256:102: warning: implicit declaration of
function 'Z_TYPE_PP' [-Wimplicit-function-declaration]
  if (zend_hash_find(&EG(symbol_table), "_SERVER", sizeof("_SERVER"),
(void **)&server) == SUCCESS && Z_TYPE_PP(server) == IS_ARRAY) {
                                                                       
                               ^~~~~~~~~
/tmp/pear/temp/pam/pam.c:257:22: warning: implicit declaration of
function 'Z_ARRVAL_PP' [-Wimplicit-function-declaration]
   if (zend_hash_find(Z_ARRVAL_PP(server), "REMOTE_ADDR",
sizeof("REMOTE_ADDR"), (void **)&remote_addr) == SUCCESS &&
Z_TYPE_PP(remote_addr) == IS_STRING) {
                      ^~~~~~~~~~~
/tmp/pear/temp/pam/pam.c:257:22: warning: passing argument 1 of
'zend_hash_find' makes pointer from integer without a cast [-Wint-
conversion]
In file included from /usr/local/include/php/Zend/zend.h:32:0,
                 from /usr/local/include/php/main/php.h:33,
                 from /tmp/pear/temp/pam/pam.c:26:
/usr/local/include/php/Zend/zend_hash.h:166:30: note: expected 'const
HashTable * {aka const struct _zend_array *}' but argument is of type
'int'
 ZEND_API zval* ZEND_FASTCALL zend_hash_find(const HashTable *ht,
zend_string *key);
                              ^~~~~~~~~~~~~~
/tmp/pear/temp/pam/pam.c:257:43: warning: passing argument 2 of
'zend_hash_find' from incompatible pointer type [-Wincompatible-
pointer-types]
   if (zend_hash_find(Z_ARRVAL_PP(server), "REMOTE_ADDR",
sizeof("REMOTE_ADDR"), (void **)&remote_addr) == SUCCESS &&
Z_TYPE_PP(remote_addr) == IS_STRING) {
                                           ^~~~~~~~~~~~~
In file included from /usr/local/include/php/Zend/zend.h:32:0,
                 from /usr/local/include/php/main/php.h:33,
                 from /tmp/pear/temp/pam/pam.c:26:
/usr/local/include/php/Zend/zend_hash.h:166:30: note: expected
'zend_string * {aka struct _zend_string *}' but argument is of type
'char *'
 ZEND_API zval* ZEND_FASTCALL zend_hash_find(const HashTable *ht,
zend_string *key);
                              ^~~~~~~~~~~~~~
/tmp/pear/temp/pam/pam.c:257:7: error: too many arguments to function
'zend_hash_find'
   if (zend_hash_find(Z_ARRVAL_PP(server), "REMOTE_ADDR",
sizeof("REMOTE_ADDR"), (void **)&remote_addr) == SUCCESS &&
Z_TYPE_PP(remote_addr) == IS_STRING) {
       ^~~~~~~~~~~~~~
In file included from /usr/local/include/php/Zend/zend.h:32:0,
                 from /usr/local/include/php/main/php.h:33,
                 from /tmp/pear/temp/pam/pam.c:26:
/usr/local/include/php/Zend/zend_hash.h:166:30: note: declared here
 ZEND_API zval* ZEND_FASTCALL zend_hash_find(const HashTable *ht,
zend_string *key);
                              ^~~~~~~~~~~~~~
/tmp/pear/temp/pam/pam.c:258:34: warning: implicit declaration of
function 'Z_STRVAL_PP' [-Wimplicit-function-declaration]
    pam_set_item(pamh, PAM_RHOST, Z_STRVAL_PP(remote_addr));
                                  ^~~~~~~~~~~
/tmp/pear/temp/pam/pam.c:258:34: warning: passing argument 3 of
'pam_set_item' makes pointer from integer without a cast [-Wint-
conversion]
In file included from /usr/include/security/pam_appl.h:18:0,
                 from /tmp/pear/temp/pam/pam.c:30:
/usr/include/security/_pam_types.h:172:1: note: expected 'const void *'
but argument is of type 'int'
 pam_set_item(pam_handle_t *pamh, int item_type, const void *item);
 ^~~~~~~~~~~~
/tmp/pear/temp/pam/pam.c:266:36: error: macro "ZVAL_STRING" passed 3
arguments, but takes just 2
    ZVAL_STRING(status, error_msg, 0);
                                    ^
/tmp/pear/temp/pam/pam.c:277:37: error: macro "ZVAL_STRING" passed 3
arguments, but takes just 2
     ZVAL_STRING(status, error_msg, 0);
                                     ^
/tmp/pear/temp/pam/pam.c: In function 'zif_pam_chpass':
/tmp/pear/temp/pam/pam.c:315:36: error: macro "ZVAL_STRING" passed 3
arguments, but takes just 2
    ZVAL_STRING(status, error_msg, 0);
                                    ^
/tmp/pear/temp/pam/pam.c:315:4: error: 'ZVAL_STRING' undeclared (first
use in this function)
    ZVAL_STRING(status, error_msg, 0);
    ^~~~~~~~~~~
/tmp/pear/temp/pam/pam.c:324:36: error: macro "ZVAL_STRING" passed 3
arguments, but takes just 2
    ZVAL_STRING(status, error_msg, 0);
                                    ^
/tmp/pear/temp/pam/pam.c:334:36: error: macro "ZVAL_STRING" passed 3
arguments, but takes just 2
    ZVAL_STRING(status, error_msg, 0);
                                    ^
Makefile:194: recipe for target 'pam.lo' failed
make: *** [pam.lo] Error 1

***********************************************************************
Bellow is the full output of the command:


WARNING: "pear/Console_Getopt" is deprecated in favor of
"pear/Console_GetoptPlus"
Failed to download pear/Date_Holidays within preferred state "stable",
latest release is version 0.21.8, stability "alpha", use
"channel://pear.php.net/Date_Holidays-0.21.8" to install
Failed to download horde/Horde_Backup within preferred state "stable",
latest release is version 1.0.0RC1, stability "beta", use
"channel://pear.horde.org/Horde_Backup-1.0.0RC1" to install
Failed to download pecl/sasl within preferred state "stable", latest
release is version 0.1.0, stability "alpha", use
"channel://pecl.php.net/sasl-0.1.0" to install
Failed to download pecl/idn within preferred state "stable", latest
release is version 0.2.0, stability "beta", use
"channel://pecl.php.net/idn-0.2.0" to install
WARNING: "pear/HTTP_Request" is deprecated in favor of
"pear/HTTP_Request2"
WARNING: "pear/DB" is deprecated in favor of "pear/MDB2"
Failed to download pear/SOAP within preferred state "stable", latest
release is version 0.14.0, stability "beta", use
"channel://pear.php.net/SOAP-0.14.0" to install
Failed to download pear/XML_Serializer within preferred state "stable",
latest release is version 0.21.0, stability "beta", use
"channel://pear.php.net/XML_Serializer-0.21.0" to install
^[[B^[[CFailed to download pear/Console_Color2 within preferred state
"stable", latest release is version 0.1.2, stability "alpha", use
"channel://pear.php.net/Console_Color2-0.1.2" to install
WARNING: "pear/HTTP_Request" is deprecated in favor of
"pear/HTTP_Request2"
Unknown remote channel: pear.nrk.io
WARNING: "pecl/mongo" is deprecated in favor of "channel:///mongodb"
Failed to download pear/Numbers_Words within preferred state "stable",
latest release is version 0.18.2, stability "beta", use
"channel://pear.php.net/Numbers_Words-0.18.2" to install
Failed to download pear/Image_Text within preferred state "stable",
latest release is version 0.7.0, stability "beta", use
"channel://pear.php.net/Image_Text-0.7.0" to install
WARNING: "pear/Auth_SASL" is deprecated in favor of "pear/Auth_SASL2"
WARNING: "pear/Net_URL" is deprecated in favor of "pear/Net_URL2"
WARNING: "pear/HTTP_Request" is deprecated in favor of
"pear/HTTP_Request2"
WARNING: "pear/Auth_SASL" is deprecated in favor of "pear/Auth_SASL2"
horde/kronolith can optionally use package "pear/Date_Holidays"
(version >= 0.21.0, version <= 1.0.0alpha1, excluded versions:
1.0.0alpha1)
horde/Horde_Core can optionally use package "horde/Horde_Backup"
(version >= 1.0.0, version <= 2.0.0alpha1, excluded versions:
2.0.0alpha1)
horde/Horde_Core can optionally use PHP extension "sockets"
horde/Horde_Date can optionally use PHP extension "calendar"
horde/Horde_Db can optionally use PHP extension "mysql"
horde/Horde_Db can optionally use PHP extension "mysqli"
horde/Horde_Db can optionally use PHP extension "oci8"
horde/Horde_Auth can optionally use package "pecl/sasl"
horde/Horde_Cache can optionally use PHP extension "eaccelerator"
(version >= 0.9.5, version <= 0.9.6, excluded versions: 0.9.6)
horde/Horde_Cache can optionally use PHP extension "xcache"
horde/Horde_Mime can optionally use package "pecl/idn"
horde/Horde_Serialize can optionally use PHP extension "bz2"
horde/Horde_Serialize can optionally use PHP extension "wddx"
horde/Horde_Rpc can optionally use PHP extension "soap"
horde/Horde_Rpc can optionally use PHP extension "xmlrpc"
pear/Services_Weather requires PHP (version >= 4.0.0, version <=
6.0.0), installed version is 7.3.6
pear/Services_Weather can optionally use package "pear/SOAP" (version
>= 0.7.5)
pear/Services_Weather can optionally use package "pear/XML_Serializer"
(version >= 0.8)
pear/Console_Table can optionally use package "pear/Console_Color2"
(version >= 0.1.2)
horde/Horde_Kolab_Storage can optionally use PHP extension "imap"
horde/Horde_HashTable can optionally use package
"channel://pear.nrk.io/Predis" (version >= 0.8.3)
pear/Text_CAPTCHA can optionally use package "pear/Numbers_Words"
pear/Text_CAPTCHA can optionally use package "pear/Image_Text" (version
>= 0.7.0)
pecl/ssh2 requires PHP (version >= 4.0.0, version <= 6.0.0), installed
version is 7.3.6
horde/Horde_Mapi requires PHP extension "bcmath"
horde/Horde_ActiveSync requires package "horde/Horde_Mapi" (version >=
1.0.0, version <= 2.0.0alpha1, excluded versions: 2.0.0alpha1)
horde/Horde_Crypt_Blowfish can optionally use PHP extension "mcrypt"
pecl/mongo requires PHP (version >= 5.3.0, version <= 5.99.99),
installed version is 7.3.6
downloading groupware-5.2.22.tgz ...
Starting to download groupware-5.2.22.tgz (135,263 bytes)
.............................done: 135,263 bytes
downloading content-2.0.6.tgz ...
Starting to download content-2.0.6.tgz (22,250 bytes)
...done: 22,250 bytes
downloading gollem-3.0.12.tgz ...
Starting to download gollem-3.0.12.tgz (995,517 bytes)
...done: 995,517 bytes
downloading horde-5.2.21.tgz ...
Starting to download horde-5.2.21.tgz (2,989,952 bytes)
...done: 2,989,952 bytes
downloading kronolith-4.2.27.tgz ...
Starting to download kronolith-4.2.27.tgz (2,644,499 bytes)
...done: 2,644,499 bytes
downloading mnemo-4.2.14.tgz ...
Starting to download mnemo-4.2.14.tgz (1,183,902 bytes)
...done: 1,183,902 bytes
downloading nag-4.2.19.tgz ...
Starting to download nag-4.2.19.tgz (1,652,197 bytes)
...done: 1,652,197 bytes
downloading timeobjects-2.1.4.tgz ...
Starting to download timeobjects-2.1.4.tgz (416,526 bytes)
...done: 416,526 bytes
downloading trean-1.1.9.tgz ...
Starting to download trean-1.1.9.tgz (663,125 bytes)
...done: 663,125 bytes
downloading turba-4.2.25.tgz ...
Starting to download turba-4.2.25.tgz (2,002,750 bytes)
...done: 2,002,750 bytes
downloading Horde_Core-2.31.8.tgz ...
Starting to download Horde_Core-2.31.8.tgz (1,677,360 bytes)
...done: 1,677,360 bytes
downloading Horde_Date-2.4.1.tgz ...
Starting to download Horde_Date-2.4.1.tgz (73,961 bytes)
...done: 73,961 bytes
downloading Horde_Exception-2.0.8.tgz ...
Starting to download Horde_Exception-2.0.8.tgz (24,402 bytes)
...done: 24,402 bytes
downloading Horde_Db-2.4.0.tgz ...
Starting to download Horde_Db-2.4.0.tgz (96,916 bytes)
...done: 96,916 bytes
downloading Horde_Injector-2.0.5.tgz ...
Starting to download Horde_Injector-2.0.5.tgz (21,867 bytes)
...done: 21,867 bytes
downloading Horde_Rdo-2.1.0.tgz ...
Starting to download Horde_Rdo-2.1.0.tgz (35,076 bytes)
...done: 35,076 bytes
downloading Horde_Util-2.5.8.tgz ...
Starting to download Horde_Util-2.5.8.tgz (36,540 bytes)
...done: 36,540 bytes
downloading Horde_Argv-2.1.0.tgz ...
Starting to download Horde_Argv-2.1.0.tgz (64,636 bytes)
...done: 64,636 bytes
downloading Horde_Controller-2.0.5.tgz ...
Starting to download Horde_Controller-2.0.5.tgz (11,127 bytes)
...done: 11,127 bytes
downloading Horde_ElasticSearch-1.0.4.tgz ...
Starting to download Horde_ElasticSearch-1.0.4.tgz (4,006 bytes)
...done: 4,006 bytes
downloading Horde_Auth-2.2.2.tgz ...
Starting to download Horde_Auth-2.2.2.tgz (60,174 bytes)
...done: 60,174 bytes
downloading Horde_Cache-2.5.5.tgz ...
Starting to download Horde_Cache-2.5.5.tgz (27,049 bytes)
...done: 27,049 bytes
downloading Horde_Editor-2.0.5.tgz ...
Starting to download Horde_Editor-2.0.5.tgz (744,870 bytes)
...done: 744,870 bytes
downloading Horde_Mime-2.11.0.tgz ...
Starting to download Horde_Mime-2.11.0.tgz (147,538 bytes)
...done: 147,538 bytes
downloading Horde_Mime_Viewer-2.2.2.tgz ...
Starting to download Horde_Mime_Viewer-2.2.2.tgz (410,159 bytes)
...done: 410,159 bytes
downloading Horde_Perms-2.1.8.tgz ...
Starting to download Horde_Perms-2.1.8.tgz (38,068 bytes)
...done: 38,068 bytes
downloading Horde_Serialize-2.0.5.tgz ...
Starting to download Horde_Serialize-2.0.5.tgz (16,090 bytes)
...done: 16,090 bytes
downloading Horde_Support-2.2.0.tgz ...
Starting to download Horde_Support-2.2.0.tgz (24,787 bytes)
...done: 24,787 bytes
downloading Horde_Url-2.2.6.tgz ...
Starting to download Horde_Url-2.2.6.tgz (16,479 bytes)
...done: 16,479 bytes
downloading Horde_Vfs-2.4.0.tgz ...
Starting to download Horde_Vfs-2.4.0.tgz (73,791 bytes)
...done: 73,791 bytes
downloading Horde_View-2.0.6.tgz ...
Starting to download Horde_View-2.0.6.tgz (43,952 bytes)
...done: 43,952 bytes
downloading Horde_Share-2.2.0.tgz ...
Starting to download Horde_Share-2.2.0.tgz (61,899 bytes)
...done: 61,899 bytes
downloading Horde_Alarm-2.2.10.tgz ...
Starting to download Horde_Alarm-2.2.10.tgz (39,026 bytes)
...done: 39,026 bytes
downloading Horde_Autoloader-2.1.2.tgz ...
Starting to download Horde_Autoloader-2.1.2.tgz (15,521 bytes)
...done: 15,521 bytes
downloading Horde_Browser-2.0.16.tgz ...
Starting to download Horde_Browser-2.0.16.tgz (38,533 bytes)
...done: 38,533 bytes
downloading Horde_Form-2.0.19.tgz ...
Starting to download Horde_Form-2.0.19.tgz (198,152 bytes)
...done: 198,152 bytes
downloading Horde_Group-2.1.1.tgz ...
Starting to download Horde_Group-2.1.1.tgz (23,174 bytes)
...done: 23,174 bytes
downloading Horde_Http-2.1.7.tgz ...
Starting to download Horde_Http-2.1.7.tgz (15,199 bytes)
...done: 15,199 bytes
downloading Horde_Image-2.6.0.tgz ...
Starting to download Horde_Image-2.6.0.tgz (779,789 bytes)
...done: 779,789 bytes
downloading Horde_LoginTasks-2.0.7.tgz ...
Starting to download Horde_LoginTasks-2.0.7.tgz (30,230 bytes)
...done: 30,230 bytes
downloading Horde_Mail-2.6.5.tgz ...
Starting to download Horde_Mail-2.6.5.tgz (38,569 bytes)
...done: 38,569 bytes
downloading Horde_Nls-2.2.1.tgz ...
Starting to download Horde_Nls-2.2.1.tgz (448,774 bytes)
...done: 448,774 bytes
downloading Horde_Prefs-2.9.0.tgz ...
Starting to download Horde_Prefs-2.9.0.tgz (54,916 bytes)
...done: 54,916 bytes
downloading Horde_Rpc-2.1.8.tgz ...
Starting to download Horde_Rpc-2.1.8.tgz (39,096 bytes)
...done: 39,096 bytes
downloading Horde_Text_Diff-2.2.0.tgz ...
Starting to download Horde_Text_Diff-2.2.0.tgz (29,673 bytes)
...done: 29,673 bytes
downloading Horde_Token-2.0.9.tgz ...
Starting to download Horde_Token-2.0.9.tgz (31,728 bytes)
...done: 31,728 bytes
downloading Horde_Text_Filter-2.3.6.tgz ...
Starting to download Horde_Text_Filter-2.3.6.tgz (54,976 bytes)
...done: 54,976 bytes
downloading Horde_Tree-2.0.5.tgz ...
Starting to download Horde_Tree-2.0.5.tgz (19,049 bytes)
...done: 19,049 bytes
downloading Horde_Feed-2.0.4.tgz ...
Starting to download Horde_Feed-2.0.4.tgz (1,612,541 bytes)
...done: 1,612,541 bytes
downloading Horde_Oauth-2.0.4.tgz ...
Starting to download Horde_Oauth-2.0.4.tgz (6,175 bytes)
...done: 6,175 bytes
downloading Horde_OpenXchange-1.0.1.tgz ...
Starting to download Horde_OpenXchange-1.0.1.tgz (6,006 bytes)
...done: 6,006 bytes
downloading Horde_Service_Facebook-2.0.10.tgz ...
Starting to download Horde_Service_Facebook-2.0.10.tgz (31,330 bytes)
...done: 31,330 bytes
downloading Horde_Service_Twitter-2.1.6.tgz ...
Starting to download Horde_Service_Twitter-2.1.6.tgz (9,756 bytes)
...done: 9,756 bytes
downloading Horde_Service_Weather-2.5.4.tgz ...
Starting to download Horde_Service_Weather-2.5.4.tgz (215,881 bytes)
...done: 215,881 bytes
downloading Horde_SyncMl-2.0.7.tgz ...
Starting to download Horde_SyncMl-2.0.7.tgz (136,309 bytes)
...done: 136,309 bytes
downloading Console_Table-1.3.1.tgz ...
Starting to download Console_Table-1.3.1.tgz (11,492 bytes)
...done: 11,492 bytes
downloading File_Find-1.3.3.tgz ...
Starting to download File_Find-1.3.3.tgz (8,212 bytes)
...done: 8,212 bytes
downloading Horde_Data-2.1.4.tgz ...
Starting to download Horde_Data-2.1.4.tgz (44,351 bytes)
...done: 44,351 bytes
downloading Horde_Date_Parser-2.0.6.tgz ...
Starting to download Horde_Date_Parser-2.0.6.tgz (29,994 bytes)
...done: 29,994 bytes
downloading Horde_Dav-1.1.4.tgz ...
Starting to download Horde_Dav-1.1.4.tgz (247,189 bytes)
...done: 247,189 bytes
downloading Horde_History-2.3.6.tgz ...
Starting to download Horde_History-2.3.6.tgz (26,205 bytes)
...done: 26,205 bytes
downloading Horde_Icalendar-2.1.8.tgz ...
Starting to download Horde_Icalendar-2.1.8.tgz (108,647 bytes)
...done: 108,647 bytes
downloading Horde_Lock-2.1.4.tgz ...
Starting to download Horde_Lock-2.1.4.tgz (17,580 bytes)
...done: 17,580 bytes
downloading Horde_Notification-2.0.4.tgz ...
Starting to download Horde_Notification-2.0.4.tgz (21,018 bytes)
...done: 21,018 bytes
downloading Horde_Timezone-1.1.0.tgz ...
Starting to download Horde_Timezone-1.1.0.tgz (28,514 bytes)
...done: 28,514 bytes
downloading Date-1.4.7.tgz ...
Starting to download Date-1.4.7.tgz (56,940 bytes)
...done: 56,940 bytes
downloading Horde_Test-2.6.3.tgz ...
Starting to download Horde_Test-2.6.3.tgz (732,814 bytes)
...done: 732,814 bytes
downloading Horde_Cli-2.3.0.tgz ...
Starting to download Horde_Cli-2.3.0.tgz (30,628 bytes)
...done: 30,628 bytes
downloading Horde_Crypt-2.7.12.tgz ...
Starting to download Horde_Crypt-2.7.12.tgz (156,807 bytes)
...done: 156,807 bytes
downloading Horde_Pdf-2.0.7.tgz ...
Starting to download Horde_Pdf-2.0.7.tgz (52,674 bytes)
...done: 52,674 bytes
downloading Horde_Routes-2.0.5.tgz ...
Starting to download Horde_Routes-2.0.5.tgz (45,034 bytes)
...done: 45,034 bytes
downloading Horde_Queue-1.1.5.tgz ...
Starting to download Horde_Queue-1.1.5.tgz (12,009 bytes)
...done: 12,009 bytes
downloading Horde_Imsp-2.0.10.tgz ...
Starting to download Horde_Imsp-2.0.10.tgz (33,324 bytes)
...done: 33,324 bytes
downloading Horde_Kolab_Format-2.0.9.tgz ...
Starting to download Horde_Kolab_Format-2.0.9.tgz (58,281 bytes)
...done: 58,281 bytes
downloading Horde_Kolab_Storage-2.2.3.tgz ...
Starting to download Horde_Kolab_Storage-2.2.3.tgz (178,498 bytes)
...done: 178,498 bytes
downloading Horde_Ldap-2.4.1.tgz ...
Starting to download Horde_Ldap-2.4.1.tgz (65,190 bytes)
...done: 65,190 bytes
downloading Horde_Compress-2.2.2.tgz ...
Starting to download Horde_Compress-2.2.2.tgz (2,199,440 bytes)
...done: 2,199,440 bytes
downloading Horde_Compress_Fast-1.1.1.tgz ...
Starting to download Horde_Compress_Fast-1.1.1.tgz (12,992 bytes)
...done: 12,992 bytes
downloading Horde_CssMinify-1.0.4.tgz ...
Starting to download Horde_CssMinify-1.0.4.tgz (11,717 bytes)
...done: 11,717 bytes
downloading Horde_HashTable-1.2.6.tgz ...
Starting to download Horde_HashTable-1.2.6.tgz (16,739 bytes)
...done: 16,739 bytes
downloading Horde_JavascriptMinify-1.1.5.tgz ...
Starting to download Horde_JavascriptMinify-1.1.5.tgz (15,419 bytes)
...done: 15,419 bytes
downloading Horde_Log-2.3.0.tgz ...
Starting to download Horde_Log-2.3.0.tgz (14,806 bytes)
...done: 14,806 bytes
downloading Horde_Pack-1.0.7.tgz ...
Starting to download Horde_Pack-1.0.7.tgz (16,074 bytes)
...done: 16,074 bytes
downloading Horde_Secret-2.0.6.tgz ...
Starting to download Horde_Secret-2.0.6.tgz (13,638 bytes)
...done: 13,638 bytes
downloading Horde_SessionHandler-2.2.9.tgz ...
Starting to download Horde_SessionHandler-2.2.9.tgz (24,709 bytes)
...done: 24,709 bytes
downloading Horde_Template-2.0.3.tgz ...
Starting to download Horde_Template-2.0.3.tgz (14,897 bytes)
...done: 14,897 bytes
downloading Horde_Translation-2.2.2.tgz ...
Starting to download Horde_Translation-2.2.2.tgz (15,959 bytes)
...done: 15,959 bytes
downloading Horde_Imap_Client-2.29.17.tgz ...
Starting to download Horde_Imap_Client-2.29.17.tgz (262,881 bytes)
...done: 262,881 bytes
downloading Horde_JavascriptMinify_Jsmin-1.0.2.tgz ...
Starting to download Horde_JavascriptMinify_Jsmin-1.0.2.tgz (4,826
bytes)
...done: 4,826 bytes
downloading Horde_Kolab_Server-2.0.5.tgz ...
Starting to download Horde_Kolab_Server-2.0.5.tgz (101,943 bytes)
...done: 101,943 bytes
downloading Horde_Kolab_Session-2.0.3.tgz ...
Starting to download Horde_Kolab_Session-2.0.3.tgz (21,250 bytes)
...done: 21,250 bytes
downloading Horde_Mongo-1.1.0.tgz ...
Starting to download Horde_Mongo-1.1.0.tgz (99,713 bytes)
...done: 99,713 bytes
downloading Horde_SpellChecker-2.1.3.tgz ...
Starting to download Horde_SpellChecker-2.1.3.tgz (13,255 bytes)
...done: 13,255 bytes
downloading Text_CAPTCHA-1.0.2.tgz ...
Starting to download Text_CAPTCHA-1.0.2.tgz (197,084 bytes)
...done: 197,084 bytes
downloading Text_Figlet-1.0.2.tgz ...
Starting to download Text_Figlet-1.0.2.tgz (9,119 bytes)
...done: 9,119 bytes
downloading Text_LanguageDetect-1.0.0.tgz ...
Starting to download Text_LanguageDetect-1.0.0.tgz (125,576 bytes)
...done: 125,576 bytes
downloading pam-1.0.3.tgz ...
Starting to download pam-1.0.3.tgz (6,671 bytes)
...done: 6,671 bytes
downloading Horde_Memcache-2.1.1.tgz ...
Starting to download Horde_Memcache-2.1.1.tgz (15,009 bytes)
...done: 15,009 bytes
downloading APC-3.1.13.tgz ...
Starting to download APC-3.1.13.tgz (171,591 bytes)
...done: 171,591 bytes
downloading Horde_ListHeaders-1.2.5.tgz ...
Starting to download Horde_ListHeaders-1.2.5.tgz (17,486 bytes)
...done: 17,486 bytes
downloading Horde_Stream-1.6.3.tgz ...
Starting to download Horde_Stream-1.6.3.tgz (18,014 bytes)
...done: 18,014 bytes
downloading Horde_Stream_Filter-2.0.4.tgz ...
Starting to download Horde_Stream_Filter-2.0.4.tgz (13,535 bytes)
...done: 13,535 bytes
downloading Horde_Text_Flowed-2.0.3.tgz ...
Starting to download Horde_Text_Flowed-2.0.3.tgz (14,273 bytes)
...done: 14,273 bytes
downloading intl-3.0.0.tgz ...
Starting to download intl-3.0.0.tgz (248,200 bytes)
...done: 248,200 bytes
downloading LZF-1.6.7.tgz ...
Starting to download LZF-1.6.7.tgz (17,999 bytes)
...done: 17,999 bytes
downloading Horde_Stream_Wrapper-2.1.4.tgz ...
Starting to download Horde_Stream_Wrapper-2.1.4.tgz (5,668 bytes)
...done: 5,668 bytes
downloading pecl_http-3.2.1.tgz ...
Starting to download pecl_http-3.2.1.tgz (221,244 bytes)
...done: 221,244 bytes
downloading XML_SVG-1.1.0.tgz ...
Starting to download XML_SVG-1.1.0.tgz (7,853 bytes)
...done: 7,853 bytes
downloading Horde_Idna-1.1.1.tgz ...
Starting to download Horde_Idna-1.1.1.tgz (9,835 bytes)
...done: 9,835 bytes
downloading Horde_Smtp-1.9.5.tgz ...
Starting to download Horde_Smtp-1.9.5.tgz (33,751 bytes)
...done: 33,751 bytes
downloading Net_SMTP-1.8.1.tgz ...
Starting to download Net_SMTP-1.8.1.tgz (14,931 bytes)
...done: 14,931 bytes
downloading geoip-1.0.8.tgz ...
Starting to download geoip-1.0.8.tgz (10,061 bytes)
...done: 10,061 bytes
downloading Horde_Xml_Element-2.0.4.tgz ...
Starting to download Horde_Xml_Element-2.0.4.tgz (10,932 bytes)
...done: 10,932 bytes
downloading xdiff-2.0.1.tgz ...
Starting to download xdiff-2.0.1.tgz (10,418 bytes)
...done: 10,418 bytes
downloading Horde_Text_Filter_Jsmin-1.0.2.tgz ...
Starting to download Horde_Text_Filter_Jsmin-1.0.2.tgz (4,646 bytes)
...done: 4,646 bytes
downloading HTTP_Request-1.4.4.tgz ...
Starting to download HTTP_Request-1.4.4.tgz (17,233 bytes)
...done: 17,233 bytes
downloading Net_FTP-1.4.0.tgz ...
Starting to download Net_FTP-1.4.0.tgz (35,593 bytes)
...done: 35,593 bytes
downloading Cache-1.5.6.tgz ...
Starting to download Cache-1.5.6.tgz (31,735 bytes)
...done: 31,735 bytes
downloading DB-1.9.3.tgz ...
Starting to download DB-1.9.3.tgz (132,290 bytes)
...done: 132,290 bytes
downloading Horde_Xml_Wbxml-2.0.3.tgz ...
Starting to download Horde_Xml_Wbxml-2.0.3.tgz (26,620 bytes)
...done: 26,620 bytes
downloading Net_IMAP-1.1.3.tgz ...
Starting to download Net_IMAP-1.1.3.tgz (41,082 bytes)
...done: 41,082 bytes
downloading Horde_Css_Parser-1.0.11.tgz ...
Starting to download Horde_Css_Parser-1.0.11.tgz (81,943 bytes)
...done: 81,943 bytes
downloading Horde_Constraint-2.0.3.tgz ...
Starting to download Horde_Constraint-2.0.3.tgz (5,073 bytes)
...done: 5,073 bytes
downloading Horde_Scribe-2.0.3.tgz ...
Starting to download Horde_Scribe-2.0.3.tgz (5,106 bytes)
...done: 5,106 bytes
downloading igbinary-3.0.1.tgz ...
Starting to download igbinary-3.0.1.tgz (58,048 bytes)
...done: 58,048 bytes
downloading msgpack-2.0.3.tgz ...
Starting to download msgpack-2.0.3.tgz (45,769 bytes)
...done: 45,769 bytes
downloading Horde_Crypt_Blowfish-1.1.2.tgz ...
Starting to download Horde_Crypt_Blowfish-1.1.2.tgz (26,056 bytes)
...done: 26,056 bytes
downloading Horde_Socket_Client-2.1.2.tgz ...
Starting to download Horde_Socket_Client-2.1.2.tgz (13,072 bytes)
...done: 13,072 bytes
downloading Horde_Stringprep-1.0.4.tgz ...
Starting to download Horde_Stringprep-1.0.4.tgz (65,383 bytes)
...done: 65,383 bytes
downloading mongodb-1.5.5.tgz ...
Starting to download mongodb-1.5.5.tgz (1,060,017 bytes)
...done: 1,060,017 bytes
downloading Text_Password-1.2.1.tgz ...
Starting to download Text_Password-1.2.1.tgz (5,631 bytes)
...done: 5,631 bytes
downloading memcache-2.2.7.tgz ...
Starting to download memcache-2.2.7.tgz (36,459 bytes)
...done: 36,459 bytes
downloading raphf-2.0.0.tgz ...
Starting to download raphf-2.0.0.tgz (15,715 bytes)
...done: 15,715 bytes
downloading propro-2.1.0.tgz ...
Starting to download propro-2.1.0.tgz (14,253 bytes)
...done: 14,253 bytes
downloading Net_Socket-1.2.2.tgz ...
Starting to download Net_Socket-1.2.2.tgz (6,903 bytes)
...done: 6,903 bytes
downloading Auth_SASL-1.1.0.tgz ...
Starting to download Auth_SASL-1.1.0.tgz (9,380 bytes)
...done: 9,380 bytes
downloading Net_URL-1.0.15.tgz ...
Starting to download Net_URL-1.0.15.tgz (6,393 bytes)
...done: 6,393 bytes
downloading Horde_Thrift-2.0.3.tgz ...
Starting to download Horde_Thrift-2.0.3.tgz (22,696 bytes)
...done: 22,696 bytes
install ok: channel://pear.horde.org/Horde_Util-2.5.8
install ok: channel://pear.horde.org/Horde_Autoloader-2.1.2
install ok: channel://pear.php.net/Console_Table-1.3.1
install ok: channel://pear.php.net/File_Find-1.3.3
install ok: channel://pear.php.net/Date-1.4.7
install ok: channel://pear.horde.org/Horde_Queue-1.1.5
install ok: channel://pear.horde.org/Horde_Template-2.0.3
install ok: channel://pear.horde.org/Horde_Translation-2.2.2
install ok: channel://pear.horde.org/Horde_Mongo-1.1.0
install ok: channel://pear.php.net/Text_Figlet-1.0.2
install ok: channel://pear.php.net/Text_LanguageDetect-1.0.0
3 source files, building
running: phpize
Configuring for:
PHP Api Version:         20180731
Zend Module Api No:      20180731
Zend Extension Api No:   320180731
building in /tmp/pear/temp/pear-build-defaultusert3S4B9/pam-1.0.3
running: /tmp/pear/temp/pam/configure --with-php-
config=/usr/local/bin/php-config
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 PAM support... yes, shared
checking for pam_start in -lpam... 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-defaultusert3S4B9/pam-1.0.3/libtool 
--mode=compile cc  -I. -I/tmp/pear/temp/pam -DPHP_ATOM_INC
-I/tmp/pear/temp/pear-build-defaultusert3S4B9/pam-1.0.3/include
-I/tmp/pear/temp/pear-build-defaultusert3S4B9/pam-1.0.3/main
-I/tmp/pear/temp/pam -I/usr/local/include/php
-I/usr/local/include/php/main -I/usr/local/include/php/TSRM
-I/usr/local/include/php/Zend -I/usr/local/include/php/ext
-I/usr/local/include/php/ext/date/lib  -DHAVE_CONFIG_H  -g -O2   -c
/tmp/pear/temp/pam/pam.c -o pam.lo
mkdir .libs
 cc -I. -I/tmp/pear/temp/pam -DPHP_ATOM_INC -I/tmp/pear/temp/pear-
build-defaultusert3S4B9/pam-1.0.3/include -I/tmp/pear/temp/pear-build-
defaultusert3S4B9/pam-1.0.3/main -I/tmp/pear/temp/pam
-I/usr/local/include/php -I/usr/local/include/php/main
-I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend
-I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib
-DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/pam/pam.c  -fPIC -DPIC -o
.libs/pam.o
/tmp/pear/temp/pam/pam.c: In function 'zif_pam_auth':
/tmp/pear/temp/pam/pam.c:251:36: error: macro "ZVAL_STRI
WARNING: "pear/Console_Getopt" is deprecated in favor of
"pear/Console_GetoptPlus"
Failed to download pear/Date_Holidays within preferred state "stable",
latest release is version 0.21.8, stability "alpha", use
"channel://pear.php.net/Date_Holidays-0.21.8" to install
Failed to download horde/Horde_Backup within preferred state "stable",
latest release is version 1.0.0RC1, stability "beta", use
"channel://pear.horde.org/Horde_Backup-1.0.0RC1" to install
Failed to download pecl/sasl within preferred state "stable", latest
release is version 0.1.0, stability "alpha", use
"channel://pecl.php.net/sasl-0.1.0" to install
Failed to download pecl/idn within preferred state "stable", latest
release is version 0.2.0, stability "beta", use
"channel://pecl.php.net/idn-0.2.0" to install
WARNING: "pear/HTTP_Request" is deprecated in favor of
"pear/HTTP_Request2"
WARNING: "pear/DB" is deprecated in favor of "pear/MDB2"
Failed to download pear/SOAP within preferred state "stable", latest
release is version 0.14.0, stability "beta", use
"channel://pear.php.net/SOAP-0.14.0" to install
Failed to download pear/XML_Serializer within preferred state "stable",
latest release is version 0.21.0, stability "beta", use
"channel://pear.php.net/XML_Serializer-0.21.0" to install
^[[B^[[CFailed to download pear/Console_Color2 within preferred state
"stable", latest release is version 0.1.2, stability "alpha", use
"channel://pear.php.net/Console_Color2-0.1.2" to install
WARNING: "pear/HTTP_Request" is deprecated in favor of
"pear/HTTP_Request2"
Unknown remote channel: pear.nrk.io
WARNING: "pecl/mongo" is deprecated in favor of "channel:///mongodb"
Failed to download pear/Numbers_Words within preferred state "stable",
latest release is version 0.18.2, stability "beta", use
"channel://pear.php.net/Numbers_Words-0.18.2" to install
Failed to download pear/Image_Text within preferred state "stable",
latest release is version 0.7.0, stability "beta", use
"channel://pear.php.net/Image_Text-0.7.0" to install
WARNING: "pear/Auth_SASL" is deprecated in favor of "pear/Auth_SASL2"
WARNING: "pear/Net_URL" is deprecated in favor of "pear/Net_URL2"
WARNING: "pear/HTTP_Request" is deprecated in favor of
"pear/HTTP_Request2"
WARNING: "pear/Auth_SASL" is deprecated in favor of "pear/Auth_SASL2"
horde/kronolith can optionally use package "pear/Date_Holidays"
(version >= 0.21.0, version <= 1.0.0alpha1, excluded versions:
1.0.0alpha1)
horde/Horde_Core can optionally use package "horde/Horde_Backup"
(version >= 1.0.0, version <= 2.0.0alpha1, excluded versions:
2.0.0alpha1)
horde/Horde_Core can optionally use PHP extension "sockets"
horde/Horde_Date can optionally use PHP extension "calendar"
horde/Horde_Db can optionally use PHP extension "mysql"
horde/Horde_Db can optionally use PHP extension "mysqli"
horde/Horde_Db can optionally use PHP extension "oci8"
horde/Horde_Auth can optionally use package "pecl/sasl"
horde/Horde_Cache can optionally use PHP extension "eaccelerator"
(version >= 0.9.5, version <= 0.9.6, excluded versions: 0.9.6)
horde/Horde_Cache can optionally use PHP extension "xcache"
horde/Horde_Mime can optionally use package "pecl/idn"
horde/Horde_Serialize can optionally use PHP extension "bz2"
horde/Horde_Serialize can optionally use PHP extension "wddx"
horde/Horde_Rpc can optionally use PHP extension "soap"
horde/Horde_Rpc can optionally use PHP extension "xmlrpc"
pear/Services_Weather requires PHP (version >= 4.0.0, version <=
6.0.0), installed version is 7.3.6
pear/Services_Weather can optionally use package "pear/SOAP" (version
>= 0.7.5)
pear/Services_Weather can optionally use package "pear/XML_Serializer"
(version >= 0.8)
pear/Console_Table can optionally use package "pear/Console_Color2"
(version >= 0.1.2)
horde/Horde_Kolab_Storage can optionally use PHP extension "imap"
horde/Horde_HashTable can optionally use package
"channel://pear.nrk.io/Predis" (version >= 0.8.3)
pear/Text_CAPTCHA can optionally use package "pear/Numbers_Words"
pear/Text_CAPTCHA can optionally use package "pear/Image_Text" (version
>= 0.7.0)
pecl/ssh2 requires PHP (version >= 4.0.0, version <= 6.0.0), installed
version is 7.3.6
horde/Horde_Mapi requires PHP extension "bcmath"
horde/Horde_ActiveSync requires package "horde/Horde_Mapi" (version >=
1.0.0, version <= 2.0.0alpha1, excluded versions: 2.0.0alpha1)
horde/Horde_Crypt_Blowfish can optionally use PHP extension "mcrypt"
pecl/mongo requires PHP (version >= 5.3.0, version <= 5.99.99),
installed version is 7.3.6
downloading groupware-5.2.22.tgz ...
Starting to download groupware-5.2.22.tgz (135,263 bytes)
.............................done: 135,263 bytes
downloading content-2.0.6.tgz ...
Starting to download content-2.0.6.tgz (22,250 bytes)
...done: 22,250 bytes
downloading gollem-3.0.12.tgz ...
Starting to download gollem-3.0.12.tgz (995,517 bytes)
...done: 995,517 bytes
downloading horde-5.2.21.tgz ...
Starting to download horde-5.2.21.tgz (2,989,952 bytes)
...done: 2,989,952 bytes
downloading kronolith-4.2.27.tgz ...
Starting to download kronolith-4.2.27.tgz (2,644,499 bytes)
...done: 2,644,499 bytes
downloading mnemo-4.2.14.tgz ...
Starting to download mnemo-4.2.14.tgz (1,183,902 bytes)
...done: 1,183,902 bytes
downloading nag-4.2.19.tgz ...
Starting to download nag-4.2.19.tgz (1,652,197 bytes)
...done: 1,652,197 bytes
downloading timeobjects-2.1.4.tgz ...
Starting to download timeobjects-2.1.4.tgz (416,526 bytes)
...done: 416,526 bytes
downloading trean-1.1.9.tgz ...
Starting to download trean-1.1.9.tgz (663,125 bytes)
...done: 663,125 bytes
downloading turba-4.2.25.tgz ...
Starting to download turba-4.2.25.tgz (2,002,750 bytes)
...done: 2,002,750 bytes
downloading Horde_Core-2.31.8.tgz ...
Starting to download Horde_Core-2.31.8.tgz (1,677,360 bytes)
...done: 1,677,360 bytes
downloading Horde_Date-2.4.1.tgz ...
Starting to download Horde_Date-2.4.1.tgz (73,961 bytes)
...done: 73,961 bytes
downloading Horde_Exception-2.0.8.tgz ...
Starting to download Horde_Exception-2.0.8.tgz (24,402 bytes)
...done: 24,402 bytes
downloading Horde_Db-2.4.0.tgz ...
Starting to download Horde_Db-2.4.0.tgz (96,916 bytes)
...done: 96,916 bytes
downloading Horde_Injector-2.0.5.tgz ...
Starting to download Horde_Injector-2.0.5.tgz (21,867 bytes)
...done: 21,867 bytes
downloading Horde_Rdo-2.1.0.tgz ...
Starting to download Horde_Rdo-2.1.0.tgz (35,076 bytes)
...done: 35,076 bytes
downloading Horde_Util-2.5.8.tgz ...
Starting to download Horde_Util-2.5.8.tgz (36,540 bytes)
...done: 36,540 bytes
downloading Horde_Argv-2.1.0.tgz ...
Starting to download Horde_Argv-2.1.0.tgz (64,636 bytes)
...done: 64,636 bytes
downloading Horde_Controller-2.0.5.tgz ...
Starting to download Horde_Controller-2.0.5.tgz (11,127 bytes)
...done: 11,127 bytes
downloading Horde_ElasticSearch-1.0.4.tgz ...
Starting to download Horde_ElasticSearch-1.0.4.tgz (4,006 bytes)
...done: 4,006 bytes
downloading Horde_Auth-2.2.2.tgz ...
Starting to download Horde_Auth-2.2.2.tgz (60,174 bytes)
...done: 60,174 bytes
downloading Horde_Cache-2.5.5.tgz ...
Starting to download Horde_Cache-2.5.5.tgz (27,049 bytes)
...done: 27,049 bytes
downloading Horde_Editor-2.0.5.tgz ...
Starting to download Horde_Editor-2.0.5.tgz (744,870 bytes)
...done: 744,870 bytes
downloading Horde_Mime-2.11.0.tgz ...
Starting to download Horde_Mime-2.11.0.tgz (147,538 bytes)
...done: 147,538 bytes
downloading Horde_Mime_Viewer-2.2.2.tgz ...
Starting to download Horde_Mime_Viewer-2.2.2.tgz (410,159 bytes)
...done: 410,159 bytes
downloading Horde_Perms-2.1.8.tgz ...
Starting to download Horde_Perms-2.1.8.tgz (38,068 bytes)
...done: 38,068 bytes
downloading Horde_Serialize-2.0.5.tgz ...
Starting to download Horde_Serialize-2.0.5.tgz (16,090 bytes)
...done: 16,090 bytes
downloading Horde_Support-2.2.0.tgz ...
Starting to download Horde_Support-2.2.0.tgz (24,787 bytes)
...done: 24,787 bytes
downloading Horde_Url-2.2.6.tgz ...
Starting to download Horde_Url-2.2.6.tgz (16,479 bytes)
...done: 16,479 bytes
downloading Horde_Vfs-2.4.0.tgz ...
Starting to download Horde_Vfs-2.4.0.tgz (73,791 bytes)
...done: 73,791 bytes
downloading Horde_View-2.0.6.tgz ...
Starting to download Horde_View-2.0.6.tgz (43,952 bytes)
...done: 43,952 bytes
downloading Horde_Share-2.2.0.tgz ...
Starting to download Horde_Share-2.2.0.tgz (61,899 bytes)
...done: 61,899 bytes
downloading Horde_Alarm-2.2.10.tgz ...
Starting to download Horde_Alarm-2.2.10.tgz (39,026 bytes)
...done: 39,026 bytes
downloading Horde_Autoloader-2.1.2.tgz ...
Starting to download Horde_Autoloader-2.1.2.tgz (15,521 bytes)
...done: 15,521 bytes
downloading Horde_Browser-2.0.16.tgz ...
Starting to download Horde_Browser-2.0.16.tgz (38,533 bytes)
...done: 38,533 bytes
downloading Horde_Form-2.0.19.tgz ...
Starting to download Horde_Form-2.0.19.tgz (198,152 bytes)
...done: 198,152 bytes
downloading Horde_Group-2.1.1.tgz ...
Starting to download Horde_Group-2.1.1.tgz (23,174 bytes)
...done: 23,174 bytes
downloading Horde_Http-2.1.7.tgz ...
Starting to download Horde_Http-2.1.7.tgz (15,199 bytes)
...done: 15,199 bytes
downloading Horde_Image-2.6.0.tgz ...
Starting to download Horde_Image-2.6.0.tgz (779,789 bytes)
...done: 779,789 bytes
downloading Horde_LoginTasks-2.0.7.tgz ...
Starting to download Horde_LoginTasks-2.0.7.tgz (30,230 bytes)
...done: 30,230 bytes
downloading Horde_Mail-2.6.5.tgz ...
Starting to download Horde_Mail-2.6.5.tgz (38,569 bytes)
...done: 38,569 bytes
downloading Horde_Nls-2.2.1.tgz ...
Starting to download Horde_Nls-2.2.1.tgz (448,774 bytes)
...done: 448,774 bytes
downloading Horde_Prefs-2.9.0.tgz ...
Starting to download Horde_Prefs-2.9.0.tgz (54,916 bytes)
...done: 54,916 bytes
downloading Horde_Rpc-2.1.8.tgz ...
Starting to download Horde_Rpc-2.1.8.tgz (39,096 bytes)
...done: 39,096 bytes
downloading Horde_Text_Diff-2.2.0.tgz ...
Starting to download Horde_Text_Diff-2.2.0.tgz (29,673 bytes)
...done: 29,673 bytes
downloading Horde_Token-2.0.9.tgz ...
Starting to download Horde_Token-2.0.9.tgz (31,728 bytes)
...done: 31,728 bytes
downloading Horde_Text_Filter-2.3.6.tgz ...
Starting to download Horde_Text_Filter-2.3.6.tgz (54,976 bytes)
...done: 54,976 bytes
downloading Horde_Tree-2.0.5.tgz ...
Starting to download Horde_Tree-2.0.5.tgz (19,049 bytes)
...done: 19,049 bytes
downloading Horde_Feed-2.0.4.tgz ...
Starting to download Horde_Feed-2.0.4.tgz (1,612,541 bytes)
...done: 1,612,541 bytes
downloading Horde_Oauth-2.0.4.tgz ...
Starting to download Horde_Oauth-2.0.4.tgz (6,175 bytes)
...done: 6,175 bytes
downloading Horde_OpenXchange-1.0.1.tgz ...
Starting to download Horde_OpenXchange-1.0.1.tgz (6,006 bytes)
...done: 6,006 bytes
downloading Horde_Service_Facebook-2.0.10.tgz ...
Starting to download Horde_Service_Facebook-2.0.10.tgz (31,330 bytes)
...done: 31,330 bytes
downloading Horde_Service_Twitter-2.1.6.tgz ...
Starting to download Horde_Service_Twitter-2.1.6.tgz (9,756 bytes)
...done: 9,756 bytes
downloading Horde_Service_Weather-2.5.4.tgz ...
Starting to download Horde_Service_Weather-2.5.4.tgz (215,881 bytes)
...done: 215,881 bytes
downloading Horde_SyncMl-2.0.7.tgz ...
Starting to download Horde_SyncMl-2.0.7.tgz (136,309 bytes)
...done: 136,309 bytes
downloading Console_Table-1.3.1.tgz ...
Starting to download Console_Table-1.3.1.tgz (11,492 bytes)
...done: 11,492 bytes
downloading File_Find-1.3.3.tgz ...
Starting to download File_Find-1.3.3.tgz (8,212 bytes)
...done: 8,212 bytes
downloading Horde_Data-2.1.4.tgz ...
Starting to download Horde_Data-2.1.4.tgz (44,351 bytes)
...done: 44,351 bytes
downloading Horde_Date_Parser-2.0.6.tgz ...
Starting to download Horde_Date_Parser-2.0.6.tgz (29,994 bytes)
...done: 29,994 bytes
downloading Horde_Dav-1.1.4.tgz ...
Starting to download Horde_Dav-1.1.4.tgz (247,189 bytes)
...done: 247,189 bytes
downloading Horde_History-2.3.6.tgz ...
Starting to download Horde_History-2.3.6.tgz (26,205 bytes)
...done: 26,205 bytes
downloading Horde_Icalendar-2.1.8.tgz ...
Starting to download Horde_Icalendar-2.1.8.tgz (108,647 bytes)
...done: 108,647 bytes
downloading Horde_Lock-2.1.4.tgz ...
Starting to download Horde_Lock-2.1.4.tgz (17,580 bytes)
...done: 17,580 bytes
downloading Horde_Notification-2.0.4.tgz ...
Starting to download Horde_Notification-2.0.4.tgz (21,018 bytes)
...done: 21,018 bytes
downloading Horde_Timezone-1.1.0.tgz ...
Starting to download Horde_Timezone-1.1.0.tgz (28,514 bytes)
...done: 28,514 bytes
downloading Date-1.4.7.tgz ...
Starting to download Date-1.4.7.tgz (56,940 bytes)
...done: 56,940 bytes
downloading Horde_Test-2.6.3.tgz ...
Starting to download Horde_Test-2.6.3.tgz (732,814 bytes)
...done: 732,814 bytes
downloading Horde_Cli-2.3.0.tgz ...
Starting to download Horde_Cli-2.3.0.tgz (30,628 bytes)
...done: 30,628 bytes
downloading Horde_Crypt-2.7.12.tgz ...
Starting to download Horde_Crypt-2.7.12.tgz (156,807 bytes)
...done: 156,807 bytes
downloading Horde_Pdf-2.0.7.tgz ...
Starting to download Horde_Pdf-2.0.7.tgz (52,674 bytes)
...done: 52,674 bytes
downloading Horde_Routes-2.0.5.tgz ...
Starting to download Horde_Routes-2.0.5.tgz (45,034 bytes)
...done: 45,034 bytes
downloading Horde_Queue-1.1.5.tgz ...
Starting to download Horde_Queue-1.1.5.tgz (12,009 bytes)
...done: 12,009 bytes
downloading Horde_Imsp-2.0.10.tgz ...
Starting to download Horde_Imsp-2.0.10.tgz (33,324 bytes)
...done: 33,324 bytes
downloading Horde_Kolab_Format-2.0.9.tgz ...
Starting to download Horde_Kolab_Format-2.0.9.tgz (58,281 bytes)
...done: 58,281 bytes
downloading Horde_Kolab_Storage-2.2.3.tgz ...
Starting to download Horde_Kolab_Storage-2.2.3.tgz (178,498 bytes)
...done: 178,498 bytes
downloading Horde_Ldap-2.4.1.tgz ...
Starting to download Horde_Ldap-2.4.1.tgz (65,190 bytes)
...done: 65,190 bytes
downloading Horde_Compress-2.2.2.tgz ...
Starting to download Horde_Compress-2.2.2.tgz (2,199,440 bytes)
...done: 2,199,440 bytes
downloading Horde_Compress_Fast-1.1.1.tgz ...
Starting to download Horde_Compress_Fast-1.1.1.tgz (12,992 bytes)
...done: 12,992 bytes
downloading Horde_CssMinify-1.0.4.tgz ...
Starting to download Horde_CssMinify-1.0.4.tgz (11,717 bytes)
...done: 11,717 bytes
downloading Horde_HashTable-1.2.6.tgz ...
Starting to download Horde_HashTable-1.2.6.tgz (16,739 bytes)
...done: 16,739 bytes
downloading Horde_JavascriptMinify-1.1.5.tgz ...
Starting to download Horde_JavascriptMinify-1.1.5.tgz (15,419 bytes)
...done: 15,419 bytes
downloading Horde_Log-2.3.0.tgz ...
Starting to download Horde_Log-2.3.0.tgz (14,806 bytes)
...done: 14,806 bytes
downloading Horde_Pack-1.0.7.tgz ...
Starting to download Horde_Pack-1.0.7.tgz (16,074 bytes)
...done: 16,074 bytes
downloading Horde_Secret-2.0.6.tgz ...
Starting to download Horde_Secret-2.0.6.tgz (13,638 bytes)
...done: 13,638 bytes
downloading Horde_SessionHandler-2.2.9.tgz ...
Starting to download Horde_SessionHandler-2.2.9.tgz (24,709 bytes)
...done: 24,709 bytes
downloading Horde_Template-2.0.3.tgz ...
Starting to download Horde_Template-2.0.3.tgz (14,897 bytes)
...done: 14,897 bytes
downloading Horde_Translation-2.2.2.tgz ...
Starting to download Horde_Translation-2.2.2.tgz (15,959 bytes)
...done: 15,959 bytes
downloading Horde_Imap_Client-2.29.17.tgz ...
Starting to download Horde_Imap_Client-2.29.17.tgz (262,881 bytes)
...done: 262,881 bytes
downloading Horde_JavascriptMinify_Jsmin-1.0.2.tgz ...
Starting to download Horde_JavascriptMinify_Jsmin-1.0.2.tgz (4,826
bytes)
...done: 4,826 bytes
downloading Horde_Kolab_Server-2.0.5.tgz ...
Starting to download Horde_Kolab_Server-2.0.5.tgz (101,943 bytes)
...done: 101,943 bytes
downloading Horde_Kolab_Session-2.0.3.tgz ...
Starting to download Horde_Kolab_Session-2.0.3.tgz (21,250 bytes)
...done: 21,250 bytes
downloading Horde_Mongo-1.1.0.tgz ...
Starting to download Horde_Mongo-1.1.0.tgz (99,713 bytes)
...done: 99,713 bytes
downloading Horde_SpellChecker-2.1.3.tgz ...
Starting to download Horde_SpellChecker-2.1.3.tgz (13,255 bytes)
...done: 13,255 bytes
downloading Text_CAPTCHA-1.0.2.tgz ...
Starting to download Text_CAPTCHA-1.0.2.tgz (197,084 bytes)
...done: 197,084 bytes
downloading Text_Figlet-1.0.2.tgz ...
Starting to download Text_Figlet-1.0.2.tgz (9,119 bytes)
...done: 9,119 bytes
downloading Text_LanguageDetect-1.0.0.tgz ...
Starting to download Text_LanguageDetect-1.0.0.tgz (125,576 bytes)
...done: 125,576 bytes
downloading pam-1.0.3.tgz ...
Starting to download pam-1.0.3.tgz (6,671 bytes)
...done: 6,671 bytes
downloading Horde_Memcache-2.1.1.tgz ...
Starting to download Horde_Memcache-2.1.1.tgz (15,009 bytes)
...done: 15,009 bytes
downloading APC-3.1.13.tgz ...
Starting to download APC-3.1.13.tgz (171,591 bytes)
...done: 171,591 bytes
downloading Horde_ListHeaders-1.2.5.tgz ...
Starting to download Horde_ListHeaders-1.2.5.tgz (17,486 bytes)
...done: 17,486 bytes
downloading Horde_Stream-1.6.3.tgz ...
Starting to download Horde_Stream-1.6.3.tgz (18,014 bytes)
...done: 18,014 bytes
downloading Horde_Stream_Filter-2.0.4.tgz ...
Starting to download Horde_Stream_Filter-2.0.4.tgz (13,535 bytes)
...done: 13,535 bytes
downloading Horde_Text_Flowed-2.0.3.tgz ...
Starting to download Horde_Text_Flowed-2.0.3.tgz (14,273 bytes)
...done: 14,273 bytes
downloading intl-3.0.0.tgz ...
Starting to download intl-3.0.0.tgz (248,200 bytes)
...done: 248,200 bytes
downloading LZF-1.6.7.tgz ...
Starting to download LZF-1.6.7.tgz (17,999 bytes)
...done: 17,999 bytes
downloading Horde_Stream_Wrapper-2.1.4.tgz ...
Starting to download Horde_Stream_Wrapper-2.1.4.tgz (5,668 bytes)
...done: 5,668 bytes
downloading pecl_http-3.2.1.tgz ...
Starting to download pecl_http-3.2.1.tgz (221,244 bytes)
...done: 221,244 bytes
downloading XML_SVG-1.1.0.tgz ...
Starting to download XML_SVG-1.1.0.tgz (7,853 bytes)
...done: 7,853 bytes
downloading Horde_Idna-1.1.1.tgz ...
Starting to download Horde_Idna-1.1.1.tgz (9,835 bytes)
...done: 9,835 bytes
downloading Horde_Smtp-1.9.5.tgz ...
Starting to download Horde_Smtp-1.9.5.tgz (33,751 bytes)
...done: 33,751 bytes
downloading Net_SMTP-1.8.1.tgz ...
Starting to download Net_SMTP-1.8.1.tgz (14,931 bytes)
...done: 14,931 bytes
downloading geoip-1.0.8.tgz ...
Starting to download geoip-1.0.8.tgz (10,061 bytes)
...done: 10,061 bytes
downloading Horde_Xml_Element-2.0.4.tgz ...
Starting to download Horde_Xml_Element-2.0.4.tgz (10,932 bytes)
...done: 10,932 bytes
downloading xdiff-2.0.1.tgz ...
Starting to download xdiff-2.0.1.tgz (10,418 bytes)
...done: 10,418 bytes
downloading Horde_Text_Filter_Jsmin-1.0.2.tgz ...
Starting to download Horde_Text_Filter_Jsmin-1.0.2.tgz (4,646 bytes)
...done: 4,646 bytes
downloading HTTP_Request-1.4.4.tgz ...
Starting to download HTTP_Request-1.4.4.tgz (17,233 bytes)
...done: 17,233 bytes
downloading Net_FTP-1.4.0.tgz ...
Starting to download Net_FTP-1.4.0.tgz (35,593 bytes)
...done: 35,593 bytes
downloading Cache-1.5.6.tgz ...
Starting to download Cache-1.5.6.tgz (31,735 bytes)
...done: 31,735 bytes
downloading DB-1.9.3.tgz ...
Starting to download DB-1.9.3.tgz (132,290 bytes)
...done: 132,290 bytes
downloading Horde_Xml_Wbxml-2.0.3.tgz ...
Starting to download Horde_Xml_Wbxml-2.0.3.tgz (26,620 bytes)
...done: 26,620 bytes
downloading Net_IMAP-1.1.3.tgz ...
Starting to download Net_IMAP-1.1.3.tgz (41,082 bytes)
...done: 41,082 bytes
downloading Horde_Css_Parser-1.0.11.tgz ...
Starting to download Horde_Css_Parser-1.0.11.tgz (81,943 bytes)
...done: 81,943 bytes
downloading Horde_Constraint-2.0.3.tgz ...
Starting to download Horde_Constraint-2.0.3.tgz (5,073 bytes)
...done: 5,073 bytes
downloading Horde_Scribe-2.0.3.tgz ...
Starting to download Horde_Scribe-2.0.3.tgz (5,106 bytes)
...done: 5,106 bytes
downloading igbinary-3.0.1.tgz ...
Starting to download igbinary-3.0.1.tgz (58,048 bytes)
...done: 58,048 bytes
downloading msgpack-2.0.3.tgz ...
Starting to download msgpack-2.0.3.tgz (45,769 bytes)
...done: 45,769 bytes
downloading Horde_Crypt_Blowfish-1.1.2.tgz ...
Starting to download Horde_Crypt_Blowfish-1.1.2.tgz (26,056 bytes)
...done: 26,056 bytes
downloading Horde_Socket_Client-2.1.2.tgz ...
Starting to download Horde_Socket_Client-2.1.2.tgz (13,072 bytes)
...done: 13,072 bytes
downloading Horde_Stringprep-1.0.4.tgz ...
Starting to download Horde_Stringprep-1.0.4.tgz (65,383 bytes)
...done: 65,383 bytes
downloading mongodb-1.5.5.tgz ...
Starting to download mongodb-1.5.5.tgz (1,060,017 bytes)
...done: 1,060,017 bytes
downloading Text_Password-1.2.1.tgz ...
Starting to download Text_Password-1.2.1.tgz (5,631 bytes)
...done: 5,631 bytes
downloading memcache-2.2.7.tgz ...
Starting to download memcache-2.2.7.tgz (36,459 bytes)
...done: 36,459 bytes
downloading raphf-2.0.0.tgz ...
Starting to download raphf-2.0.0.tgz (15,715 bytes)
...done: 15,715 bytes
downloading propro-2.1.0.tgz ...
Starting to download propro-2.1.0.tgz (14,253 bytes)
...done: 14,253 bytes
downloading Net_Socket-1.2.2.tgz ...
Starting to download Net_Socket-1.2.2.tgz (6,903 bytes)
...done: 6,903 bytes
downloading Auth_SASL-1.1.0.tgz ...
Starting to download Auth_SASL-1.1.0.tgz (9,380 bytes)
...done: 9,380 bytes
downloading Net_URL-1.0.15.tgz ...
Starting to download Net_URL-1.0.15.tgz (6,393 bytes)
...done: 6,393 bytes
downloading Horde_Thrift-2.0.3.tgz ...
Starting to download Horde_Thrift-2.0.3.tgz (22,696 bytes)
...done: 22,696 bytes
install ok: channel://pear.horde.org/Horde_Util-2.5.8
install ok: channel://pear.horde.org/Horde_Autoloader-2.1.2
install ok: channel://pear.php.net/Console_Table-1.3.1
install ok: channel://pear.php.net/File_Find-1.3.3
install ok: channel://pear.php.net/Date-1.4.7
install ok: channel://pear.horde.org/Horde_Queue-1.1.5
install ok: channel://pear.horde.org/Horde_Template-2.0.3
install ok: channel://pear.horde.org/Horde_Translation-2.2.2
install ok: channel://pear.horde.org/Horde_Mongo-1.1.0
install ok: channel://pear.php.net/Text_Figlet-1.0.2
install ok: channel://pear.php.net/Text_LanguageDetect-1.0.0
3 source files, building
running: phpize
Configuring for:
PHP Api Version:         20180731
Zend Module Api No:      20180731
Zend Extension Api No:   320180731
building in /tmp/pear/temp/pear-build-defaultusert3S4B9/pam-1.0.3
running: /tmp/pear/temp/pam/configure --with-php-
config=/usr/local/bin/php-config
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 PAM support... yes, shared
checking for pam_start in -lpam... 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-defaultusert3S4B9/pam-1.0.3/libtool 
--mode=compile cc  -I. -I/tmp/pear/temp/pam -DPHP_ATOM_INC
-I/tmp/pear/temp/pear-build-defaultusert3S4B9/pam-1.0.3/include
-I/tmp/pear/temp/pear-build-defaultusert3S4B9/pam-1.0.3/main
-I/tmp/pear/temp/pam -I/usr/local/include/php
-I/usr/local/include/php/main -I/usr/local/include/php/TSRM
-I/usr/local/include/php/Zend -I/usr/local/include/php/ext
-I/usr/local/include/php/ext/date/lib  -DHAVE_CONFIG_H  -g -O2   -c
/tmp/pear/temp/pam/pam.c -o pam.lo
mkdir .libs
 cc -I. -I/tmp/pear/temp/pam -DPHP_ATOM_INC -I/tmp/pear/temp/pear-
build-defaultusert3S4B9/pam-1.0.3/include -I/tmp/pear/temp/pear-build-
defaultusert3S4B9/pam-1.0.3/main -I/tmp/pear/temp/pam
-I/usr/local/include/php -I/usr/local/include/php/main
-I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend
-I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib
-DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/pam/pam.c  -fPIC -DPIC -o
.libs/pam.o
/tmp/pear/temp/pam/pam.c: In function 'zif_pam_auth':
/tmp/pear/temp/pam/pam.c:251:36: error: macro "ZVAL_STRING" passed 3
arguments, but takes just 2
    ZVAL_STRING(status, error_msg, 0);
                                    ^
/tmp/pear/temp/pam/pam.c:251:4: error: 'ZVAL_STRING' undeclared (first
use in this function)
    ZVAL_STRING(status, error_msg, 0);
    ^~~~~~~~~~~
/tmp/pear/temp/pam/pam.c:251:4: note: each undeclared identifier is
reported only once for each function it appears in
/tmp/pear/temp/pam/pam.c:256:40: warning: passing argument 2 of
'zend_hash_find' from incompatible pointer type [-Wincompatible-
pointer-types]
  if (zend_hash_find(&EG(symbol_table), "_SERVER", sizeof("_SERVER"),
(void **)&server) == SUCCESS && Z_TYPE_PP(server) == IS_ARRAY) {
                                        ^~~~~~~~~
In file included from /usr/local/include/php/Zend/zend.h:32:0,
                 from /usr/local/include/php/main/php.h:33,
                 from /tmp/pear/temp/pam/pam.c:26:
/usr/local/include/php/Zend/zend_hash.h:166:30: note: expected
'zend_string * {aka struct _zend_string *}' but argument is of type
'char *'
 ZEND_API zval* ZEND_FASTCALL zend_hash_find(const HashTable *ht,
zend_string *key);
                              ^~~~~~~~~~~~~~
/tmp/pear/temp/pam/pam.c:256:6: error: too many arguments to function
'zend_hash_find'
  if (zend_hash_find(&EG(symbol_table), "_SERVER", sizeof("_SERVER"),
(void **)&server) == SUCCESS && Z_TYPE_PP(server) == IS_ARRAY) {
      ^~~~~~~~~~~~~~
In file included from /usr/local/include/php/Zend/zend.h:32:0,
                 from /usr/local/include/php/main/php.h:33,
                 from /tmp/pear/temp/pam/pam.c:26:
/usr/local/include/php/Zend/zend_hash.h:166:30: note: declared here
 ZEND_API zval* ZEND_FASTCALL zend_hash_find(const HashTable *ht,
zend_string *key);
                              ^~~~~~~~~~~~~~
/tmp/pear/temp/pam/pam.c:256:102: warning: implicit declaration of
function 'Z_TYPE_PP' [-Wimplicit-function-declaration]
  if (zend_hash_find(&EG(symbol_table), "_SERVER", sizeof("_SERVER"),
(void **)&server) == SUCCESS && Z_TYPE_PP(server) == IS_ARRAY) {
                                                                       
                               ^~~~~~~~~
/tmp/pear/temp/pam/pam.c:257:22: warning: implicit declaration of
function 'Z_ARRVAL_PP' [-Wimplicit-function-declaration]
   if (zend_hash_find(Z_ARRVAL_PP(server), "REMOTE_ADDR",
sizeof("REMOTE_ADDR"), (void **)&remote_addr) == SUCCESS &&
Z_TYPE_PP(remote_addr) == IS_STRING) {
                      ^~~~~~~~~~~
/tmp/pear/temp/pam/pam.c:257:22: warning: passing argument 1 of
'zend_hash_find' makes pointer from integer without a cast [-Wint-
conversion]
In file included from /usr/local/include/php/Zend/zend.h:32:0,
                 from /usr/local/include/php/main/php.h:33,
                 from /tmp/pear/temp/pam/pam.c:26:
/usr/local/include/php/Zend/zend_hash.h:166:30: note: expected 'const
HashTable * {aka const struct _zend_array *}' but argument is of type
'int'
 ZEND_API zval* ZEND_FASTCALL zend_hash_find(const HashTable *ht,
zend_string *key);
                              ^~~~~~~~~~~~~~
/tmp/pear/temp/pam/pam.c:257:43: warning: passing argument 2 of
'zend_hash_find' from incompatible pointer type [-Wincompatible-
pointer-types]
   if (zend_hash_find(Z_ARRVAL_PP(server), "REMOTE_ADDR",
sizeof("REMOTE_ADDR"), (void **)&remote_addr) == SUCCESS &&
Z_TYPE_PP(remote_addr) == IS_STRING) {
                                           ^~~~~~~~~~~~~
In file included from /usr/local/include/php/Zend/zend.h:32:0,
                 from /usr/local/include/php/main/php.h:33,
                 from /tmp/pear/temp/pam/pam.c:26:
/usr/local/include/php/Zend/zend_hash.h:166:30: note: expected
'zend_string * {aka struct _zend_string *}' but argument is of type
'char *'
 ZEND_API zval* ZEND_FASTCALL zend_hash_find(const HashTable *ht,
zend_string *key);
                              ^~~~~~~~~~~~~~
/tmp/pear/temp/pam/pam.c:257:7: error: too many arguments to function
'zend_hash_find'
   if (zend_hash_find(Z_ARRVAL_PP(server), "REMOTE_ADDR",
sizeof("REMOTE_ADDR"), (void **)&remote_addr) == SUCCESS &&
Z_TYPE_PP(remote_addr) == IS_STRING) {
       ^~~~~~~~~~~~~~
In file included from /usr/local/include/php/Zend/zend.h:32:0,
                 from /usr/local/include/php/main/php.h:33,
                 from /tmp/pear/temp/pam/pam.c:26:
/usr/local/include/php/Zend/zend_hash.h:166:30: note: declared here
 ZEND_API zval* ZEND_FASTCALL zend_hash_find(const HashTable *ht,
zend_string *key);
                              ^~~~~~~~~~~~~~
/tmp/pear/temp/pam/pam.c:258:34: warning: implicit declaration of
function 'Z_STRVAL_PP' [-Wimplicit-function-declaration]
    pam_set_item(pamh, PAM_RHOST, Z_STRVAL_PP(remote_addr));
                                  ^~~~~~~~~~~
/tmp/pear/temp/pam/pam.c:258:34: warning: passing argument 3 of
'pam_set_item' makes pointer from integer without a cast [-Wint-
conversion]
In file included from /usr/include/security/pam_appl.h:18:0,
                 from /tmp/pear/temp/pam/pam.c:30:
/usr/include/security/_pam_types.h:172:1: note: expected 'const void *'
but argument is of type 'int'
 pam_set_item(pam_handle_t *pamh, int item_type, const void *item);
 ^~~~~~~~~~~~
/tmp/pear/temp/pam/pam.c:266:36: error: macro "ZVAL_STRING" passed 3
arguments, but takes just 2
    ZVAL_STRING(status, error_msg, 0);
                                    ^
/tmp/pear/temp/pam/pam.c:277:37: error: macro "ZVAL_STRING" passed 3
arguments, but takes just 2
     ZVAL_STRING(status, error_msg, 0);
                                     ^
/tmp/pear/temp/pam/pam.c: In function 'zif_pam_chpass':
/tmp/pear/temp/pam/pam.c:315:36: error: macro "ZVAL_STRING" passed 3
arguments, but takes just 2
    ZVAL_STRING(status, error_msg, 0);
                                    ^
/tmp/pear/temp/pam/pam.c:315:4: error: 'ZVAL_STRING' undeclared (first
use in this function)
    ZVAL_STRING(status, error_msg, 0);
    ^~~~~~~~~~~
/tmp/pear/temp/pam/pam.c:324:36: error: macro "ZVAL_STRING" passed 3
arguments, but takes just 2
    ZVAL_STRING(status, error_msg, 0);
                                    ^
/tmp/pear/temp/pam/pam.c:334:36: error: macro "ZVAL_STRING" passed 3
arguments, but takes just 2
    ZVAL_STRING(status, error_msg, 0);
                                    ^
Makefile:194: recipe for target 'pam.lo' failed
make: *** [pam.lo] Error 1
ERROR: `make' failedNG" passed 3 arguments, but takes just 2
    ZVAL_STRING(status, error_msg, 0);
                                    ^
/tmp/pear/temp/pam/pam.c:251:4: error: 'ZVAL_STRING' undeclared (first
use in this function)
    ZVAL_STRING(status, error_msg, 0);
    ^~~~~~~~~~~
/tmp/pear/temp/pam/pam.c:251:4: note: each undeclared identifier is
reported only once for each function it appears in
/tmp/pear/temp/pam/pam.c:256:40: warning: passing argument 2 of
'zend_hash_find' from incompatible pointer type [-Wincompatible-
pointer-types]
  if (zend_hash_find(&EG(symbol_table), "_SERVER", sizeof("_SERVER"),
(void **)&server) == SUCCESS && Z_TYPE_PP(server) == IS_ARRAY) {
                                        ^~~~~~~~~
In file included from /usr/local/include/php/Zend/zend.h:32:0,
                 from /usr/local/include/php/main/php.h:33,
                 from /tmp/pear/temp/pam/pam.c:26:
/usr/local/include/php/Zend/zend_hash.h:166:30: note: expected
'zend_string * {aka struct _zend_string *}' but argument is of type
'char *'
 ZEND_API zval* ZEND_FASTCALL zend_hash_find(const HashTable *ht,
zend_string *key);
                              ^~~~~~~~~~~~~~
/tmp/pear/temp/pam/pam.c:256:6: error: too many arguments to function
'zend_hash_find'
  if (zend_hash_find(&EG(symbol_table), "_SERVER", sizeof("_SERVER"),
(void **)&server) == SUCCESS && Z_TYPE_PP(server) == IS_ARRAY) {
      ^~~~~~~~~~~~~~
In file included from /usr/local/include/php/Zend/zend.h:32:0,
                 from /usr/local/include/php/main/php.h:33,
                 from /tmp/pear/temp/pam/pam.c:26:
/usr/local/include/php/Zend/zend_hash.h:166:30: note: declared here
 ZEND_API zval* ZEND_FASTCALL zend_hash_find(const HashTable *ht,
zend_string *key);
                              ^~~~~~~~~~~~~~
/tmp/pear/temp/pam/pam.c:256:102: warning: implicit declaration of
function 'Z_TYPE_PP' [-Wimplicit-function-declaration]
  if (zend_hash_find(&EG(symbol_table), "_SERVER", sizeof("_SERVER"),
(void **)&server) == SUCCESS && Z_TYPE_PP(server) == IS_ARRAY) {
                                                                       
                               ^~~~~~~~~
/tmp/pear/temp/pam/pam.c:257:22: warning: implicit declaration of
function 'Z_ARRVAL_PP' [-Wimplicit-function-declaration]
   if (zend_hash_find(Z_ARRVAL_PP(server), "REMOTE_ADDR",
sizeof("REMOTE_ADDR"), (void **)&remote_addr) == SUCCESS &&
Z_TYPE_PP(remote_addr) == IS_STRING) {
                      ^~~~~~~~~~~
/tmp/pear/temp/pam/pam.c:257:22: warning: passing argument 1 of
'zend_hash_find' makes pointer from integer without a cast [-Wint-
conversion]
In file included from /usr/local/include/php/Zend/zend.h:32:0,
                 from /usr/local/include/php/main/php.h:33,
                 from /tmp/pear/temp/pam/pam.c:26:
/usr/local/include/php/Zend/zend_hash.h:166:30: note: expected 'const
HashTable * {aka const struct _zend_array *}' but argument is of type
'int'
 ZEND_API zval* ZEND_FASTCALL zend_hash_find(const HashTable *ht,
zend_string *key);
                              ^~~~~~~~~~~~~~
/tmp/pear/temp/pam/pam.c:257:43: warning: passing argument 2 of
'zend_hash_find' from incompatible pointer type [-Wincompatible-
pointer-types]
   if (zend_hash_find(Z_ARRVAL_PP(server), "REMOTE_ADDR",
sizeof("REMOTE_ADDR"), (void **)&remote_addr) == SUCCESS &&
Z_TYPE_PP(remote_addr) == IS_STRING) {
                                           ^~~~~~~~~~~~~
In file included from /usr/local/include/php/Zend/zend.h:32:0,
                 from /usr/local/include/php/main/php.h:33,
                 from /tmp/pear/temp/pam/pam.c:26:
/usr/local/include/php/Zend/zend_hash.h:166:30: note: expected
'zend_string * {aka struct _zend_string *}' but argument is of type
'char *'
 ZEND_API zval* ZEND_FASTCALL zend_hash_find(const HashTable *ht,
zend_string *key);
                              ^~~~~~~~~~~~~~
/tmp/pear/temp/pam/pam.c:257:7: error: too many arguments to function
'zend_hash_find'
   if (zend_hash_find(Z_ARRVAL_PP(server), "REMOTE_ADDR",
sizeof("REMOTE_ADDR"), (void **)&remote_addr) == SUCCESS &&
Z_TYPE_PP(remote_addr) == IS_STRING) {
       ^~~~~~~~~~~~~~
In file included from /usr/local/include/php/Zend/zend.h:32:0,
                 from /usr/local/include/php/main/php.h:33,
                 from /tmp/pear/temp/pam/pam.c:26:
/usr/local/include/php/Zend/zend_hash.h:166:30: note: declared here
 ZEND_API zval* ZEND_FASTCALL zend_hash_find(const HashTable *ht,
zend_string *key);
                              ^~~~~~~~~~~~~~
/tmp/pear/temp/pam/pam.c:258:34: warning: implicit declaration of
function 'Z_STRVAL_PP' [-Wimplicit-function-declaration]
    pam_set_item(pamh, PAM_RHOST, Z_STRVAL_PP(remote_addr));
                                  ^~~~~~~~~~~
/tmp/pear/temp/pam/pam.c:258:34: warning: passing argument 3 of
'pam_set_item' makes pointer from integer without a cast [-Wint-
conversion]
In file included from /usr/include/security/pam_appl.h:18:0,
                 from /tmp/pear/temp/pam/pam.c:30:
/usr/include/security/_pam_types.h:172:1: note: expected 'const void *'
but argument is of type 'int'
 pam_set_item(pam_handle_t *pamh, int item_type, const void *item);
 ^~~~~~~~~~~~
/tmp/pear/temp/pam/pam.c:266:36: error: macro "ZVAL_STRING" passed 3
arguments, but takes just 2
    ZVAL_STRING(status, error_msg, 0);
                                    ^
/tmp/pear/temp/pam/pam.c:277:37: error: macro "ZVAL_STRING" passed 3
arguments, but takes just 2
     ZVAL_STRING(status, error_msg, 0);
                                     ^
/tmp/pear/temp/pam/pam.c: In function 'zif_pam_chpass':
/tmp/pear/temp/pam/pam.c:315:36: error: macro "ZVAL_STRING" passed 3
arguments, but takes just 2
    ZVAL_STRING(status, error_msg, 0);
                                    ^
/tmp/pear/temp/pam/pam.c:315:4: error: 'ZVAL_STRING' undeclared (first
use in this function)
    ZVAL_STRING(status, error_msg, 0);
    ^~~~~~~~~~~
/tmp/pear/temp/pam/pam.c:324:36: error: macro "ZVAL_STRING" passed 3
arguments, but takes just 2
    ZVAL_STRING(status, error_msg, 0);
                                    ^
/tmp/pear/temp/pam/pam.c:334:36: error: macro "ZVAL_STRING" passed 3
arguments, but takes just 2
    ZVAL_STRING(status, error_msg, 0);
                                    ^
Makefile:194: recipe for target 'pam.lo' failed
make: *** [pam.lo] Error 1
ERROR: `make' failed

Regards,
vandman,




More information about the horde mailing list