All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-networking][PATCH v2] adcli: added new recipe.
@ 2019-06-27  5:57 Lei Maohui
  2019-07-10 16:23 ` Khem Raj
  0 siblings, 1 reply; 3+ messages in thread
From: Lei Maohui @ 2019-06-27  5:57 UTC (permalink / raw)
  To: openembedded-devel

radiusclient-ng is too old. So, added a substitute.

Signed-off-by: Lei Maohui <leimaohui@cn.fujitsu.com>
---
 .../recipes-connectivity/adcli/adcli_0.8.2.bb      | 26 ++++++++++++++++++++++
 1 file changed, 26 insertions(+)
 create mode 100644 meta-networking/recipes-connectivity/adcli/adcli_0.8.2.bb

diff --git a/meta-networking/recipes-connectivity/adcli/adcli_0.8.2.bb b/meta-networking/recipes-connectivity/adcli/adcli_0.8.2.bb
new file mode 100644
index 0000000..a98a1b3
--- /dev/null
+++ b/meta-networking/recipes-connectivity/adcli/adcli_0.8.2.bb
@@ -0,0 +1,26 @@
+SUMMARY = "Active Directory enrollment"
+DESCRIPTION = "A helper library and tools for Active Directory client operations."
+
+HOMEPAGE = "http://cgit.freedesktop.org/realmd/adcli"
+SECTION = "net"
+
+SRCREV = "cc3ef52884a48863a81acbfc741735fe09cd85f7"
+
+SRC_URI = "git://gitlab.freedesktop.org/realmd/adcli;branch=master \
+          "
+
+S = "${WORKDIR}/git"
+
+LICENSE = "LGPLv2+"
+LIC_FILES_CHKSUM = "file://COPYING;md5=23c2a5e0106b99d75238986559bb5fc6"
+
+inherit autotools xmlcatalog 
+
+DEPENDS += "virtual/crypt krb5 openldap gettext libxslt xmlto libxml2-native \
+            cyrus-sasl libxslt-native xmlto-native coreutils-native\
+           "
+
+EXTRA_OECONF += "--disable-static \
+                 --disable-silent-rules \
+                 --disable-doc \
+                "
-- 
2.7.4





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

* Re: [meta-networking][PATCH v2] adcli: added new recipe.
  2019-06-27  5:57 [meta-networking][PATCH v2] adcli: added new recipe Lei Maohui
@ 2019-07-10 16:23 ` Khem Raj
  2019-07-11  8:20   ` Lei, Maohui
  0 siblings, 1 reply; 3+ messages in thread
From: Khem Raj @ 2019-07-10 16:23 UTC (permalink / raw)
  To: Lei Maohui; +Cc: openembeded-devel

On Wed, Jun 26, 2019 at 10:57 PM Lei Maohui <leimaohui@cn.fujitsu.com> wrote:
>
> radiusclient-ng is too old. So, added a substitute.
>

This fails to build on musl
https://errors.yoctoproject.org/Errors/Details/251280/

Can you try a patch like this and see if it works for you?
it will also fix the build on musl

--- a/library/adutil.c
+++ b/library/adutil.c
@@ -30,6 +30,7 @@
 #include <assert.h>
 #include <ctype.h>
 #include <errno.h>
+#include <endian.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>


> Signed-off-by: Lei Maohui <leimaohui@cn.fujitsu.com>
> ---
>  .../recipes-connectivity/adcli/adcli_0.8.2.bb      | 26 ++++++++++++++++++++++
>  1 file changed, 26 insertions(+)
>  create mode 100644 meta-networking/recipes-connectivity/adcli/adcli_0.8.2.bb
>
> diff --git a/meta-networking/recipes-connectivity/adcli/adcli_0.8.2.bb b/meta-networking/recipes-connectivity/adcli/adcli_0.8.2.bb
> new file mode 100644
> index 0000000..a98a1b3
> --- /dev/null
> +++ b/meta-networking/recipes-connectivity/adcli/adcli_0.8.2.bb
> @@ -0,0 +1,26 @@
> +SUMMARY = "Active Directory enrollment"
> +DESCRIPTION = "A helper library and tools for Active Directory client operations."
> +
> +HOMEPAGE = "http://cgit.freedesktop.org/realmd/adcli"
> +SECTION = "net"
> +
> +SRCREV = "cc3ef52884a48863a81acbfc741735fe09cd85f7"
> +
> +SRC_URI = "git://gitlab.freedesktop.org/realmd/adcli;branch=master \
> +          "
> +
> +S = "${WORKDIR}/git"
> +
> +LICENSE = "LGPLv2+"
> +LIC_FILES_CHKSUM = "file://COPYING;md5=23c2a5e0106b99d75238986559bb5fc6"
> +
> +inherit autotools xmlcatalog
> +
> +DEPENDS += "virtual/crypt krb5 openldap gettext libxslt xmlto libxml2-native \
> +            cyrus-sasl libxslt-native xmlto-native coreutils-native\
> +           "
> +
> +EXTRA_OECONF += "--disable-static \
> +                 --disable-silent-rules \
> +                 --disable-doc \
> +                "
> --
> 2.7.4
>
>
>
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel


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

* Re: [meta-networking][PATCH v2] adcli: added new recipe.
  2019-07-10 16:23 ` Khem Raj
@ 2019-07-11  8:20   ` Lei, Maohui
  0 siblings, 0 replies; 3+ messages in thread
From: Lei, Maohui @ 2019-07-11  8:20 UTC (permalink / raw)
  To: Khem Raj; +Cc: openembeded-devel

Hi,

  Thank you, I will update my patch.

Best regards.
Lei

> -----Original Message-----
> From: Khem Raj [mailto:raj.khem@gmail.com]
> Sent: Thursday, July 11, 2019 12:23 AM
> To: Lei, Maohui
> Cc: openembeded-devel
> Subject: Re: [oe] [meta-networking][PATCH v2] adcli: added new recipe.
> 
> On Wed, Jun 26, 2019 at 10:57 PM Lei Maohui <leimaohui@cn.fujitsu.com> wrote:
> >
> > radiusclient-ng is too old. So, added a substitute.
> >
> 
> This fails to build on musl
> https://errors.yoctoproject.org/Errors/Details/251280/
> 
> Can you try a patch like this and see if it works for you?
> it will also fix the build on musl
> 
> --- a/library/adutil.c
> +++ b/library/adutil.c
> @@ -30,6 +30,7 @@
>  #include <assert.h>
>  #include <ctype.h>
>  #include <errno.h>
> +#include <endian.h>
>  #include <stdio.h>
>  #include <stdlib.h>
>  #include <string.h>
> 
> 
> > Signed-off-by: Lei Maohui <leimaohui@cn.fujitsu.com>
> > ---
> >  .../recipes-connectivity/adcli/adcli_0.8.2.bb      | 26
> ++++++++++++++++++++++
> >  1 file changed, 26 insertions(+)
> >  create mode 100644 meta-networking/recipes-connectivity/adcli/adcli_0.8.2.bb
> >
> > diff --git a/meta-networking/recipes-connectivity/adcli/adcli_0.8.2.bb
> b/meta-networking/recipes-connectivity/adcli/adcli_0.8.2.bb
> > new file mode 100644
> > index 0000000..a98a1b3
> > --- /dev/null
> > +++ b/meta-networking/recipes-connectivity/adcli/adcli_0.8.2.bb
> > @@ -0,0 +1,26 @@
> > +SUMMARY = "Active Directory enrollment"
> > +DESCRIPTION = "A helper library and tools for Active Directory client
> operations."
> > +
> > +HOMEPAGE = "http://cgit.freedesktop.org/realmd/adcli"
> > +SECTION = "net"
> > +
> > +SRCREV = "cc3ef52884a48863a81acbfc741735fe09cd85f7"
> > +
> > +SRC_URI = "git://gitlab.freedesktop.org/realmd/adcli;branch=master \
> > +          "
> > +
> > +S = "${WORKDIR}/git"
> > +
> > +LICENSE = "LGPLv2+"
> > +LIC_FILES_CHKSUM = "file://COPYING;md5=23c2a5e0106b99d75238986559bb5fc6"
> > +
> > +inherit autotools xmlcatalog
> > +
> > +DEPENDS += "virtual/crypt krb5 openldap gettext libxslt xmlto libxml2-native
> \
> > +            cyrus-sasl libxslt-native xmlto-native coreutils-native\
> > +           "
> > +
> > +EXTRA_OECONF += "--disable-static \
> > +                 --disable-silent-rules \
> > +                 --disable-doc \
> > +                "
> > --
> > 2.7.4
> >
> >
> >
> > --
> > _______________________________________________
> > Openembedded-devel mailing list
> > Openembedded-devel@lists.openembedded.org
> > http://lists.openembedded.org/mailman/listinfo/openembedded-devel
> 




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

end of thread, other threads:[~2019-07-11  8:21 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-06-27  5:57 [meta-networking][PATCH v2] adcli: added new recipe Lei Maohui
2019-07-10 16:23 ` Khem Raj
2019-07-11  8:20   ` Lei, Maohui

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.