Merge pull request #95668 from adisbladis/emacs-with-cairo
emacs: Add --with-cairo when X is enabled
This commit is contained in:
commit
240db8476a
|
@ -116,7 +116,7 @@ in stdenv.mkDerivation {
|
||||||
(if withNS
|
(if withNS
|
||||||
then [ "--disable-ns-self-contained" ]
|
then [ "--disable-ns-self-contained" ]
|
||||||
else if withX
|
else if withX
|
||||||
then [ "--with-x-toolkit=${toolkit}" "--with-xft" ]
|
then [ "--with-x-toolkit=${toolkit}" "--with-xft" "--with-cairo" ]
|
||||||
else [ "--with-x=no" "--with-xpm=no" "--with-jpeg=no" "--with-png=no"
|
else [ "--with-x=no" "--with-xpm=no" "--with-jpeg=no" "--with-png=no"
|
||||||
"--with-gif=no" "--with-tiff=no" ])
|
"--with-gif=no" "--with-tiff=no" ])
|
||||||
++ lib.optional withXwidgets "--with-xwidgets"
|
++ lib.optional withXwidgets "--with-xwidgets"
|
||||||
|
|
Loading…
Reference in New Issue