diff options
author | 宋文武 <iyzsong@member.fsf.org> | 2025-02-07 20:43:24 +0800 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-07-18 20:17:38 +0200 |
commit | 410c4b6db71266bd2e3d4d2d2fd9ab03fbd4adc2 (patch) | |
tree | 3de1206458b1b1b7ad2239e5e8f87d7e7ebc59fe | |
parent | 86c5509e28201a86a76e5a134736b13780bf98e4 (diff) |
gnu: agg: Fix build with newer freetype.
* gnu/packages/graphics.scm (agg) [arguments]: Add -fpermissive to CXXFLAGS.
Change-Id: I49ee36c99802548e7cc9ec4cbed322f95640bfc8
-rw-r--r-- | gnu/packages/graphics.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/packages/graphics.scm b/gnu/packages/graphics.scm index 65a8b2c2fc..37249c9138 100644 --- a/gnu/packages/graphics.scm +++ b/gnu/packages/graphics.scm @@ -2052,6 +2052,7 @@ understanding different BRDFs (and other component functions).") "/include") (string-append "--x-libraries=" (assoc-ref %build-inputs "libx11") "/lib") + "CXXFLAGS=-fpermissive" ;from ‘unsigned char*’ to ‘char*’ "--disable-examples") #:phases (modify-phases %standard-phases |