Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add more Alpine 3.8 variants #702

Merged
merged 2 commits into from
Aug 17, 2018
Merged

Conversation

tianon
Copy link
Member

@tianon tianon commented Aug 15, 2018

No description provided.

@tianon
Copy link
Member Author

tianon commented Aug 15, 2018

I think 7.0 is still going to fail with SSL issues.

Edit: called it:

/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc  -Iext/openssl/ -I/usr/src/php/ext/openssl/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/include/libxml2 -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -I/usr/src/php/ext/sqlite3/libsqlite -I/usr/src/php/TSRM -I/usr/src/php/Zend  -fstack-protector-strong -fpic -fpie -O2  -I/usr/include -fstack-protector-strong -fpic -fpie -O2 -fvisibility=hidden   -c /usr/src/php/ext/openssl/openssl.c -o ext/openssl/openssl.lo 
/usr/src/php/ext/openssl/openssl.c:551:12: error: static declaration of 'RSA_set0_key' follows non-static declaration
 static int RSA_set0_key(RSA *r, BIGNUM *n, BIGNUM *e, BIGNUM *d)
            ^~~~~~~~~~~~
In file included from /usr/src/php/ext/openssl/openssl.c:47:0:
/usr/include/openssl/rsa.h:401:5: note: previous declaration of 'RSA_set0_key' was here
 int RSA_set0_key(RSA *r, BIGNUM *n, BIGNUM *e, BIGNUM *d);
     ^~~~~~~~~~~~
/usr/src/php/ext/openssl/openssl.c:560:12: error: static declaration of 'RSA_set0_factors' follows non-static declaration
 static int RSA_set0_factors(RSA *r, BIGNUM *p, BIGNUM *q)
            ^~~~~~~~~~~~~~~~
In file included from /usr/src/php/ext/openssl/openssl.c:47:0:
/usr/include/openssl/rsa.h:406:5: note: previous declaration of 'RSA_set0_factors' was here
 int RSA_set0_factors(RSA *r, BIGNUM *p, BIGNUM *q);
     ^~~~~~~~~~~~~~~~
/usr/src/php/ext/openssl/openssl.c:568:12: error: static declaration of 'RSA_set0_crt_params' follows non-static declaration
 static int RSA_set0_crt_params(RSA *r, BIGNUM *dmp1, BIGNUM *dmq1, BIGNUM *iqmp)
            ^~~~~~~~~~~~~~~~~~~
In file included from /usr/src/php/ext/openssl/openssl.c:47:0:
/usr/include/openssl/rsa.h:404:5: note: previous declaration of 'RSA_set0_crt_params' was here
 int RSA_set0_crt_params(RSA *r, BIGNUM *dmp1, BIGNUM *dmq1, BIGNUM *iqmp);
     ^~~~~~~~~~~~~~~~~~~
/usr/src/php/ext/openssl/openssl.c:577:13: error: static declaration of 'RSA_get0_key' follows non-static declaration
 static void RSA_get0_key(const RSA *r, const BIGNUM **n, const BIGNUM **e, const BIGNUM **d)
             ^~~~~~~~~~~~
In file included from /usr/src/php/ext/openssl/openssl.c:47:0:
/usr/include/openssl/rsa.h:399:6: note: previous declaration of 'RSA_get0_key' was here
 void RSA_get0_key(const RSA *r, const BIGNUM **n, const BIGNUM **e,
      ^~~~~~~~~~~~
/usr/src/php/ext/openssl/openssl.c:584:13: error: static declaration of 'RSA_get0_factors' follows non-static declaration
 static void RSA_get0_factors(const RSA *r, const BIGNUM **p, const BIGNUM **q)
             ^~~~~~~~~~~~~~~~
In file included from /usr/src/php/ext/openssl/openssl.c:47:0:
/usr/include/openssl/rsa.h:405:6: note: previous declaration of 'RSA_get0_factors' was here
 void RSA_get0_factors(const RSA *r, const BIGNUM **p, const BIGNUM **q);
      ^~~~~~~~~~~~~~~~
/usr/src/php/ext/openssl/openssl.c:590:13: error: static declaration of 'RSA_get0_crt_params' follows non-static declaration
 static void RSA_get0_crt_params(const RSA *r, const BIGNUM **dmp1, const BIGNUM **dmq1, const BIGNUM **iqmp)
             ^~~~~~~~~~~~~~~~~~~
In file included from /usr/src/php/ext/openssl/openssl.c:47:0:
/usr/include/openssl/rsa.h:402:6: note: previous declaration of 'RSA_get0_crt_params' was here
 void RSA_get0_crt_params(const RSA *r, const BIGNUM **dmp1, const BIGNUM **dmq1,
      ^~~~~~~~~~~~~~~~~~~
/usr/src/php/ext/openssl/openssl.c:597:13: error: static declaration of 'DH_get0_pqg' follows non-static declaration
 static void DH_get0_pqg(const DH *dh, const BIGNUM **p, const BIGNUM **q, const BIGNUM **g)
             ^~~~~~~~~~~
In file included from /usr/include/openssl/dsa.h:83:0,
                 from /usr/src/php/ext/openssl/openssl.c:48:
/usr/include/openssl/dh.h:193:6: note: previous declaration of 'DH_get0_pqg' was here
 void DH_get0_pqg(const DH *dh, const BIGNUM **p, const BIGNUM **q,
      ^~~~~~~~~~~
/usr/src/php/ext/openssl/openssl.c:604:12: error: static declaration of 'DH_set0_pqg' follows non-static declaration
 static int DH_set0_pqg(DH *dh, BIGNUM *p, BIGNUM *q, BIGNUM *g)
            ^~~~~~~~~~~
In file included from /usr/include/openssl/dsa.h:83:0,
                 from /usr/src/php/ext/openssl/openssl.c:48:
/usr/include/openssl/dh.h:195:5: note: previous declaration of 'DH_set0_pqg' was here
 int DH_set0_pqg(DH *dh, BIGNUM *p, BIGNUM *q, BIGNUM *g);
     ^~~~~~~~~~~
/usr/src/php/ext/openssl/openssl.c:613:13: error: static declaration of 'DH_get0_key' follows non-static declaration
 static void DH_get0_key(const DH *dh, const BIGNUM **pub_key, const BIGNUM **priv_key)
             ^~~~~~~~~~~
In file included from /usr/include/openssl/dsa.h:83:0,
                 from /usr/src/php/ext/openssl/openssl.c:48:
/usr/include/openssl/dh.h:196:6: note: previous declaration of 'DH_get0_key' was here
 void DH_get0_key(const DH *dh, const BIGNUM **pub_key, const BIGNUM **priv_key);
      ^~~~~~~~~~~
/usr/src/php/ext/openssl/openssl.c:619:12: error: static declaration of 'DH_set0_key' follows non-static declaration
 static int DH_set0_key(DH *dh, BIGNUM *pub_key, BIGNUM *priv_key)
            ^~~~~~~~~~~
In file included from /usr/include/openssl/dsa.h:83:0,
                 from /usr/src/php/ext/openssl/openssl.c:48:
/usr/include/openssl/dh.h:197:5: note: previous declaration of 'DH_set0_key' was here
 int DH_set0_key(DH *dh, BIGNUM *pub_key, BIGNUM *priv_key);
     ^~~~~~~~~~~
/usr/src/php/ext/openssl/openssl.c:627:13: error: static declaration of 'DSA_get0_pqg' follows non-static declaration
 static void DSA_get0_pqg(const DSA *d, const BIGNUM **p, const BIGNUM **q, const BIGNUM **g)
             ^~~~~~~~~~~~
In file included from /usr/src/php/ext/openssl/openssl.c:48:0:
/usr/include/openssl/dsa.h:262:6: note: previous declaration of 'DSA_get0_pqg' was here
 void DSA_get0_pqg(const DSA *d, const BIGNUM **p, const BIGNUM **q,
      ^~~~~~~~~~~~
/usr/src/php/ext/openssl/openssl.c:643:13: error: static declaration of 'DSA_get0_key' follows non-static declaration
 static void DSA_get0_key(const DSA *d, const BIGNUM **pub_key, const BIGNUM **priv_key)
             ^~~~~~~~~~~~
In file included from /usr/src/php/ext/openssl/openssl.c:48:0:
/usr/include/openssl/dsa.h:265:6: note: previous declaration of 'DSA_get0_key' was here
 void DSA_get0_key(const DSA *d, const BIGNUM **pub_key, const BIGNUM **priv_key);
      ^~~~~~~~~~~~
/usr/src/php/ext/openssl/openssl.c:657:29: error: static declaration of 'ASN1_STRING_get0_data' follows non-static declaration
 static const unsigned char *ASN1_STRING_get0_data(const ASN1_STRING *asn1)
                             ^~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/openssl/objects.h:960:0,
                 from /usr/include/openssl/evp.h:86,
                 from /usr/src/php/ext/openssl/openssl.c:45:
/usr/include/openssl/asn1.h:788:22: note: previous declaration of 'ASN1_STRING_get0_data' was here
 const unsigned char *ASN1_STRING_get0_data(const ASN1_STRING *x);
                      ^~~~~~~~~~~~~~~~~~~~~
/usr/src/php/ext/openssl/openssl.c:664:12: error: static declaration of 'X509_get_signature_nid' follows non-static declaration
 static int X509_get_signature_nid(const X509 *x)
            ^~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/src/php/ext/openssl/openssl.c:50:0:
/usr/include/openssl/x509.h:921:5: note: previous declaration of 'X509_get_signature_nid' was here
 int X509_get_signature_nid(const X509 *x);
     ^~~~~~~~~~~~~~~~~~~~~~
make: *** [Makefile:630: ext/openssl/openssl.lo] Error 1

@tianon tianon merged commit e62be1c into docker-library:master Aug 17, 2018
@tianon tianon deleted the alpine3.8 branch August 17, 2018 16:44
tianon added a commit to infosiftr/stackbrew that referenced this pull request Aug 21, 2018
- `drupal`: 8.6.0-rc1
- `ghost`: ghost-cli 1.9.1
- `memcached`: Alpine 3.8 (docker-library/memcached#40)
- `mongo`: 3.6.7, `dbPath` fixes (docker-library/mongo#294)
- `openjdk`: 11-ea+27 (Debian)
- `percona`: 5.5.61, 5.6.41
- `php`: 7.1.21, Alpine 3.8 (docker-library/php#702, docker-library/php#688), 7.3.0beta2 (docker-library/php#677), 7.2.9
- `postgres`: fix `HOME` (docker-library/postgres#481)
- `python`: `apk add --no-cache` to combat new `apk` behavior (docker-library/python#330)
- `ruby`: bundler 1.16.4
- `tomcat`: 8.5.33, 9.0.11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants