mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCHv2 1/4] apache2: This patch enable compilation against openssl-1.0.1k
@ 2015-02-11  7:58 Oliver Graute
  2015-02-11  7:58 ` [ptxdist] [PATCHv2 2/4] apache2: added 0005-fix-to-enable-compilation-against-OpenSSL-1.0.1 to series file Oliver Graute
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Oliver Graute @ 2015-02-11  7:58 UTC (permalink / raw)
  To: ptxdist; +Cc: Oliver Graute

This patch enable compilation against openssl-1.0.1k
This patch add the module mod_ssl.so 

Signed-off-by: Oliver Graute <oliver.graute@neuhaus.de>
---
 ...-enable-compilation-against-OpenSSL-1.0.1.patch |   42 ++++++++++++++++++++
 1 file changed, 42 insertions(+)
 create mode 100644 patches/httpd-2.0.64/0005-fix-to-enable-compilation-against-OpenSSL-1.0.1.patch

diff --git a/patches/httpd-2.0.64/0005-fix-to-enable-compilation-against-OpenSSL-1.0.1.patch b/patches/httpd-2.0.64/0005-fix-to-enable-compilation-against-OpenSSL-1.0.1.patch
new file mode 100644
index 0000000..3841f64
--- /dev/null
+++ b/patches/httpd-2.0.64/0005-fix-to-enable-compilation-against-OpenSSL-1.0.1.patch
@@ -0,0 +1,42 @@
+diff -rupN AI/modules/ssl/ssl_engine_init.c AJ/modules/ssl/ssl_engine_init.c
+--- AI/modules/ssl/ssl_engine_init.c	2010-09-28 17:59:13.000000000 +0200
++++ AJ/modules/ssl/ssl_engine_init.c	2015-02-09 09:46:29.026472658 +0100
+@@ -535,7 +535,7 @@ static void ssl_init_ctx_verify(server_r
+             ssl_die();
+         }
+ 
+-        SSL_CTX_set_client_CA_list(ctx, (STACK *)ca_list);
++        SSL_CTX_set_client_CA_list(ctx, (STACK_OF(X509_NAME) *)ca_list);
+     }
+ 
+     /*
+diff -rupN AI/modules/ssl/ssl_util_ssl.c AJ/modules/ssl/ssl_util_ssl.c
+--- AI/modules/ssl/ssl_util_ssl.c	2015-02-09 10:07:36.419935328 +0100
++++ AJ/modules/ssl/ssl_util_ssl.c	2015-02-09 10:10:04.183924609 +0100
+@@ -291,7 +291,7 @@ BOOL SSL_X509_isSGC(X509 *cert)
+ #ifdef HAVE_SSL_X509V3_EXT_d2i
+     X509_EXTENSION *ext;
+     int ext_nid;
+-    STACK *sk;
++    STACK_OF(SSL_CIPHER) *sk;
+     BOOL is_sgc;
+     int idx;
+     int i;
+@@ -300,7 +300,7 @@ BOOL SSL_X509_isSGC(X509 *cert)
+     idx = X509_get_ext_by_NID(cert, NID_ext_key_usage, -1);
+     if (idx >= 0) {
+         ext = X509_get_ext(cert, idx);
+-        if ((sk = (STACK *)X509V3_EXT_d2i(ext)) != NULL) {
++        if ((sk = X509V3_EXT_d2i(ext)) != NULL) {
+             for (i = 0; i < sk_num(sk); i++) {
+                 ext_nid = OBJ_obj2nid((ASN1_OBJECT *)sk_value(sk, i));
+                 if (ext_nid == NID_ms_sgc || ext_nid == NID_ns_sgc) {
+@@ -466,7 +466,7 @@ int SSL_CTX_use_certificate_chain(
+     X509 *x509;
+     unsigned long err;
+     int n;
+-    STACK *extra_certs;
++    STACK_OF(X509) *extra_certs;
+ 
+     if ((bio = BIO_new(BIO_s_file_internal())) == NULL)
+         return -1;
-- 
1.7.9.5


-- 
ptxdist mailing list
ptxdist@pengutronix.de

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [ptxdist] [PATCHv2 2/4] apache2: added 0005-fix-to-enable-compilation-against-OpenSSL-1.0.1 to series file
  2015-02-11  7:58 [ptxdist] [PATCHv2 1/4] apache2: This patch enable compilation against openssl-1.0.1k Oliver Graute
@ 2015-02-11  7:58 ` Oliver Graute
  2015-02-11  7:58 ` [ptxdist] [PATCHv2 3/4] apache2: add compile option --with-ssl --enable-ssl=shared Oliver Graute
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Oliver Graute @ 2015-02-11  7:58 UTC (permalink / raw)
  To: ptxdist; +Cc: Oliver Graute


Signed-off-by: Oliver Graute <oliver.graute@neuhaus.de>
---
 patches/httpd-2.0.64/series |    1 +
 1 file changed, 1 insertion(+)

diff --git a/patches/httpd-2.0.64/series b/patches/httpd-2.0.64/series
index ff12a99..3def16d 100644
--- a/patches/httpd-2.0.64/series
+++ b/patches/httpd-2.0.64/series
@@ -4,4 +4,5 @@
 0002-HACK-srclib-pcre-Makefile-fallback-to-dftables-from-.patch
 0003-HACK-support-apxs-don-t-execute-httpd.patch
 0004-HACK-support-apxs-don-t-try-to-modify-the-config-fil.patch
+0005-fix-to-enable-compilation-against-OpenSSL-1.0.1.patch
 # 160b9c105b4f55538cd0ce5c82eda8fd  - git-ptx-patches magic
-- 
1.7.9.5


-- 
ptxdist mailing list
ptxdist@pengutronix.de

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [ptxdist] [PATCHv2 3/4] apache2: add compile option --with-ssl --enable-ssl=shared
  2015-02-11  7:58 [ptxdist] [PATCHv2 1/4] apache2: This patch enable compilation against openssl-1.0.1k Oliver Graute
  2015-02-11  7:58 ` [ptxdist] [PATCHv2 2/4] apache2: added 0005-fix-to-enable-compilation-against-OpenSSL-1.0.1 to series file Oliver Graute
@ 2015-02-11  7:58 ` Oliver Graute
  2015-02-11  7:58 ` [ptxdist] [PATCHv2 4/4] apache2: copy mod_ssl.so to modules dir Oliver Graute
  2015-02-11 13:54 ` [ptxdist] [PATCHv2 1/4] apache2: This patch enable compilation against openssl-1.0.1k Juergen Borleis
  3 siblings, 0 replies; 5+ messages in thread
From: Oliver Graute @ 2015-02-11  7:58 UTC (permalink / raw)
  To: ptxdist; +Cc: Oliver Graute


Signed-off-by: Oliver Graute <oliver.graute@neuhaus.de>
---
 rules/apache2.make |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/rules/apache2.make b/rules/apache2.make
index 98b628e..6700c23 100644
--- a/rules/apache2.make
+++ b/rules/apache2.make
@@ -39,7 +39,9 @@ APACHE2_CONF_OPT := \
 	--includedir=/usr/include/apache2 \
 	--enable-so \
 	--with-apr=$(PTXDIST_SYSROOT_CROSS)/bin/apr-config \
-	--with-apr-util=$(PTXDIST_SYSROOT_CROSS)/bin/apu-config
+	--with-apr-util=$(PTXDIST_SYSROOT_CROSS)/bin/apu-config \
+	--with-ssl=$(PTXDIST_SYSROOT_TARGET)/usr/lib/ssl \
+	--enable-ssl=shared
 
 ifdef PTXCONF_APACHE2_MPM_PREFORK
 APACHE2_CONF_OPT += --with-mpm=prefork
-- 
1.7.9.5


-- 
ptxdist mailing list
ptxdist@pengutronix.de

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [ptxdist] [PATCHv2 4/4] apache2:  copy mod_ssl.so to modules dir
  2015-02-11  7:58 [ptxdist] [PATCHv2 1/4] apache2: This patch enable compilation against openssl-1.0.1k Oliver Graute
  2015-02-11  7:58 ` [ptxdist] [PATCHv2 2/4] apache2: added 0005-fix-to-enable-compilation-against-OpenSSL-1.0.1 to series file Oliver Graute
  2015-02-11  7:58 ` [ptxdist] [PATCHv2 3/4] apache2: add compile option --with-ssl --enable-ssl=shared Oliver Graute
@ 2015-02-11  7:58 ` Oliver Graute
  2015-02-11 13:54 ` [ptxdist] [PATCHv2 1/4] apache2: This patch enable compilation against openssl-1.0.1k Juergen Borleis
  3 siblings, 0 replies; 5+ messages in thread
From: Oliver Graute @ 2015-02-11  7:58 UTC (permalink / raw)
  To: ptxdist; +Cc: Oliver Graute


Signed-off-by: Oliver Graute <oliver.graute@neuhaus.de>
---
 rules/apache2.make |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/rules/apache2.make b/rules/apache2.make
index 6700c23..76c86a2 100644
--- a/rules/apache2.make
+++ b/rules/apache2.make
@@ -131,6 +131,8 @@ endif
 		$(PTXCONF_APACHE2_SERVERROOT)/conf/magic)
 	@$(call install_copy, apache2, www, www, 0644, $(APACHE2_PKGDIR)/etc/mime.types, \
 		$(PTXCONF_APACHE2_SERVERROOT)/conf/mime.types)
+	@$(call install_copy, apache2, www, www, 0644, $(APACHE2_PKGDIR)/usr/modules/mod_ssl.so, \
+		$(PTXCONF_APACHE2_SERVERROOT)/modules/mod_ssl.so)
 
 endif
 
-- 
1.7.9.5


-- 
ptxdist mailing list
ptxdist@pengutronix.de

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [ptxdist] [PATCHv2 1/4] apache2: This patch enable compilation against openssl-1.0.1k
  2015-02-11  7:58 [ptxdist] [PATCHv2 1/4] apache2: This patch enable compilation against openssl-1.0.1k Oliver Graute
                   ` (2 preceding siblings ...)
  2015-02-11  7:58 ` [ptxdist] [PATCHv2 4/4] apache2: copy mod_ssl.so to modules dir Oliver Graute
@ 2015-02-11 13:54 ` Juergen Borleis
  3 siblings, 0 replies; 5+ messages in thread
From: Juergen Borleis @ 2015-02-11 13:54 UTC (permalink / raw)
  To: ptxdist; +Cc: Oliver Graute

Hi Oliver,

instead of fixing such an old version of Apache you should update it to a 
recent release. Maybe the build failure you see is already fixed.

Regards,
Juergen
-- 
Pengutronix e.K.                              | Juergen Borleis             |
Industrial Linux Solutions                    | http://www.pengutronix.de/  |

-- 
ptxdist mailing list
ptxdist@pengutronix.de

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2015-02-11 13:54 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-02-11  7:58 [ptxdist] [PATCHv2 1/4] apache2: This patch enable compilation against openssl-1.0.1k Oliver Graute
2015-02-11  7:58 ` [ptxdist] [PATCHv2 2/4] apache2: added 0005-fix-to-enable-compilation-against-OpenSSL-1.0.1 to series file Oliver Graute
2015-02-11  7:58 ` [ptxdist] [PATCHv2 3/4] apache2: add compile option --with-ssl --enable-ssl=shared Oliver Graute
2015-02-11  7:58 ` [ptxdist] [PATCHv2 4/4] apache2: copy mod_ssl.so to modules dir Oliver Graute
2015-02-11 13:54 ` [ptxdist] [PATCHv2 1/4] apache2: This patch enable compilation against openssl-1.0.1k Juergen Borleis

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox