libmicrohttpd

HTTP/1.x server C library (MHD 1.x, stable)
Log | Files | Refs | Submodules | README | LICENSE

commit 28ce309504d1432e9fead5af54c27e20f41da59c
parent 44a26637136f638fa53b62ae0138605c878d29d8
Author: Christian Grothoff <christian@grothoff.org>
Date:   Thu, 11 Sep 2008 04:15:03 +0000

make dist fixes

Diffstat:
Mdoc/Makefile.am | 2+-
Msrc/daemon/https/Makefile.am | 1+
Msrc/daemon/https/tls/Makefile.am | 45+++++++++++++++++++++++++++++++++++++++++++--
Msrc/daemon/https/tls/ext_server_name.c | 3+--
Msrc/daemon/https/x509/Makefile.am | 29+++++++++++++----------------
5 files changed, 59 insertions(+), 21 deletions(-)

diff --git a/doc/Makefile.am b/doc/Makefile.am @@ -3,5 +3,5 @@ EXTRA_DIST = $(man_MANS) Doxyfile DISTCLEANFILES = microhttpd.cps tutorial.cps info_TEXINFOS = microhttpd.texi tutorial.texi -microhttpd_TEXINFOS = lgpl.texi chapters/basicauthentication.inc chapters/bibliography.inc chapters/exploringrequests.inc fdl-1.2.texi chapters/hellobrowser.inc chapters/introduction.inc chapters/processingpost.inc chapters/responseheaders.inc +microhttpd_TEXINFOS = lgpl.texi chapters/basicauthentication.inc chapters/bibliography.inc chapters/exploringrequests.inc fdl-1.2.texi chapters/hellobrowser.inc chapters/introduction.inc chapters/processingpost.inc chapters/responseheaders.inc chapters/largerpost.inc diff --git a/src/daemon/https/Makefile.am b/src/daemon/https/Makefile.am @@ -1 +1,2 @@ +EXTRA_DIST = gnutls.h SUBDIRS = minitasn1 lgl x509 tls . diff --git a/src/daemon/https/tls/Makefile.am b/src/daemon/https/tls/Makefile.am @@ -65,4 +65,46 @@ gnutls_supplemental.c \ gnutls_ui.c \ gnutls_x509.c \ pkix_asn1_tab.c \ -x509_b64.c -\ No newline at end of file +x509_b64.c \ +auth_anon.h \ +auth_cert.h \ +auth_dh_common.h \ +debug.h \ +defines.h \ +ext_cert_type.h \ +ext_max_record.h \ +ext_oprfi.h \ +ext_server_name.h \ +gnutls_algorithms.h \ +gnutls_auth.h \ +gnutls_auth_int.h \ +gnutls_buffers.h \ +gnutls_cert.h \ +gnutls_cipher.h \ +gnutls_cipher_int.h \ +gnutls_compress.h \ +gnutls_compress_int.h \ +gnutls_constate.h \ +gnutls_datum.h \ +gnutls_dh.h \ +gnutls_errors.h \ +gnutls_extensions.h \ +gnutls_global.h \ +gnutls_handshake.h \ +gnutls_hash_int.h \ +gnutls_int.h \ +gnutls_kx.h \ +gnutls_mem.h \ +gnutls_mpi.h \ +gnutls_num.h \ +gnutls_pk.h \ +gnutls_record.h \ +gnutls_rsa_export.h \ +gnutls_session_pack.h \ +gnutls_sig.h \ +gnutls_state.h \ +gnutls_str.h \ +gnutls_supplemental.h \ +gnutls_x509.h \ +io_debug.h \ +x509_b64.h diff --git a/src/daemon/https/tls/ext_server_name.c b/src/daemon/https/tls/ext_server_name.c @@ -128,13 +128,12 @@ mhd_gtls_server_name_send_params (mhd_gtls_session_t session, opaque * data, size_t _data_size) { int total_size = 0; - +#if MHD_DEBUG_TLS uint16_t len; opaque *p; unsigned i; ssize_t data_size = _data_size; -#if MHD_DEBUG_TLS /* this function sends the client extension data (dnsname) */ if (session->security_parameters.entity == GNUTLS_CLIENT) { diff --git a/src/daemon/https/x509/Makefile.am b/src/daemon/https/x509/Makefile.am @@ -13,23 +13,20 @@ libx509_la_LDFLAGS = -lgcrypt # -l $(top_srcdir)/src/daemon/https/lgl/liblgl.la libx509_la_SOURCES = \ -common.c \ -crq.c \ +common.c common.h \ +crq.c crq.h \ crl.c \ -dn.c \ -dsa.c \ -extensions.c \ -mpi.c \ +dn.c dn.h \ +dsa.c dsa.h \ +extensions.c extensions.h \ +mpi.c mpi.h \ pkcs12_bag.c \ -pkcs12.c \ +pkcs12.c pkcs12.h \ pkcs12_encr.c \ -pkcs7.c \ -x509_privkey.c \ +pkcs7.c pkcs7.h \ +x509_privkey.c privkey.h \ privkey_pkcs8.c \ -rfc2818_hostname.c \ -sign.c \ -x509_verify.c \ -x509.c - - - +rfc2818_hostname.c rfc2818.h \ +sign.c sign.h \ +x509_verify.c verify.h \ +x509.c x509.h