unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#31083] [PATCH 1/2] gnu: libtorrent-rasterbar: Add CXXFLAGS.
@ 2018-04-06 20:06 Fis Trivial
  2018-04-06 20:16 ` Fis Trivial
  2018-04-09 20:59 ` Ludovic Courtès
  0 siblings, 2 replies; 5+ messages in thread
From: Fis Trivial @ 2018-04-06 20:06 UTC (permalink / raw)
  To: 31083


* gnu/packages/bittorrent.scm (libtorrent-rasterbar): Add CXXFLAGS.
---
 gnu/packages/bittorrent.scm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/bittorrent.scm b/gnu/packages/bittorrent.scm
index dc051e262..b168f88e0 100644
--- a/gnu/packages/bittorrent.scm
+++ b/gnu/packages/bittorrent.scm
@@ -391,7 +391,8 @@ and will take advantage of multiple processor cores where possible.")
                             (assoc-ref %build-inputs "boost")
                             "/lib")
              "--enable-python-binding"
-             "--enable-tests")
+             "--enable-tests"
+             "CXXFLAGS=-std=c++11")     ; Use std::chrono instead of boost
        #:make-flags (list
                      (string-append "LDFLAGS=-Wl,-rpath="
                                     (assoc-ref %outputs "out") "/lib"))))
-- 
2.14.3

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

* [bug#31083] [PATCH 1/2] gnu: libtorrent-rasterbar: Add CXXFLAGS.
  2018-04-06 20:06 [bug#31083] [PATCH 1/2] gnu: libtorrent-rasterbar: Add CXXFLAGS Fis Trivial
@ 2018-04-06 20:16 ` Fis Trivial
  2018-04-09 20:59 ` Ludovic Courtès
  1 sibling, 0 replies; 5+ messages in thread
From: Fis Trivial @ 2018-04-06 20:16 UTC (permalink / raw)
  To: Fis Trivial; +Cc: 31083@debbugs.gnu.org


Fis Trivial writes:

> * gnu/packages/bittorrent.scm (libtorrent-rasterbar): Add CXXFLAGS.
> ---
>  gnu/packages/bittorrent.scm | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/gnu/packages/bittorrent.scm b/gnu/packages/bittorrent.scm
> index dc051e262..b168f88e0 100644
> --- a/gnu/packages/bittorrent.scm
> +++ b/gnu/packages/bittorrent.scm
> @@ -391,7 +391,8 @@ and will take advantage of multiple processor cores where possible.")
>                              (assoc-ref %build-inputs "boost")
>                              "/lib")
>               "--enable-python-binding"
> -             "--enable-tests")
> +             "--enable-tests"
> +             "CXXFLAGS=-std=c++11")     ; Use std::chrono instead of boost
>         #:make-flags (list
>                       (string-append "LDFLAGS=-Wl,-rpath="
>                                      (assoc-ref %outputs "out") "/lib"))))

This is for adding qBittorrent.

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

* [bug#31083] [PATCH 1/2] gnu: libtorrent-rasterbar: Add CXXFLAGS.
  2018-04-06 20:06 [bug#31083] [PATCH 1/2] gnu: libtorrent-rasterbar: Add CXXFLAGS Fis Trivial
  2018-04-06 20:16 ` Fis Trivial
@ 2018-04-09 20:59 ` Ludovic Courtès
  2018-04-09 21:41   ` Fis Trivial
  1 sibling, 1 reply; 5+ messages in thread
From: Ludovic Courtès @ 2018-04-09 20:59 UTC (permalink / raw)
  To: Fis Trivial; +Cc: 31083

Hi,

Fis Trivial <ybbs.daans@hotmail.com> skribis:

> * gnu/packages/bittorrent.scm (libtorrent-rasterbar): Add CXXFLAGS.
> ---
>  gnu/packages/bittorrent.scm | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/gnu/packages/bittorrent.scm b/gnu/packages/bittorrent.scm
> index dc051e262..b168f88e0 100644
> --- a/gnu/packages/bittorrent.scm
> +++ b/gnu/packages/bittorrent.scm
> @@ -391,7 +391,8 @@ and will take advantage of multiple processor cores where possible.")
>                              (assoc-ref %build-inputs "boost")
>                              "/lib")
>               "--enable-python-binding"
> -             "--enable-tests")
> +             "--enable-tests"
> +             "CXXFLAGS=-std=c++11")     ; Use std::chrono instead of boost

Does that mean we can remove Boost from the dependencies or is it still
needed for other bits?

Thank you,
Ludo’.

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

* [bug#31083] [PATCH 1/2] gnu: libtorrent-rasterbar: Add CXXFLAGS.
  2018-04-09 20:59 ` Ludovic Courtès
@ 2018-04-09 21:41   ` Fis Trivial
  2018-04-10 20:50     ` Ludovic Courtès
  0 siblings, 1 reply; 5+ messages in thread
From: Fis Trivial @ 2018-04-09 21:41 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 31083@debbugs.gnu.org


>
> Does that mean we can remove Boost from the dependencies or is it still
> needed for other bits?
>
> Thank you,
> Ludo’.

It's still needed. The solution is adopted from project's issue list:

https://github.com/qbittorrent/qBittorrent/issues/8402
https://github.com/qbittorrent/qBittorrent/issues/5265

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

* [bug#31083] [PATCH 1/2] gnu: libtorrent-rasterbar: Add CXXFLAGS.
  2018-04-09 21:41   ` Fis Trivial
@ 2018-04-10 20:50     ` Ludovic Courtès
  0 siblings, 0 replies; 5+ messages in thread
From: Ludovic Courtès @ 2018-04-10 20:50 UTC (permalink / raw)
  To: Fis Trivial; +Cc: 31083

Fis Trivial <ybbs.daans@hotmail.com> skribis:

>>
>> Does that mean we can remove Boost from the dependencies or is it still
>> needed for other bits?
>>
>> Thank you,
>> Ludo’.
>
> It's still needed. The solution is adopted from project's issue list:
>
> https://github.com/qbittorrent/qBittorrent/issues/8402
> https://github.com/qbittorrent/qBittorrent/issues/5265

OK, thanks for explaining.  Applied, thanks!

Ludo’.

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

end of thread, other threads:[~2018-04-10 20:51 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-04-06 20:06 [bug#31083] [PATCH 1/2] gnu: libtorrent-rasterbar: Add CXXFLAGS Fis Trivial
2018-04-06 20:16 ` Fis Trivial
2018-04-09 20:59 ` Ludovic Courtès
2018-04-09 21:41   ` Fis Trivial
2018-04-10 20:50     ` Ludovic Courtès

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).