diff options
author | Ludovic Courtès <ludo@gnu.org> | 2025-06-11 23:22:27 +0200 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-07-18 20:17:34 +0200 |
commit | 83e7107401f79c908d01afa4a7ef097caa44b8a9 (patch) | |
tree | a1b67152649fe300e93f29af6869494c92ab0201 /gnu/packages/lesstif.scm | |
parent | 42f7c1bb176253ebea47c84077303bb14f62fbed (diff) |
gnu: motif: Build with GCC 11.
* gnu/packages/lesstif.scm (motif)[native-inputs]: Add GCC 11.
Change-Id: I4eea64de919d11e54a909ecdfafd37f4d06283fc
Diffstat (limited to 'gnu/packages/lesstif.scm')
-rw-r--r-- | gnu/packages/lesstif.scm | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/gnu/packages/lesstif.scm b/gnu/packages/lesstif.scm index b1b7fbbe82..01ca9a99fa 100644 --- a/gnu/packages/lesstif.scm +++ b/gnu/packages/lesstif.scm @@ -27,6 +27,7 @@ #:use-module (gnu packages c) #:use-module (gnu packages flex) #:use-module (gnu packages fontutils) + #:use-module (gnu packages gcc) #:use-module (gnu packages pkg-config) #:use-module (gnu packages xorg)) @@ -77,7 +78,15 @@ (propagated-inputs (list fontconfig freetype libxext libxft libxpm libxt xbitmaps)) (native-inputs - (list autoconf automake byacc flex libtool pkg-config)) + ;; This fails to build with GCC 14 due to missing header includes and + ;; other C semantics issues. + (list gcc-11 + autoconf + automake + byacc + flex + libtool + pkg-config)) (home-page "https://motif.ics.com/motif") (synopsis "Toolkit for the X window system") (description "Motif is a standard graphical user interface, (as defined |