Project import generated by Copybara.
GitOrigin-RevId: 09c38c29f2c719cd76ca17a596c2fdac9e186ceb
This commit is contained in:
parent
d0fccafeff
commit
a8ecef63af
1 changed files with 4 additions and 3 deletions
|
@ -64,14 +64,15 @@ in stdenv.mkDerivation rec {
|
||||||
++ optional glSupport libGL
|
++ optional glSupport libGL
|
||||||
; # TODO: maybe liblzo but what would it be for here?
|
; # TODO: maybe liblzo but what would it be for here?
|
||||||
|
|
||||||
configureFlags = (if stdenv.isDarwin then [
|
configureFlags = [
|
||||||
|
"--enable-tee"
|
||||||
|
] ++ (if stdenv.isDarwin then [
|
||||||
"--disable-dependency-tracking"
|
"--disable-dependency-tracking"
|
||||||
"--enable-quartz"
|
"--enable-quartz"
|
||||||
"--enable-quartz-font"
|
"--enable-quartz-font"
|
||||||
"--enable-quartz-image"
|
"--enable-quartz-image"
|
||||||
"--enable-ft"
|
"--enable-ft"
|
||||||
] else ([ "--enable-tee" ]
|
] else (optional xcbSupport "--enable-xcb"
|
||||||
++ optional xcbSupport "--enable-xcb"
|
|
||||||
++ optional glSupport "--enable-gl"
|
++ optional glSupport "--enable-gl"
|
||||||
++ optional pdfSupport "--enable-pdf"
|
++ optional pdfSupport "--enable-pdf"
|
||||||
)) ++ optional (!x11Support) "--disable-xlib";
|
)) ++ optional (!x11Support) "--disable-xlib";
|
||||||
|
|
Loading…
Reference in a new issue