diff options
author | 宋文武 <iyzsong@member.fsf.org> | 2025-02-07 20:43:24 +0800 |
---|---|---|
committer | Zheng Junjie <z572@z572.online> | 2025-07-06 19:00:07 +0800 |
commit | 854b9504ef89fd199678f23a52897e046d14b206 (patch) | |
tree | f57944266dd3341a6365d9a7984aa643c9e83c11 | |
parent | 409482a0a54b7fd019e1f93b4b0da02e37875110 (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 |