All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-oe][PATCH 1/2] openldap: enable native build
@ 2016-01-29 13:08 Ioan-Adrian Ratiu
  2016-01-29 13:08 ` [meta-oe][PATCH 2/2] apache2: enable openldap support Ioan-Adrian Ratiu
  0 siblings, 1 reply; 4+ messages in thread
From: Ioan-Adrian Ratiu @ 2016-01-29 13:08 UTC (permalink / raw)
  To: openembedded-devel

This is required by the apr-util & apache2 recipes to enable
ldap support without breaking the build (nothing provides -native)

Signed-off-by: Ioan-Adrian Ratiu <adrian.ratiu@ni.com>
---
 meta-oe/recipes-support/openldap/openldap_2.4.43.bb | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta-oe/recipes-support/openldap/openldap_2.4.43.bb b/meta-oe/recipes-support/openldap/openldap_2.4.43.bb
index c4a52b1..148d5a8 100644
--- a/meta-oe/recipes-support/openldap/openldap_2.4.43.bb
+++ b/meta-oe/recipes-support/openldap/openldap_2.4.43.bb
@@ -222,3 +222,5 @@ python populate_packages_prepend () {
     packages.append(metapkg)
     d.setVar('PACKAGES', ' '.join(packages))
 }
+
+BBCLASSEXTEND = "native"
-- 
2.7.0



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

* [meta-oe][PATCH 2/2] apache2: enable openldap support
  2016-01-29 13:08 [meta-oe][PATCH 1/2] openldap: enable native build Ioan-Adrian Ratiu
@ 2016-01-29 13:08 ` Ioan-Adrian Ratiu
  2016-01-29 13:35   ` Khem Raj
  2016-01-29 13:49   ` Martin Jansa
  0 siblings, 2 replies; 4+ messages in thread
From: Ioan-Adrian Ratiu @ 2016-01-29 13:08 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Ioan-Adrian Ratiu <adrian.ratiu@ni.com>
---
 meta-webserver/recipes-httpd/apache2/apache2_2.4.18.bb | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/meta-webserver/recipes-httpd/apache2/apache2_2.4.18.bb b/meta-webserver/recipes-httpd/apache2/apache2_2.4.18.bb
index 8ca6d00..d20ac09 100644
--- a/meta-webserver/recipes-httpd/apache2/apache2_2.4.18.bb
+++ b/meta-webserver/recipes-httpd/apache2/apache2_2.4.18.bb
@@ -2,7 +2,7 @@ DESCRIPTION = "The Apache HTTP Server is a powerful, efficient, and \
 extensible web server."
 SUMMARY = "Apache HTTP Server"
 HOMEPAGE = "http://httpd.apache.org/"
-DEPENDS = "libtool-native apache2-native openssl expat pcre apr apr-util"
+DEPENDS = "libtool-native apache2-native openssl expat pcre apr apr-util openldap"
 SECTION = "net"
 LICENSE = "Apache-2.0"
 
@@ -44,6 +44,8 @@ EXTRA_OECONF = "--enable-ssl \
     --with-apr-util=${STAGING_BINDIR_CROSS}/apu-1-config \
     --enable-info \
     --enable-rewrite \
+    --enable-ldap \
+    --enable-authnz-ldap \
     --with-dbm=sdbm \
     --with-berkeley-db=no \
     --localstatedir=/var/${BPN} \
-- 
2.7.0



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

* Re: [meta-oe][PATCH 2/2] apache2: enable openldap support
  2016-01-29 13:08 ` [meta-oe][PATCH 2/2] apache2: enable openldap support Ioan-Adrian Ratiu
@ 2016-01-29 13:35   ` Khem Raj
  2016-01-29 13:49   ` Martin Jansa
  1 sibling, 0 replies; 4+ messages in thread
From: Khem Raj @ 2016-01-29 13:35 UTC (permalink / raw)
  To: openembeded-devel

On Fri, Jan 29, 2016 at 5:08 AM, Ioan-Adrian Ratiu <adrian.ratiu@ni.com> wrote:
> Signed-off-by: Ioan-Adrian Ratiu <adrian.ratiu@ni.com>
> ---
>  meta-webserver/recipes-httpd/apache2/apache2_2.4.18.bb | 4 +++-
>  1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/meta-webserver/recipes-httpd/apache2/apache2_2.4.18.bb b/meta-webserver/recipes-httpd/apache2/apache2_2.4.18.bb
> index 8ca6d00..d20ac09 100644
> --- a/meta-webserver/recipes-httpd/apache2/apache2_2.4.18.bb
> +++ b/meta-webserver/recipes-httpd/apache2/apache2_2.4.18.bb
> @@ -2,7 +2,7 @@ DESCRIPTION = "The Apache HTTP Server is a powerful, efficient, and \
>  extensible web server."
>  SUMMARY = "Apache HTTP Server"
>  HOMEPAGE = "http://httpd.apache.org/"
> -DEPENDS = "libtool-native apache2-native openssl expat pcre apr apr-util"
> +DEPENDS = "libtool-native apache2-native openssl expat pcre apr apr-util openldap"
>  SECTION = "net"
>  LICENSE = "Apache-2.0"
>
> @@ -44,6 +44,8 @@ EXTRA_OECONF = "--enable-ssl \
>      --with-apr-util=${STAGING_BINDIR_CROSS}/apu-1-config \
>      --enable-info \
>      --enable-rewrite \
> +    --enable-ldap \
> +    --enable-authnz-ldap \

It is a good candidate for PACKAGECONFIG.


>      --with-dbm=sdbm \
>      --with-berkeley-db=no \
>      --localstatedir=/var/${BPN} \
> --
> 2.7.0
>
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel


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

* Re: [meta-oe][PATCH 2/2] apache2: enable openldap support
  2016-01-29 13:08 ` [meta-oe][PATCH 2/2] apache2: enable openldap support Ioan-Adrian Ratiu
  2016-01-29 13:35   ` Khem Raj
@ 2016-01-29 13:49   ` Martin Jansa
  1 sibling, 0 replies; 4+ messages in thread
From: Martin Jansa @ 2016-01-29 13:49 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 1658 bytes --]

On Fri, Jan 29, 2016 at 03:08:34PM +0200, Ioan-Adrian Ratiu wrote:
> Signed-off-by: Ioan-Adrian Ratiu <adrian.ratiu@ni.com>
> ---
>  meta-webserver/recipes-httpd/apache2/apache2_2.4.18.bb | 4 +++-
>  1 file changed, 3 insertions(+), 1 deletion(-)
> 
> diff --git a/meta-webserver/recipes-httpd/apache2/apache2_2.4.18.bb b/meta-webserver/recipes-httpd/apache2/apache2_2.4.18.bb
> index 8ca6d00..d20ac09 100644
> --- a/meta-webserver/recipes-httpd/apache2/apache2_2.4.18.bb
> +++ b/meta-webserver/recipes-httpd/apache2/apache2_2.4.18.bb
> @@ -2,7 +2,7 @@ DESCRIPTION = "The Apache HTTP Server is a powerful, efficient, and \
>  extensible web server."
>  SUMMARY = "Apache HTTP Server"
>  HOMEPAGE = "http://httpd.apache.org/"
> -DEPENDS = "libtool-native apache2-native openssl expat pcre apr apr-util"
> +DEPENDS = "libtool-native apache2-native openssl expat pcre apr apr-util openldap"
>  SECTION = "net"
>  LICENSE = "Apache-2.0"
>  
> @@ -44,6 +44,8 @@ EXTRA_OECONF = "--enable-ssl \
>      --with-apr-util=${STAGING_BINDIR_CROSS}/apu-1-config \
>      --enable-info \
>      --enable-rewrite \
> +    --enable-ldap \
> +    --enable-authnz-ldap \

Can we use PACKAGECONFIG for this, not everybody with apache will want
openldap support.

>      --with-dbm=sdbm \
>      --with-berkeley-db=no \
>      --localstatedir=/var/${BPN} \
> -- 
> 2.7.0
> 
> -- 
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel

-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 188 bytes --]

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

end of thread, other threads:[~2016-01-29 13:47 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-01-29 13:08 [meta-oe][PATCH 1/2] openldap: enable native build Ioan-Adrian Ratiu
2016-01-29 13:08 ` [meta-oe][PATCH 2/2] apache2: enable openldap support Ioan-Adrian Ratiu
2016-01-29 13:35   ` Khem Raj
2016-01-29 13:49   ` Martin Jansa

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.