1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-07 18:31:49 +02:00

* Use pkgconfig to locate the Boehm GC (as suggested by Ludo), if

--enable-gc is given.
This commit is contained in:
Eelco Dolstra 2010-10-29 14:00:47 +00:00
parent 14fbf85380
commit 3d71c8013e
2 changed files with 10 additions and 10 deletions

View file

@ -19,7 +19,7 @@ let
buildInputs =
[ curl bison24 flex2535 perl libxml2 libxslt w3m bzip2
tetex dblatex nukeReferences
tetex dblatex nukeReferences pkgconfig
];
configureFlags = ''
@ -67,12 +67,12 @@ let
name = "nix";
src = tarball;
buildInputs = [ curl perl bzip2 openssl ];
buildInputs = [ curl perl bzip2 openssl pkgconfig boehmgc ];
configureFlags = ''
--disable-init-state
--with-bzip2=${bzip2}
--with-boehm-gc=${boehmgc}
--enable-gc
'';
};