guix-commits
[Top][All Lists]
Advanced

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

01/02: gnu: aegis: Fix build failure.


From: guix-commits
Subject: 01/02: gnu: aegis: Fix build failure.
Date: Wed, 27 May 2020 07:33:51 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit 8c1d7c8511ceca1fe650f3dd94b63a4945a1f9b7
Author: Josh Marshall <address@hidden>
AuthorDate: Tue May 26 23:12:26 2020 -0400

    gnu: aegis: Fix build failure.
    
    * gnu/packages/version-control.scm (aegis)[arguments]: Add
    ‘CXXFLAGS=-std=c++03’ to #:configure-flags.
    
    Signed-off-by: Tobias Geerinckx-Rice <address@hidden>
---
 gnu/packages/version-control.scm | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index 4f39682..27c1f3b 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -1885,7 +1885,10 @@ accessed and migrated on modern systems.")
        ("ed" ,ed)))
     (arguments
      `(#:configure-flags (list "--with-no-aegis-configured"
-                               "--sharedstatedir=/var/com/aegis")
+                               "--sharedstatedir=/var/com/aegis"
+                               ;; Uses the old 'throw()' specifier with 'new'
+                               ;; which changed in C++11.
+                               "CXXFLAGS=-std=c++03")
        #:parallel-build? #f ; There are some nasty racy rules in the Makefile.
        #:phases
        (modify-phases %standard-phases



reply via email to

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