diff options
author | Colin Walters <walters@verbum.org> | 2014-05-01 12:55:13 -0400 |
---|---|---|
committer | Colin Walters <walters@verbum.org> | 2014-05-01 17:13:13 -0400 |
commit | 25ad4a9f65a5dae9348fd38c7f4b8b0df1f9773a (patch) | |
tree | 199ca8cd2d7937cd860b3527412c870ebbc49219 /Makefile-libostree.am | |
parent | 64b4ec6ef09fe367e1356861a2174802229b404c (diff) | |
download | ostree-25ad4a9f65a5dae9348fd38c7f4b8b0df1f9773a.tar.gz |
pull: Add tls-client-cert-{path,key} (if we have new enough libsoup)
This is an actually working version of client-side certificates.
Depends on:
See: https://bugzilla.gnome.org/show_bug.cgi?id=334021
We detect whether libsoup is new enough for this.
https://bugzilla.gnome.org/show_bug.cgi?id=729356
Diffstat (limited to 'Makefile-libostree.am')
-rw-r--r-- | Makefile-libostree.am | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Makefile-libostree.am b/Makefile-libostree.am index 5fd60006..d2c039cf 100644 --- a/Makefile-libostree.am +++ b/Makefile-libostree.am @@ -1,6 +1,6 @@ # Makefile for C source code # -# Copyright (C) 2011 Colin Walters <walters@verbum.org> +# Copyright (C) 2011,2014 Colin Walters <walters@verbum.org> # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public @@ -88,6 +88,12 @@ libostree_1_la_SOURCES += src/libostree/ostree-libarchive-input-stream.h \ src/libostree/ostree-libarchive-input-stream.c \ $(NULL) endif +if HAVE_LIBSOUP_CLIENT_CERTS +libostree_1_la_SOURCES += \ + src/libostree/ostree-tls-cert-interaction.c \ + src/libostree/ostree-tls-cert-interaction.h \ + $(NULL) +endif libostree_1_la_CFLAGS = $(AM_CFLAGS) -I$(srcdir)/src/libotutil -I$(srcdir)/src/libostree -DLOCALEDIR=\"$(datadir)/locale\" -DGPGVPATH=\"$(GPGVPATH)\" $(OT_INTERNAL_GIO_UNIX_CFLAGS) $(OT_DEP_LZMA_CFLAGS) libostree_1_la_LDFLAGS = -version-number 1:0:0 -Bsymbolic-functions -export-symbols-regex '^ostree_' |