1
0
mirror of https://github.com/ostreedev/ostree.git synced 2025-01-12 13:18:27 +03:00

bin: Fix cookie builtin build with curl but no soup

Prep for supporting `--with-curl --without-soup`.

Closes: 
Approved by: cgwalters
This commit is contained in:
Colin Walters 2018-01-08 09:28:47 -05:00 committed by Atomic Bot
parent 3b9304b5d7
commit c8d9da8d96
2 changed files with 2 additions and 2 deletions

View File

@ -41,7 +41,7 @@ static OstreeCommand remote_subcommands[] = {
{ "gpg-import", OSTREE_BUILTIN_FLAG_NONE,
ot_remote_builtin_gpg_import,
"Import GPG keys" },
#ifdef HAVE_LIBSOUP
#ifdef HAVE_LIBCURL_OR_LIBSOUP
{ "add-cookie", OSTREE_BUILTIN_FLAG_NONE,
ot_remote_builtin_add_cookie,
"Add a cookie to remote" },

View File

@ -31,7 +31,7 @@ BUILTINPROTO(add);
BUILTINPROTO(delete);
BUILTINPROTO(gpg_import);
BUILTINPROTO(list);
#ifdef HAVE_LIBSOUP
#ifdef HAVE_LIBCURL_OR_LIBSOUP
BUILTINPROTO(add_cookie);
BUILTINPROTO(list_cookies);
BUILTINPROTO(delete_cookie);