mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
daemon: Make libbz2 an optional dependency.
* config-daemon.ac: Don't bail out when libbz2 is missing. Define 'HAVE_LIBBZ2' Automake conditional. * nix/libstore/build.cc: Wrap relevant bits in '#if HAVE_BZLIB_H'. * nix/libstore/globals.cc (Settings::Settings): 'logCompression' defaults to COMPRESSION_GZIP when HAVE_BZLIB_H is false. * nix/libstore/globals.hh (CompressionType): Make 'COMPRESSION_BZIP2' conditional on HAVE_BZLIB_H. * nix/local.mk (guix_register_LDADD, guix_daemon_LDADD): Add -lbz2 only when HAVE_LIBBZ2. * nix/nix-daemon/guix-daemon.cc (parse_opt): Ignore "bzip2" when not HAVE_BZLIB_H.
This commit is contained in:
parent
29a6866886
commit
f997137d0e
6 changed files with 40 additions and 10 deletions
|
@ -206,8 +206,10 @@ parse_opt (int key, char *arg, struct argp_state *state)
|
|||
settings.logCompression = COMPRESSION_NONE;
|
||||
else if (strcmp (arg, "gzip") == 0)
|
||||
settings.logCompression = COMPRESSION_GZIP;
|
||||
#if HAVE_BZLIB_H
|
||||
else if (strcmp (arg, "bzip2") == 0)
|
||||
settings.logCompression = COMPRESSION_BZIP2;
|
||||
#endif
|
||||
else
|
||||
{
|
||||
fprintf (stderr, _("error: %s: unknown compression type\n"), arg);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue