nckx pushed a commit to branch master
in repository guix.

commit 8c1d7c8511ceca1fe650f3dd94b63a4945a1f9b7
Author: Josh Marshall <[email protected]>
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 <[email protected]>
---
 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