Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] package/smack: bump version to 1.1.0
@ 2016-01-31 16:26 Bernd Kuhls
  2016-01-31 16:26 ` [Buildroot] [PATCH 2/2] package/smack: fix musl build Bernd Kuhls
  2016-01-31 20:06 ` [Buildroot] [PATCH 1/2] package/smack: bump version to 1.1.0 Thomas Petazzoni
  0 siblings, 2 replies; 4+ messages in thread
From: Bernd Kuhls @ 2016-01-31 16:26 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/smack/smack.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/smack/smack.mk b/package/smack/smack.mk
index 7e0a362..3ef4d47 100644
--- a/package/smack/smack.mk
+++ b/package/smack/smack.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-SMACK_VERSION = v1.0.4
+SMACK_VERSION = v1.1.0
 SMACK_SITE = $(call github,smack-team,smack,$(SMACK_VERSION))
 SMACK_LICENSE = LGPLv2.1
 SMACK_LICENSE_FILES = COPYING
-- 
2.7.0

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

* [Buildroot] [PATCH 2/2] package/smack: fix musl build
  2016-01-31 16:26 [Buildroot] [PATCH 1/2] package/smack: bump version to 1.1.0 Bernd Kuhls
@ 2016-01-31 16:26 ` Bernd Kuhls
  2016-02-02 13:24   ` Arnout Vandecappelle
  2016-01-31 20:06 ` [Buildroot] [PATCH 1/2] package/smack: bump version to 1.1.0 Thomas Petazzoni
  1 sibling, 1 reply; 4+ messages in thread
From: Bernd Kuhls @ 2016-01-31 16:26 UTC (permalink / raw)
  To: buildroot

The build error was not yet found by the autobuilders:

common.c: In function ?clear?:
common.c:36:12: error: ?PATH_MAX? undeclared (first use in this function)
  char path[PATH_MAX];
            ^

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 ...ck-common.c-Include-limits.h-for-PATH_MAX.patch | 29 ++++++++++++++++++++++
 1 file changed, 29 insertions(+)
 create mode 100644 package/smack/0001-libsmack-common.c-Include-limits.h-for-PATH_MAX.patch

diff --git a/package/smack/0001-libsmack-common.c-Include-limits.h-for-PATH_MAX.patch b/package/smack/0001-libsmack-common.c-Include-limits.h-for-PATH_MAX.patch
new file mode 100644
index 0000000..0e30ef5
--- /dev/null
+++ b/package/smack/0001-libsmack-common.c-Include-limits.h-for-PATH_MAX.patch
@@ -0,0 +1,29 @@
+From 316c911aa741b14513622a4206ed6d324e951fa0 Mon Sep 17 00:00:00 2001
+From: Felix Janda <felix.janda@posteo.de>
+Date: Wed, 20 May 2015 21:25:22 +0200
+Subject: [PATCH 1/1] libsmack/common.c: Include <limits.h> for PATH_MAX
+
+Signed-off-by: Felix Janda <felix.janda@posteo.de>
+Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
+---
+Downloaded from upstream commit
+https://github.com/smack-team/smack/commit/316c911aa741b14513622a4206ed6d324e951fa0
+
+ libsmack/common.c | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/libsmack/common.c b/libsmack/common.c
+index 55fee1a..55b59e3 100644
+--- a/libsmack/common.c
++++ b/libsmack/common.c
+@@ -22,6 +22,7 @@
+ #include <dirent.h>
+ #include <errno.h>
+ #include <fcntl.h>
++#include <limits.h>
+ #include <stdio.h>
+ #include <string.h>
+ #include <unistd.h>
+-- 
+2.7.0
+
-- 
2.7.0

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

* [Buildroot] [PATCH 1/2] package/smack: bump version to 1.1.0
  2016-01-31 16:26 [Buildroot] [PATCH 1/2] package/smack: bump version to 1.1.0 Bernd Kuhls
  2016-01-31 16:26 ` [Buildroot] [PATCH 2/2] package/smack: fix musl build Bernd Kuhls
@ 2016-01-31 20:06 ` Thomas Petazzoni
  1 sibling, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2016-01-31 20:06 UTC (permalink / raw)
  To: buildroot

Dear Bernd Kuhls,

On Sun, 31 Jan 2016 17:26:20 +0100, Bernd Kuhls wrote:
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
> ---
>  package/smack/smack.mk | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Both applied, thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

* [Buildroot] [PATCH 2/2] package/smack: fix musl build
  2016-01-31 16:26 ` [Buildroot] [PATCH 2/2] package/smack: fix musl build Bernd Kuhls
@ 2016-02-02 13:24   ` Arnout Vandecappelle
  0 siblings, 0 replies; 4+ messages in thread
From: Arnout Vandecappelle @ 2016-02-02 13:24 UTC (permalink / raw)
  To: buildroot

On 31-01-16 17:26, Bernd Kuhls wrote:
> The build error was not yet found by the autobuilders:
> 
> common.c: In function ?clear?:
> common.c:36:12: error: ?PATH_MAX? undeclared (first use in this function)
>   char path[PATH_MAX];
>             ^
> 
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>

Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>


 Regards,
 Arnout

> ---
>  ...ck-common.c-Include-limits.h-for-PATH_MAX.patch | 29 ++++++++++++++++++++++
>  1 file changed, 29 insertions(+)
>  create mode 100644 package/smack/0001-libsmack-common.c-Include-limits.h-for-PATH_MAX.patch
> 
> diff --git a/package/smack/0001-libsmack-common.c-Include-limits.h-for-PATH_MAX.patch b/package/smack/0001-libsmack-common.c-Include-limits.h-for-PATH_MAX.patch
> new file mode 100644
> index 0000000..0e30ef5
> --- /dev/null
> +++ b/package/smack/0001-libsmack-common.c-Include-limits.h-for-PATH_MAX.patch
> @@ -0,0 +1,29 @@
> +From 316c911aa741b14513622a4206ed6d324e951fa0 Mon Sep 17 00:00:00 2001
> +From: Felix Janda <felix.janda@posteo.de>
> +Date: Wed, 20 May 2015 21:25:22 +0200
> +Subject: [PATCH 1/1] libsmack/common.c: Include <limits.h> for PATH_MAX
> +
> +Signed-off-by: Felix Janda <felix.janda@posteo.de>
> +Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
> +---
> +Downloaded from upstream commit
> +https://github.com/smack-team/smack/commit/316c911aa741b14513622a4206ed6d324e951fa0
> +
> + libsmack/common.c | 1 +
> + 1 file changed, 1 insertion(+)
> +
> +diff --git a/libsmack/common.c b/libsmack/common.c
> +index 55fee1a..55b59e3 100644
> +--- a/libsmack/common.c
> ++++ b/libsmack/common.c
> +@@ -22,6 +22,7 @@
> + #include <dirent.h>
> + #include <errno.h>
> + #include <fcntl.h>
> ++#include <limits.h>
> + #include <stdio.h>
> + #include <string.h>
> + #include <unistd.h>
> +-- 
> +2.7.0
> +
> 


-- 
Arnout Vandecappelle                          arnout at mind be
Senior Embedded Software Architect            +32-16-286500
Essensium/Mind                                http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium           BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint:  7493 020B C7E3 8618 8DEC 222C 82EB F404 F9AC 0DDF

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

end of thread, other threads:[~2016-02-02 13:24 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-01-31 16:26 [Buildroot] [PATCH 1/2] package/smack: bump version to 1.1.0 Bernd Kuhls
2016-01-31 16:26 ` [Buildroot] [PATCH 2/2] package/smack: fix musl build Bernd Kuhls
2016-02-02 13:24   ` Arnout Vandecappelle
2016-01-31 20:06 ` [Buildroot] [PATCH 1/2] package/smack: bump version to 1.1.0 Thomas Petazzoni

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