diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-11-22 20:07:25 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-11-22 20:32:07 +0100 |
commit | 108b923d922b39711286a02e87e388fa41ba732b (patch) | |
tree | 583dccdf3bc31e6dbbd86b7acfd097283069f42d /gnu | |
parent | 1882282843636c9bdcde55b584582ed8c63ef111 (diff) | |
download | guix-108b923d922b39711286a02e87e388fa41ba732b.tar.gz guix-108b923d922b39711286a02e87e388fa41ba732b.zip |
gnu: uim-gtk: Pass -fcommon to compiler.
* gnu/packages/xorg.scm (uim-gtk)[arguments]: Add -fcommon to CFLAGS.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/xorg.scm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm index 043e023ab2..70f5a6e0f3 100644 --- a/gnu/packages/xorg.scm +++ b/gnu/packages/xorg.scm @@ -6679,6 +6679,10 @@ and embedded platforms.") `(("gtk" ,gtk+) ("gtk" ,gtk+-2) ,@(package-inputs uim))) + (arguments + (substitute-keyword-arguments (package-arguments uim) + ((#:configure-flags configure-flags) + (append configure-flags (list "CFLAGS=-fcommon"))))) (synopsis "Multilingual input method framework (GTK+ support)"))) (define-public uim-qt |