mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-01-06 15:34:44 +08:00
79e38de840
Add the ability to set some additional curlopt values via .daprc (aka .dodsrc). This effects both DAP2 and DAP4 protocols. Related issues: [1] re: esupport: KOZ-821332 [2] re: github issue https://github.com/Unidata/netcdf4-python/issues/836 [3] re: github issue https://github.com/Unidata/netcdf-c/issues/1074 1. CURLOPT_BUFFERSIZE: Relevant to [1]. Allow user to set the read/write buffersizes used by curl. This is done by adding the following to .daprc (aka .dodsrc): HTTP.READ.BUFFERSIZE=n where n is the buffersize in bytes. There is a built-in (to curl) limit of 512k for this value. 2. CURLOPT_TCP_KEEPALIVE (and CURLOPT_TCP_KEEPIDLE and CURLOPT_TCP_KEEPINTVL): Relevant (maybe) to [2] and [3]. Allow the user to turn on KEEPALIVE This is done by adding the following to .daprc (aka .dodsrc): HTTP.KEEPALIVE=on|n/m If the value is "on", then simply enable default KEEPALIVE. If the value is n/m, then enable KEEPALIVE and set KEEPIDLE to n and KEEPINTVL to m.
81 lines
1.5 KiB
Makefile
81 lines
1.5 KiB
Makefile
## This is a automake file, part of Unidata's netCDF package.
|
|
# Copyright 2005, see the COPYRIGHT file for more information.
|
|
|
|
# This automake file generates the Makefile to libdap2. Whatever that
|
|
# is!
|
|
|
|
# Put together AM_CPPFLAGS and AM_LDFLAGS.
|
|
include $(top_srcdir)/lib_flags.am
|
|
|
|
# We may have to add to these later.
|
|
DISTCLEANFILES =
|
|
MAINTAINERCLEANFILES =
|
|
CLEANFILES =
|
|
EXTRA_DIST = CMakeLists.txt
|
|
|
|
LDADD=
|
|
|
|
#d4curlflags.c
|
|
|
|
SRC= \
|
|
d4crc32.c \
|
|
d4curlfunctions.c \
|
|
d4fix.c \
|
|
d4data.c \
|
|
d4file.c \
|
|
d4parser.c \
|
|
d4meta.c \
|
|
d4varx.c \
|
|
d4dump.c \
|
|
d4swap.c \
|
|
d4chunk.c \
|
|
d4printer.c \
|
|
d4read.c \
|
|
d4http.c \
|
|
d4util.c \
|
|
d4odom.c \
|
|
d4cvt.c \
|
|
d4debug.c \
|
|
ncd4dispatch.c \
|
|
ezxml_extra.c \
|
|
ezxml.c
|
|
|
|
HDRS= \
|
|
ncd4dispatch.h \
|
|
ncd4types.h \
|
|
ncd4.h \
|
|
d4chunk.h \
|
|
d4http.h \
|
|
d4read.h \
|
|
d4curlfunctions.h \
|
|
d4util.h \
|
|
d4debug.h \
|
|
d4odom.h \
|
|
d4bytes.h \
|
|
d4includes.h \
|
|
ezxml.h
|
|
|
|
if ENABLE_DAP4
|
|
if USE_NETCDF4
|
|
AM_CPPFLAGS += -I$(top_srcdir)/libsrc4
|
|
endif
|
|
|
|
# Build convenience library
|
|
noinst_LTLIBRARIES = libdap4.la
|
|
libdap4_la_SOURCES = $(SRC) $(HDRS)
|
|
libdap4_la_CPPFLAGS = $(AM_CPPFLAGS)
|
|
libdap4_la_LIBADD =
|
|
|
|
endif # ENABLE_DAP4
|
|
|
|
# Show what is needed to insert a new version of ezxml
|
|
# primary fix: The original ezxml.[ch] uses '//' comments;
|
|
# unpack and replace with '/*..*/'
|
|
EZXML=ezxml-0.8.6.tar.gz
|
|
ezxml::
|
|
rm -fr ./ezxml ./ezxml.[ch] ./license.txt
|
|
tar -zxf ./${EZXML}
|
|
sed -e 's|//\(.*\)|/*\1*/|' <ezxml/ezxml.c >./ezxml.c
|
|
sed -e 's|//\(.*\)|/*\1*/|' <ezxml/ezxml.h >./ezxml.h
|
|
cp ezxml/license.txt .
|