guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/02: gnu: rapidjson: Build without -Werror.


From: Ludovic Courtès
Subject: 01/02: gnu: rapidjson: Build without -Werror.
Date: Sat, 18 Jul 2015 21:46:33 +0000

civodul pushed a commit to branch core-updates
in repository guix.

commit c5c4c4b437f977f4aaedb34a258cd94146c93d4d
Author: Ludovic Courtès <address@hidden>
Date:   Sat Jul 18 22:53:50 2015 +0200

    gnu: rapidjson: Build without -Werror.
    
    * gnu/packages/web.scm (rapidjson)[source]: Add 'snippet'.
---
 gnu/packages/web.scm |    8 +++++++-
 1 files changed, 7 insertions(+), 1 deletions(-)

diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index 088aa0b..830d9db 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -272,7 +272,13 @@ parse JSON formatted strings back into the C 
representation of JSON objects.")
              (file-name (string-append name "-" version ".tar.gz"))
              (sha256
               (base32
-               "0rl6s0vg5y1dhh9vfl1lqay3sxf69sxjh0czxrjmasn7ng91wwf3"))))
+               "0rl6s0vg5y1dhh9vfl1lqay3sxf69sxjh0czxrjmasn7ng91wwf3"))
+             (modules '((guix build utils)))
+             (snippet
+              ;; Building with GCC 4.8 with -Werror was fine, but 4.9.3
+              ;; complains in new ways, so turn of -Werror.
+              '(substitute* (find-files "." "^CMakeLists\\.txt$")
+                 (("-Werror") "")))))
     (build-system cmake-build-system)
     (home-page "https://github.com/miloyip/rapidjson";)
     (synopsis "JSON parser/generator for C++ with both SAX/DOM style API")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]