build: Include a copy of Nix's libstore and daemon; build it.
authorLudovic Courtès <ludo@gnu.org>
Mon, 3 Dec 2012 22:04:47 +0000 (23:04 +0100)
committerLudovic Courtès <ludo@gnu.org>
Mon, 3 Dec 2012 22:05:08 +0000 (23:05 +0100)
commitc2033df432af87d0176347858c7d11acfe2ed89f
tree05a7befd50cead52a401165c03dee3ae72840619
parent7eba5e6361b637a4c8aecbb13644f573a845732b
build: Include a copy of Nix's libstore and daemon; build it.

* configure.ac: Call `AC_USE_SYSTEM_EXTENSIONS', and
  `GUIX_SYSTEM_TYPE'.  Add `--with-store-dir' option, and substitute
  `storedir'.  Include `config-daemon.ac'.
* config-daemon.ac: New file.
* Makefile.am [BUILD_DAEMON]: Include `daemon.am'.
* daemon.am: New file.
* m4/guix.m4 (GUIX_SYSTEM_TYPE): New macro.

* nix/libutil/gcrypt-hash.cc, nix/libutil/gcrypt-hash.hh,
  nix/libutil/md5.h, nix/libutil/sha1.h, nix/libutil/sha256.h,
  nix/nix-daemon/guix-daemon.cc, nix/nix-daemon/shared.hh: New files.
17 files changed:
.gitignore
Makefile.am
config-daemon.ac [new file with mode: 0644]
configure.ac
daemon.am [new file with mode: 0644]
m4/guix.m4
nix/.gitignore [new file with mode: 0644]
nix/boost/.gitignore [new file with mode: 0644]
nix/libstore/.gitignore [new file with mode: 0644]
nix/libutil/.gitignore [new file with mode: 0644]
nix/libutil/gcrypt-hash.cc [new file with mode: 0644]
nix/libutil/gcrypt-hash.hh [new file with mode: 0644]
nix/libutil/md5.h [new file with mode: 0644]
nix/libutil/sha1.h [new file with mode: 0644]
nix/libutil/sha256.h [new file with mode: 0644]
nix/nix-daemon/guix-daemon.cc [new file with mode: 0644]
nix/nix-daemon/shared.hh [new file with mode: 0644]