Displaying 20 results from an estimated 31 matches for "have_zlib".
2013 Aug 19
5
[PATCH v2 0/3 supermin] URPMI & xz support.
Joseph,
Please try my modified versions of these patches. These are
compile-tested on Fedora and they don't break any existing
functionality, but I don't have either urpmi nor a statically-linked
xz so I cannot fully test them.
I have also fixed detection of zlib (2/3).
Rich.
2020 Jul 10
2
[PATCH nbdkit] New filter: gzip
...gt;@])],
+ [disable gzip filter @<:@default=check@:>@])],
[],
[with_zlib=check])
AS_IF([test "$with_zlib" != "no"],[
@@ -911,7 +912,7 @@ AS_IF([test "$with_zlib" != "no"],[
AC_SUBST([ZLIB_LIBS])
AC_DEFINE([HAVE_ZLIB],[1],[zlib found at compile time.])
],
- [AC_MSG_WARN([zlib >= 1.2.3.5 not found, gzip plugin will be disabled])])
+ [AC_MSG_WARN([zlib >= 1.2.3.5 not found, gzip filter will be disabled])])
])
AM_CONDITIONAL([HAVE_ZLIB],[test "x$ZLIB_LIBS" != "x"])
@@ -1144...
2014 Apr 10
2
[LLVMdev] CMake configuration: Detecting zlib.h header in windows.
...e a simple file with "#include
<zlib.h>" with MSbuild.exe which invokes a project file. MSbuild has its
own environment and ignores the user's environment variables.
Any one face this issue before?
Let me know if you need more details on this.
The bottom line is , I want to set HAVE_ZLIB to 1
2018 Apr 06
3
[nbdkit PATCH v2] tests: Skip guestfs code on CentOS 6
CentOS 6 has libguestfs-devel 1.20.11, which predates the support
in guestfs_add_drive_opts() for requesting an nbd drive instead
of a local file (annoyingly, guestfs documentation merely states
the function was available since 0.3, without saying which later
releases added new options); causing a compilation failure during
'make check'. Maybe the guestfs plugin should still be built,
2018 Apr 09
0
[nbdkit PATCH 2/1] RFC: tests: Run tests that don't require libguestfs
...+endif HAVE_LIBGUESTFS
+
# file plugin test.
-check_PROGRAMS += test-file
-TESTS += test-file
+LIBGUESTFS_TESTS += test-file
test_file_SOURCES = test-file.c test.h
test_file_CFLAGS = $(WARNINGS_CFLAGS) $(LIBGUESTFS_CFLAGS)
@@ -241,8 +243,7 @@ test_file_LDADD = libtest.la $(LIBGUESTFS_LIBS)
if HAVE_ZLIB
if HAVE_GUESTFISH
-check_PROGRAMS += test-gzip
-TESTS += test-gzip
+LIBGUESTFS_TESTS += test-gzip
check_DATA += disk disk.gz
MAINTAINERCLEANFILES += disk disk.gz
@@ -263,24 +264,21 @@ endif HAVE_GUESTFISH
endif HAVE_ZLIB
# memory plugin test.
-check_PROGRAMS += test-memory
-TESTS += test-me...
2002 Mar 01
1
Building hdf5 on Windows
...H(hdf5, --with-hdf5=/XTRA/hdf5)
if test -n "$with_hdf5"; then
HDF5LDFLAGS=-L${with_hdf5}/lib
HDF5CPPFLAGS=-I${with_hdf5}/include
fi
LIBS=-lm
CPPFLAGS="$ZLIBCPPFLAGS $HDF5CPPFLAGS $CPPFLAGS"
LDFLAGS="$HDF5LDFLAGS $ZLIBLDFLAGS $LDFLAGS"
AC_SEARCH_LIBS(inflate, z, have_zlib=yes, have_zlib=no)
AC_SEARCH_LIBS(H5open, hdf5, have_hdf5=yes, have_hdf5=no)
if test $have_zlib = no; then
AC_MSG_ERROR(Can't find zlib)
fi
if test "$have_hdf5" = yes; then
AC_MSG_CHECKING(for sufficiently new HDF5)
AC_TRY_LINK([#include <hdf5.h>],
[ H5T_pers_t convt...
2020 Jul 10
0
Re: [PATCH nbdkit] New filter: gzip
...name.tar.xz \
> --filter=tar tar-entry=disk.img --filter=xz
>
> +++ b/tests/Makefile.am
> @@ -557,23 +557,6 @@ EXTRA_DIST += test-floppy.sh
> TESTS += test-full.sh
> EXTRA_DIST += test-full.sh
>
> -# gzip plugin test.
> -if HAVE_MKE2FS_WITH_D
> -if HAVE_ZLIB
> -LIBGUESTFS_TESTS += test-gzip
> -check_DATA += disk.gz
> -CLEANFILES += disk.gz
Is it worth keeping this around until we actually retire the plugin?
> +++ b/filters/gzip/gzip.c
> @@ -0,0 +1,347 @@
> +/* The first thread to call gzip_prepare uncompresses the whole plugin. */...
2018 Jun 07
4
[PATCH nbdkit 0/4] plugins: Add new "ext2" plugin, for accessing ext2, ext3 or ext4 filesystems.
There is a small test provided. I tested this a lot more locally
and it seems pretty robust.
Rich.
2018 Aug 20
1
[PATCH nbdkit] tests: Add a root only test of the file plugin with
In libguestfs we have a few tests that require root privileges and
they are skipped by default (normally you should not build or test as
root), but you can do this to run them:
sudo make check-root
In nbdkit I wanted to check that the file plugin works with block
devices (this is not tested), and the only way I can sensibly think to
do this is using a loopback device and root. This commit
2016 Feb 17
0
[PATCH supermin v2 1/4] init: Uncompress modules before adding them to the mini initrd.
...BS"
- AC_MSG_RESULT([yes])
- ],[
- AC_MSG_RESULT([no])
- ])
- CFLAGS="$old_CFLAGS"
- LDFLAGS="$old_LDFLAGS"
- LIBS="$old_LIBS"
- ])
-])
-if test "x$zlib" = "xyes"; then
- AC_DEFINE([HAVE_ZLIB],[1],[Define if you have zlib])
- AC_SUBST([ZLIB_LIBS])
-fi
-if test "x$zlib_static" = "xyes"; then
- AC_DEFINE([HAVE_ZLIB_STATIC],[1],[Define if you have static zlib])
- AC_SUBST([ZLIB_STATIC_LIBS])
-fi
-
-dnl Support for xzed kernel modules.
-AC_CHECK_HEADER([lzma.h],...
2017 Nov 20
3
[nbdkit PATCH 0/2] Add nbd forwarder test coverage
To avoid bitrot, any new feature needs testsuite coverage ;)
Still to come: once I get my work on parallel nbd finished,
I will add a test-parallel-nbd.sh that closely mirrors what
my other series added in test-parallel-file.sh.
If desired, it might be a fun exercise to tweak test-nbd into
using a for-loop of user-controlled depth for how deep you
want to nest the forwarding tree, to see where
2016 Feb 17
2
[PATCH supermin 0/2] Allow an alternate libc to be used for init.
Allow an alternate libc, such as dietlibc, to be used for the init
binary in the supermin appliance.
Rich.
2017 Feb 20
9
v2.2.28 release candidate released
http://dovecot.org/releases/2.2/rc/dovecot-2.2.28.rc1.tar.gz
http://dovecot.org/releases/2.2/rc/dovecot-2.2.28.rc1.tar.gz.sig
Pretty large release. Please test before the final v2.2.28, which should be out in a few days.
BTW. Our plan is to start making new releases approximately every month from now on.
* director: "doveadm director move" to same host now refreshes user's
2017 Feb 20
9
v2.2.28 release candidate released
http://dovecot.org/releases/2.2/rc/dovecot-2.2.28.rc1.tar.gz
http://dovecot.org/releases/2.2/rc/dovecot-2.2.28.rc1.tar.gz.sig
Pretty large release. Please test before the final v2.2.28, which should be out in a few days.
BTW. Our plan is to start making new releases approximately every month from now on.
* director: "doveadm director move" to same host now refreshes user's
2019 Sep 28
0
[PATCH nbdkit v2 2/4] Rename nbdkit-reflection-plugin to nbdkit-info-plugin.
...EXTRA_DIST = \
test-rate-dynamic.sh \
test.rb \
test-readahead-copy.sh \
- test-reflection-address.sh \
- test-reflection-base64.sh \
- test-reflection-raw.sh \
test-retry.sh \
test-retry-reopen-fail.sh \
test-shutdown.sh \
@@ -537,6 +537,13 @@ disk.gz: disk
endif HAVE_GUESTFISH
endif HAVE_ZLIB
+# info plugin test.
+TESTS += \
+ test-info-address.sh \
+ test-info-base64.sh \
+ test-info-raw.sh \
+ $(NULL)
+
# iso plugin test.
if HAVE_ISO
if HAVE_GUESTFISH
@@ -611,13 +618,6 @@ test_random_CPPFLAGS = -I $(top_srcdir)/common/include
test_random_CFLAGS = $(WARNINGS_CFLAGS) $(LIBGUESTFS_...
2016 Jan 11
1
[PATCH] Add support for newstyle NBD protocol (RHBZ#1297100).
Experimental and only very lightly tested so far.
Rich.
2017 Nov 20
10
[nbdkit PATCH v2 0/8] Support parallel transactions within single connection
I've posted some of these patches or ideas before; but now I'm
confident enough with the series that it should be ready to push;
at any rate, I can now run test-socket-activation in a tight loop
without triggering any crashes or hangs.
With this in place, I'm going back to work on making the nbd
forwarder wort with the parallel thread model.
Eric Blake (8):
sockets: Use
2016 Feb 17
8
[PATCH supermin 0/2] Allow an alternate libc to be used for init.
v1 -> v2:
- If we split out the init program into a separate init/ directory,
that makes it much easier to build against an alternate libc.
I tried to build against uClibc, but uClibc requires an entire build
chain, which looked like it was going to be a massive ballache.
Rich.
2020 May 29
2
get_ea_dos_attribute: Cannot get attribute from EA on file .: Error = No data available
Samba 4.12.1, single server with AD+DC on Ubuntu 18.04. Filesystem:
/dev/sdb1 on /home type ext4 (rw,relatime,stripe=32750,data=ordered)
It all work as expected, but I occasionally get the error in subject which denies access to shares. Restarting Samba will restore functionality.
What can be the cause of this problem?
Thanks.
[2020/05/27 18:24:35.795379, 8]
2020 Jun 03
3
get_ea_dos_attribute: Cannot get attribute from EA on file .: Error = No data available
...HAVE_STDINT_H
HAVE_STDIO_H
HAVE_STDLIB_H
HAVE_STRINGS_H
HAVE_STRING_H
HAVE_STROPTS_H
HAVE_SYSCALL_H
HAVE_SYSLOG_H
HAVE_TERMCAP_H
HAVE_TERMIOS_H
HAVE_TERMIO_H
HAVE_TERM_H
HAVE_TIME_H
HAVE_UNICODE_USTRING_H
HAVE_UNISTD_H
HAVE_UTIME_H
HAVE_XFS_XQM_H
HAVE_ZLIB_H
UTMP Options:
HAVE_GETUTMPX
HAVE_UTMPX_H
HAVE_UTMP_H
HAVE_UT_UT_EXIT
HAVE_UT_UT_HOST
HAVE_UT_UT_ID
HAVE_UT_UT_NAME
HAVE_UT_UT_PID
HAVE_UT_UT_TIME
HAVE_UT_UT_TV
HAVE_UT_UT_TYPE
HAVE_UT_UT_USER
PUTUTLINE_RETURNS_UTMP
SIZEOF_UTMP_UT_LINE
WITH_UTMP
HAVE_...