* [Buildroot] [PATCH 1/8] package/links: add --with/--without-zlib
2016-02-20 16:40 [Buildroot] [PATCH 0/8] package/links: With or without you ;) Bernd Kuhls
@ 2016-02-20 16:40 ` Bernd Kuhls
2016-02-20 17:38 ` Yann E. MORIN
2016-02-20 16:40 ` [Buildroot] [PATCH 2/8] package/links: add --with/--without-lzma Bernd Kuhls
` (8 subsequent siblings)
9 siblings, 1 reply; 22+ messages in thread
From: Bernd Kuhls @ 2016-02-20 16:40 UTC (permalink / raw)
To: buildroot
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
package/links/links.mk | 3 +++
1 file changed, 3 insertions(+)
diff --git a/package/links/links.mk b/package/links/links.mk
index 4d2cb2e..8d7ecba 100644
--- a/package/links/links.mk
+++ b/package/links/links.mk
@@ -52,7 +52,10 @@ LINKS_DEPENDENCIES += xz
endif
ifeq ($(BR2_PACKAGE_ZLIB),y)
+LINKS_CONF_OPTS += --with-zlib
LINKS_DEPENDENCIES += zlib
+else
+LINKS_CONF_OPTS += --without-zlib
endif
$(eval $(autotools-package))
--
2.7.0
^ permalink raw reply related [flat|nested] 22+ messages in thread* [Buildroot] [PATCH 1/8] package/links: add --with/--without-zlib
2016-02-20 16:40 ` [Buildroot] [PATCH 1/8] package/links: add --with/--without-zlib Bernd Kuhls
@ 2016-02-20 17:38 ` Yann E. MORIN
0 siblings, 0 replies; 22+ messages in thread
From: Yann E. MORIN @ 2016-02-20 17:38 UTC (permalink / raw)
To: buildroot
Bernd, All,
On 2016-02-20 17:40 +0100, Bernd Kuhls spake thusly:
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Regards,
Yann E. MORIN.
> ---
> package/links/links.mk | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/package/links/links.mk b/package/links/links.mk
> index 4d2cb2e..8d7ecba 100644
> --- a/package/links/links.mk
> +++ b/package/links/links.mk
> @@ -52,7 +52,10 @@ LINKS_DEPENDENCIES += xz
> endif
>
> ifeq ($(BR2_PACKAGE_ZLIB),y)
> +LINKS_CONF_OPTS += --with-zlib
> LINKS_DEPENDENCIES += zlib
> +else
> +LINKS_CONF_OPTS += --without-zlib
> endif
>
> $(eval $(autotools-package))
> --
> 2.7.0
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 223 225 172 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
^ permalink raw reply [flat|nested] 22+ messages in thread
* [Buildroot] [PATCH 2/8] package/links: add --with/--without-lzma
2016-02-20 16:40 [Buildroot] [PATCH 0/8] package/links: With or without you ;) Bernd Kuhls
2016-02-20 16:40 ` [Buildroot] [PATCH 1/8] package/links: add --with/--without-zlib Bernd Kuhls
@ 2016-02-20 16:40 ` Bernd Kuhls
2016-02-20 17:39 ` Yann E. MORIN
2016-02-20 16:40 ` [Buildroot] [PATCH 3/8] package/links: add --with/--without-ssl Bernd Kuhls
` (7 subsequent siblings)
9 siblings, 1 reply; 22+ messages in thread
From: Bernd Kuhls @ 2016-02-20 16:40 UTC (permalink / raw)
To: buildroot
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
package/links/links.mk | 3 +++
1 file changed, 3 insertions(+)
diff --git a/package/links/links.mk b/package/links/links.mk
index 8d7ecba..3515e5f 100644
--- a/package/links/links.mk
+++ b/package/links/links.mk
@@ -48,7 +48,10 @@ LINKS_DEPENDENCIES += openssl
endif
ifeq ($(BR2_PACKAGE_XZ),y)
+LINKS_CONF_OPTS += --with-lzma
LINKS_DEPENDENCIES += xz
+else
+LINKS_CONF_OPTS += --without-lzma
endif
ifeq ($(BR2_PACKAGE_ZLIB),y)
--
2.7.0
^ permalink raw reply related [flat|nested] 22+ messages in thread* [Buildroot] [PATCH 2/8] package/links: add --with/--without-lzma
2016-02-20 16:40 ` [Buildroot] [PATCH 2/8] package/links: add --with/--without-lzma Bernd Kuhls
@ 2016-02-20 17:39 ` Yann E. MORIN
0 siblings, 0 replies; 22+ messages in thread
From: Yann E. MORIN @ 2016-02-20 17:39 UTC (permalink / raw)
To: buildroot
Bernd, All,
On 2016-02-20 17:40 +0100, Bernd Kuhls spake thusly:
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Regards,
Yann E. MORIN.
> ---
> package/links/links.mk | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/package/links/links.mk b/package/links/links.mk
> index 8d7ecba..3515e5f 100644
> --- a/package/links/links.mk
> +++ b/package/links/links.mk
> @@ -48,7 +48,10 @@ LINKS_DEPENDENCIES += openssl
> endif
>
> ifeq ($(BR2_PACKAGE_XZ),y)
> +LINKS_CONF_OPTS += --with-lzma
> LINKS_DEPENDENCIES += xz
> +else
> +LINKS_CONF_OPTS += --without-lzma
> endif
>
> ifeq ($(BR2_PACKAGE_ZLIB),y)
> --
> 2.7.0
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 223 225 172 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
^ permalink raw reply [flat|nested] 22+ messages in thread
* [Buildroot] [PATCH 3/8] package/links: add --with/--without-ssl
2016-02-20 16:40 [Buildroot] [PATCH 0/8] package/links: With or without you ;) Bernd Kuhls
2016-02-20 16:40 ` [Buildroot] [PATCH 1/8] package/links: add --with/--without-zlib Bernd Kuhls
2016-02-20 16:40 ` [Buildroot] [PATCH 2/8] package/links: add --with/--without-lzma Bernd Kuhls
@ 2016-02-20 16:40 ` Bernd Kuhls
2016-02-20 17:43 ` Yann E. MORIN
2016-02-20 16:40 ` [Buildroot] [PATCH 4/8] package/links: add --with/--without-libevent Bernd Kuhls
` (6 subsequent siblings)
9 siblings, 1 reply; 22+ messages in thread
From: Bernd Kuhls @ 2016-02-20 16:40 UTC (permalink / raw)
To: buildroot
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
package/links/links.mk | 3 +++
1 file changed, 3 insertions(+)
diff --git a/package/links/links.mk b/package/links/links.mk
index 3515e5f..3a4519f 100644
--- a/package/links/links.mk
+++ b/package/links/links.mk
@@ -44,7 +44,10 @@ LINKS_DEPENDENCIES += libevent
endif
ifeq ($(BR2_PACKAGE_OPENSSL),y)
+LINKS_CONF_OPTS += --with-ssl=$(STAGING_DIR)/usr --enable-ssl-pkgconfig
LINKS_DEPENDENCIES += openssl
+else
+LINKS_CONF_OPTS += --without-ssl
endif
ifeq ($(BR2_PACKAGE_XZ),y)
--
2.7.0
^ permalink raw reply related [flat|nested] 22+ messages in thread* [Buildroot] [PATCH 3/8] package/links: add --with/--without-ssl
2016-02-20 16:40 ` [Buildroot] [PATCH 3/8] package/links: add --with/--without-ssl Bernd Kuhls
@ 2016-02-20 17:43 ` Yann E. MORIN
2016-02-20 17:47 ` Bernd Kuhls
0 siblings, 1 reply; 22+ messages in thread
From: Yann E. MORIN @ 2016-02-20 17:43 UTC (permalink / raw)
To: buildroot
Bernd, All,
On 2016-02-20 17:40 +0100, Bernd Kuhls spake thusly:
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
> ---
> package/links/links.mk | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/package/links/links.mk b/package/links/links.mk
> index 3515e5f..3a4519f 100644
> --- a/package/links/links.mk
> +++ b/package/links/links.mk
> @@ -44,7 +44,10 @@ LINKS_DEPENDENCIES += libevent
> endif
>
> ifeq ($(BR2_PACKAGE_OPENSSL),y)
> +LINKS_CONF_OPTS += --with-ssl=$(STAGING_DIR)/usr --enable-ssl-pkgconfig
So, even when using pkg-config, we still need to tell it where OpenSSL
is located?
Regards,
Yann E. MORIN.
> LINKS_DEPENDENCIES += openssl
> +else
> +LINKS_CONF_OPTS += --without-ssl
> endif
>
> ifeq ($(BR2_PACKAGE_XZ),y)
> --
> 2.7.0
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 223 225 172 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
^ permalink raw reply [flat|nested] 22+ messages in thread
* [Buildroot] [PATCH 3/8] package/links: add --with/--without-ssl
2016-02-20 17:43 ` Yann E. MORIN
@ 2016-02-20 17:47 ` Bernd Kuhls
2016-02-20 17:50 ` Yann E. MORIN
0 siblings, 1 reply; 22+ messages in thread
From: Bernd Kuhls @ 2016-02-20 17:47 UTC (permalink / raw)
To: buildroot
Am Sat, 20 Feb 2016 18:43:48 +0100 schrieb Yann E. MORIN:
>> ifeq ($(BR2_PACKAGE_OPENSSL),y)
>> +LINKS_CONF_OPTS += --with-ssl=$(STAGING_DIR)/usr
>> --enable-ssl-pkgconfig
>
> So, even when using pkg-config, we still need to tell it where OpenSSL
> is located?
Hi,
no, it works without the path to $STAGING_DIR, I just wanted to make
sure ;)
Regards, Bernd
^ permalink raw reply [flat|nested] 22+ messages in thread
* [Buildroot] [PATCH 3/8] package/links: add --with/--without-ssl
2016-02-20 17:47 ` Bernd Kuhls
@ 2016-02-20 17:50 ` Yann E. MORIN
2016-02-20 19:50 ` Bernd Kuhls
0 siblings, 1 reply; 22+ messages in thread
From: Yann E. MORIN @ 2016-02-20 17:50 UTC (permalink / raw)
To: buildroot
Bernd, All,
On 2016-02-20 18:47 +0100, Bernd Kuhls spake thusly:
> Am Sat, 20 Feb 2016 18:43:48 +0100 schrieb Yann E. MORIN:
>
> >> ifeq ($(BR2_PACKAGE_OPENSSL),y)
> >> +LINKS_CONF_OPTS += --with-ssl=$(STAGING_DIR)/usr
> >> --enable-ssl-pkgconfig
> >
> > So, even when using pkg-config, we still need to tell it where OpenSSL
> > is located?
>
> no, it works without the path to $STAGING_DIR, I just wanted to make
> sure ;)
Then do not provide it, please.
Thanks!
Regards,
Yann E. MORIN.
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 223 225 172 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
^ permalink raw reply [flat|nested] 22+ messages in thread
* [Buildroot] [PATCH 4/8] package/links: add --with/--without-libevent
2016-02-20 16:40 [Buildroot] [PATCH 0/8] package/links: With or without you ;) Bernd Kuhls
` (2 preceding siblings ...)
2016-02-20 16:40 ` [Buildroot] [PATCH 3/8] package/links: add --with/--without-ssl Bernd Kuhls
@ 2016-02-20 16:40 ` Bernd Kuhls
2016-02-20 17:39 ` Yann E. MORIN
2016-02-20 16:40 ` [Buildroot] [PATCH 5/8] package/links: add --with/--without-bzip2 Bernd Kuhls
` (5 subsequent siblings)
9 siblings, 1 reply; 22+ messages in thread
From: Bernd Kuhls @ 2016-02-20 16:40 UTC (permalink / raw)
To: buildroot
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
package/links/links.mk | 3 +++
1 file changed, 3 insertions(+)
diff --git a/package/links/links.mk b/package/links/links.mk
index 3a4519f..847d311 100644
--- a/package/links/links.mk
+++ b/package/links/links.mk
@@ -40,7 +40,10 @@ LINKS_DEPENDENCIES += bzip2
endif
ifeq ($(BR2_PACKAGE_LIBEVENT),y)
+LINKS_CONF_OPTS += --with-libevent
LINKS_DEPENDENCIES += libevent
+else
+LINKS_CONF_OPTS += --without-libevent
endif
ifeq ($(BR2_PACKAGE_OPENSSL),y)
--
2.7.0
^ permalink raw reply related [flat|nested] 22+ messages in thread* [Buildroot] [PATCH 4/8] package/links: add --with/--without-libevent
2016-02-20 16:40 ` [Buildroot] [PATCH 4/8] package/links: add --with/--without-libevent Bernd Kuhls
@ 2016-02-20 17:39 ` Yann E. MORIN
0 siblings, 0 replies; 22+ messages in thread
From: Yann E. MORIN @ 2016-02-20 17:39 UTC (permalink / raw)
To: buildroot
Bernd, All,
On 2016-02-20 17:40 +0100, Bernd Kuhls spake thusly:
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Regards,
Yann E. MORIN.
> ---
> package/links/links.mk | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/package/links/links.mk b/package/links/links.mk
> index 3a4519f..847d311 100644
> --- a/package/links/links.mk
> +++ b/package/links/links.mk
> @@ -40,7 +40,10 @@ LINKS_DEPENDENCIES += bzip2
> endif
>
> ifeq ($(BR2_PACKAGE_LIBEVENT),y)
> +LINKS_CONF_OPTS += --with-libevent
> LINKS_DEPENDENCIES += libevent
> +else
> +LINKS_CONF_OPTS += --without-libevent
> endif
>
> ifeq ($(BR2_PACKAGE_OPENSSL),y)
> --
> 2.7.0
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 223 225 172 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
^ permalink raw reply [flat|nested] 22+ messages in thread
* [Buildroot] [PATCH 5/8] package/links: add --with/--without-bzip2
2016-02-20 16:40 [Buildroot] [PATCH 0/8] package/links: With or without you ;) Bernd Kuhls
` (3 preceding siblings ...)
2016-02-20 16:40 ` [Buildroot] [PATCH 4/8] package/links: add --with/--without-libevent Bernd Kuhls
@ 2016-02-20 16:40 ` Bernd Kuhls
2016-02-20 17:40 ` Yann E. MORIN
2016-02-20 16:40 ` [Buildroot] [PATCH 6/8] package/links: add --with/--without-libtiff Bernd Kuhls
` (4 subsequent siblings)
9 siblings, 1 reply; 22+ messages in thread
From: Bernd Kuhls @ 2016-02-20 16:40 UTC (permalink / raw)
To: buildroot
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
package/links/links.mk | 3 +++
1 file changed, 3 insertions(+)
diff --git a/package/links/links.mk b/package/links/links.mk
index 847d311..26af392 100644
--- a/package/links/links.mk
+++ b/package/links/links.mk
@@ -36,7 +36,10 @@ endif
endif
ifeq ($(BR2_PACKAGE_BZIP2),y)
+LINKS_CONF_OPTS += --with-bzip2
LINKS_DEPENDENCIES += bzip2
+else
+LINKS_CONF_OPTS += --without-bzip2
endif
ifeq ($(BR2_PACKAGE_LIBEVENT),y)
--
2.7.0
^ permalink raw reply related [flat|nested] 22+ messages in thread* [Buildroot] [PATCH 5/8] package/links: add --with/--without-bzip2
2016-02-20 16:40 ` [Buildroot] [PATCH 5/8] package/links: add --with/--without-bzip2 Bernd Kuhls
@ 2016-02-20 17:40 ` Yann E. MORIN
0 siblings, 0 replies; 22+ messages in thread
From: Yann E. MORIN @ 2016-02-20 17:40 UTC (permalink / raw)
To: buildroot
Bernd, All,
On 2016-02-20 17:40 +0100, Bernd Kuhls spake thusly:
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Regards,
Yann E. MORIN.
> ---
> package/links/links.mk | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/package/links/links.mk b/package/links/links.mk
> index 847d311..26af392 100644
> --- a/package/links/links.mk
> +++ b/package/links/links.mk
> @@ -36,7 +36,10 @@ endif
> endif
>
> ifeq ($(BR2_PACKAGE_BZIP2),y)
> +LINKS_CONF_OPTS += --with-bzip2
> LINKS_DEPENDENCIES += bzip2
> +else
> +LINKS_CONF_OPTS += --without-bzip2
> endif
>
> ifeq ($(BR2_PACKAGE_LIBEVENT),y)
> --
> 2.7.0
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 223 225 172 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
^ permalink raw reply [flat|nested] 22+ messages in thread
* [Buildroot] [PATCH 6/8] package/links: add --with/--without-libtiff
2016-02-20 16:40 [Buildroot] [PATCH 0/8] package/links: With or without you ;) Bernd Kuhls
` (4 preceding siblings ...)
2016-02-20 16:40 ` [Buildroot] [PATCH 5/8] package/links: add --with/--without-bzip2 Bernd Kuhls
@ 2016-02-20 16:40 ` Bernd Kuhls
2016-02-20 17:40 ` Yann E. MORIN
2016-02-20 16:40 ` [Buildroot] [PATCH 7/8] package/links: add --disable-graphics Bernd Kuhls
` (3 subsequent siblings)
9 siblings, 1 reply; 22+ messages in thread
From: Bernd Kuhls @ 2016-02-20 16:40 UTC (permalink / raw)
To: buildroot
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
package/links/links.mk | 3 +++
1 file changed, 3 insertions(+)
diff --git a/package/links/links.mk b/package/links/links.mk
index 26af392..3486d94 100644
--- a/package/links/links.mk
+++ b/package/links/links.mk
@@ -31,7 +31,10 @@ ifeq ($(BR2_PACKAGE_JPEG),y)
LINKS_DEPENDENCIES += jpeg
endif
ifeq ($(BR2_PACKAGE_TIFF),y)
+LINKS_CONF_OPTS += --with-libtiff
LINKS_DEPENDENCIES += tiff
+else
+LINKS_CONF_OPTS += --without-libtiff
endif
endif
--
2.7.0
^ permalink raw reply related [flat|nested] 22+ messages in thread* [Buildroot] [PATCH 6/8] package/links: add --with/--without-libtiff
2016-02-20 16:40 ` [Buildroot] [PATCH 6/8] package/links: add --with/--without-libtiff Bernd Kuhls
@ 2016-02-20 17:40 ` Yann E. MORIN
0 siblings, 0 replies; 22+ messages in thread
From: Yann E. MORIN @ 2016-02-20 17:40 UTC (permalink / raw)
To: buildroot
Bernd, All,
On 2016-02-20 17:40 +0100, Bernd Kuhls spake thusly:
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Regards,
Yann E. MORIN.
> ---
> package/links/links.mk | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/package/links/links.mk b/package/links/links.mk
> index 26af392..3486d94 100644
> --- a/package/links/links.mk
> +++ b/package/links/links.mk
> @@ -31,7 +31,10 @@ ifeq ($(BR2_PACKAGE_JPEG),y)
> LINKS_DEPENDENCIES += jpeg
> endif
> ifeq ($(BR2_PACKAGE_TIFF),y)
> +LINKS_CONF_OPTS += --with-libtiff
> LINKS_DEPENDENCIES += tiff
> +else
> +LINKS_CONF_OPTS += --without-libtiff
> endif
> endif
>
> --
> 2.7.0
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 223 225 172 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
^ permalink raw reply [flat|nested] 22+ messages in thread
* [Buildroot] [PATCH 7/8] package/links: add --disable-graphics
2016-02-20 16:40 [Buildroot] [PATCH 0/8] package/links: With or without you ;) Bernd Kuhls
` (5 preceding siblings ...)
2016-02-20 16:40 ` [Buildroot] [PATCH 6/8] package/links: add --with/--without-libtiff Bernd Kuhls
@ 2016-02-20 16:40 ` Bernd Kuhls
2016-02-20 17:42 ` Yann E. MORIN
2016-02-20 16:40 ` [Buildroot] [PATCH 8/8] package/links: add --with/--without-libjpeg Bernd Kuhls
` (2 subsequent siblings)
9 siblings, 1 reply; 22+ messages in thread
From: Bernd Kuhls @ 2016-02-20 16:40 UTC (permalink / raw)
To: buildroot
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
package/links/links.mk | 2 ++
1 file changed, 2 insertions(+)
diff --git a/package/links/links.mk b/package/links/links.mk
index 3486d94..f42f21c 100644
--- a/package/links/links.mk
+++ b/package/links/links.mk
@@ -36,6 +36,8 @@ LINKS_DEPENDENCIES += tiff
else
LINKS_CONF_OPTS += --without-libtiff
endif
+else
+LINKS_CONF_OPTS += --disable-graphics
endif
ifeq ($(BR2_PACKAGE_BZIP2),y)
--
2.7.0
^ permalink raw reply related [flat|nested] 22+ messages in thread* [Buildroot] [PATCH 7/8] package/links: add --disable-graphics
2016-02-20 16:40 ` [Buildroot] [PATCH 7/8] package/links: add --disable-graphics Bernd Kuhls
@ 2016-02-20 17:42 ` Yann E. MORIN
0 siblings, 0 replies; 22+ messages in thread
From: Yann E. MORIN @ 2016-02-20 17:42 UTC (permalink / raw)
To: buildroot
Bernd, All,
On 2016-02-20 17:40 +0100, Bernd Kuhls spake thusly:
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Regards,
Yann E. MORIN.
> ---
> package/links/links.mk | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/package/links/links.mk b/package/links/links.mk
> index 3486d94..f42f21c 100644
> --- a/package/links/links.mk
> +++ b/package/links/links.mk
> @@ -36,6 +36,8 @@ LINKS_DEPENDENCIES += tiff
> else
> LINKS_CONF_OPTS += --without-libtiff
> endif
> +else
> +LINKS_CONF_OPTS += --disable-graphics
> endif
>
> ifeq ($(BR2_PACKAGE_BZIP2),y)
> --
> 2.7.0
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 223 225 172 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
^ permalink raw reply [flat|nested] 22+ messages in thread
* [Buildroot] [PATCH 8/8] package/links: add --with/--without-libjpeg
2016-02-20 16:40 [Buildroot] [PATCH 0/8] package/links: With or without you ;) Bernd Kuhls
` (6 preceding siblings ...)
2016-02-20 16:40 ` [Buildroot] [PATCH 7/8] package/links: add --disable-graphics Bernd Kuhls
@ 2016-02-20 16:40 ` Bernd Kuhls
2016-02-20 17:42 ` Yann E. MORIN
2016-02-20 17:37 ` [Buildroot] [PATCH 0/8] package/links: With or without you ;) Yann E. MORIN
2016-02-21 13:58 ` Thomas Petazzoni
9 siblings, 1 reply; 22+ messages in thread
From: Bernd Kuhls @ 2016-02-20 16:40 UTC (permalink / raw)
To: buildroot
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
package/links/links.mk | 3 +++
1 file changed, 3 insertions(+)
diff --git a/package/links/links.mk b/package/links/links.mk
index f42f21c..b62889f 100644
--- a/package/links/links.mk
+++ b/package/links/links.mk
@@ -28,7 +28,10 @@ else
LINKS_CONF_OPTS += --without-directfb
endif
ifeq ($(BR2_PACKAGE_JPEG),y)
+LINKS_CONF_OPTS += --with-libjpeg
LINKS_DEPENDENCIES += jpeg
+else
+LINKS_CONF_OPTS += --without-libjpeg
endif
ifeq ($(BR2_PACKAGE_TIFF),y)
LINKS_CONF_OPTS += --with-libtiff
--
2.7.0
^ permalink raw reply related [flat|nested] 22+ messages in thread* [Buildroot] [PATCH 8/8] package/links: add --with/--without-libjpeg
2016-02-20 16:40 ` [Buildroot] [PATCH 8/8] package/links: add --with/--without-libjpeg Bernd Kuhls
@ 2016-02-20 17:42 ` Yann E. MORIN
0 siblings, 0 replies; 22+ messages in thread
From: Yann E. MORIN @ 2016-02-20 17:42 UTC (permalink / raw)
To: buildroot
Bernd, All,
On 2016-02-20 17:40 +0100, Bernd Kuhls spake thusly:
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Regards,
Yann E. MORIN.
> ---
> package/links/links.mk | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/package/links/links.mk b/package/links/links.mk
> index f42f21c..b62889f 100644
> --- a/package/links/links.mk
> +++ b/package/links/links.mk
> @@ -28,7 +28,10 @@ else
> LINKS_CONF_OPTS += --without-directfb
> endif
> ifeq ($(BR2_PACKAGE_JPEG),y)
> +LINKS_CONF_OPTS += --with-libjpeg
> LINKS_DEPENDENCIES += jpeg
> +else
> +LINKS_CONF_OPTS += --without-libjpeg
> endif
> ifeq ($(BR2_PACKAGE_TIFF),y)
> LINKS_CONF_OPTS += --with-libtiff
> --
> 2.7.0
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 223 225 172 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
^ permalink raw reply [flat|nested] 22+ messages in thread
* [Buildroot] [PATCH 0/8] package/links: With or without you ;)
2016-02-20 16:40 [Buildroot] [PATCH 0/8] package/links: With or without you ;) Bernd Kuhls
` (7 preceding siblings ...)
2016-02-20 16:40 ` [Buildroot] [PATCH 8/8] package/links: add --with/--without-libjpeg Bernd Kuhls
@ 2016-02-20 17:37 ` Yann E. MORIN
2016-02-21 13:58 ` Thomas Petazzoni
9 siblings, 0 replies; 22+ messages in thread
From: Yann E. MORIN @ 2016-02-20 17:37 UTC (permalink / raw)
To: buildroot
Bernds, All,
Aha, I see I'm not the only one providing little jokes in the commit
logs/titles! Thanks for the good laugh! ;-)
On 2016-02-20 17:40 +0100, Bernd Kuhls spake thusly:
> this patch series adds --with/--without to CONF_OPTS as requested by
> Thomas: http://article.gmane.org/gmane.comp.lib.uclibc.buildroot/140285
>
> Regards, Bernd
>
> Bernd Kuhls (8):
> package/links: add --with/--without-zlib
> package/links: add --with/--without-lzma
> package/links: add --with/--without-ssl
> package/links: add --with/--without-libevent
> package/links: add --with/--without-bzip2
> package/links: add --with/--without-libtiff
> package/links: add --disable-graphics
> package/links: add --with/--without-libjpeg
I'll be reviewing those in a moment...
Regards,
Yann E. MORIN.
> package/links/links.mk | 23 +++++++++++++++++++++++
> 1 file changed, 23 insertions(+)
>
> --
> 2.7.0
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 223 225 172 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
^ permalink raw reply [flat|nested] 22+ messages in thread* [Buildroot] [PATCH 0/8] package/links: With or without you ;)
2016-02-20 16:40 [Buildroot] [PATCH 0/8] package/links: With or without you ;) Bernd Kuhls
` (8 preceding siblings ...)
2016-02-20 17:37 ` [Buildroot] [PATCH 0/8] package/links: With or without you ;) Yann E. MORIN
@ 2016-02-21 13:58 ` Thomas Petazzoni
9 siblings, 0 replies; 22+ messages in thread
From: Thomas Petazzoni @ 2016-02-21 13:58 UTC (permalink / raw)
To: buildroot
Dear Bernd Kuhls,
On Sat, 20 Feb 2016 17:40:03 +0100, Bernd Kuhls wrote:
> Bernd Kuhls (8):
> package/links: add --with/--without-zlib
> package/links: add --with/--without-lzma
Applied.
> package/links: add --with/--without-ssl
Not yet applied (I'll apply v2)
> package/links: add --with/--without-libevent
> package/links: add --with/--without-bzip2
> package/links: add --with/--without-libtiff
> package/links: add --disable-graphics
> package/links: add --with/--without-libjpeg
Applied.
Thanks!
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply [flat|nested] 22+ messages in thread