Displaying 4 results from an estimated 4 matches for "6a3a377".
2018 Aug 01
2
Re: [PATCH v2 nbdkit 4/6] common: Add a directory for common code shared by plugins and filters.
...common/include/ispowerof2.h | 50 +++++++++++++++++++++++++++++++
> common/include/iszero.h | 60 +++++++++++++++++++++++++++++++++++++
> configure.ac | 1 +
> 5 files changed, 154 insertions(+), 1 deletion(-)
>
> diff --git a/Makefile.am b/Makefile.am
> index 6a3a377..09dbdb9 100644
> --- a/Makefile.am
> +++ b/Makefile.am
> @@ -53,7 +53,10 @@ SUBDIRS = \
> src
>
> if HAVE_PLUGINS
> -SUBDIRS += plugins filters
> +SUBDIRS += \
> + common/include \
> + plugins \
> + filters
> endif
>
> SUBDIRS...
2018 Aug 01
0
[PATCH v2 nbdkit 4/6] common: Add a directory for common code shared by plugins and filters.
...39 ++++++++++++++++++++++++
common/include/ispowerof2.h | 50 +++++++++++++++++++++++++++++++
common/include/iszero.h | 60 +++++++++++++++++++++++++++++++++++++
configure.ac | 1 +
5 files changed, 154 insertions(+), 1 deletion(-)
diff --git a/Makefile.am b/Makefile.am
index 6a3a377..09dbdb9 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -53,7 +53,10 @@ SUBDIRS = \
src
if HAVE_PLUGINS
-SUBDIRS += plugins filters
+SUBDIRS += \
+ common/include \
+ plugins \
+ filters
endif
SUBDIRS += tests
diff --git a/common/include/Makefile.am b/common/include/Makefile.am
new file mod...
2018 Aug 01
0
Re: [PATCH v2 nbdkit 4/6] common: Add a directory for common code shared by plugins and filters.
...50 +++++++++++++++++++++++++++++++
> > common/include/iszero.h | 60 +++++++++++++++++++++++++++++++++++++
> > configure.ac | 1 +
> > 5 files changed, 154 insertions(+), 1 deletion(-)
> >
> > diff --git a/Makefile.am b/Makefile.am
> > index 6a3a377..09dbdb9 100644
> > --- a/Makefile.am
> > +++ b/Makefile.am
> > @@ -53,7 +53,10 @@ SUBDIRS = \
> > src
> >
> > if HAVE_PLUGINS
> > -SUBDIRS += plugins filters
> > +SUBDIRS += \
> > + common/include \
> > + plugins \
&g...
2018 Aug 01
12
[PATCH v2 nbdkit 0/6] Add truncate filter and other fixes.
I have dropped the map filter from this series for now while I try to
get it working.
However I think the truncate filter is in a good shape. This
incorporates all feedback from Eric's review.
Also there are three small fixes to the filter code, all revealed when
I was testing using multiple filters which we'd not done much of
before.
Rich.