Displaying 4 results from an estimated 4 matches for "have_zlib_stat".
Did you mean:
have_zlib_static
2016 Feb 17
0
[PATCH supermin v2 1/4] init: Uncompress modules before adding them to the mini initrd.
...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],[
- AC_CHECK_LIB([lzma],[lzma_code],[
- AC_MSG_CHECKING([for xz static library])
- old_CFLAGS="$CFLAGS"
- old_LDFLAGS=&q...
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.
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.
2014 Feb 25
2
[PATCH supermin v4] Supermin 5 rewrite.
...s.h>
-#include <unistd.h>
-#include <errno.h>
-#include <fcntl.h>
-#include <dirent.h>
-#include <time.h>
-#include <sys/types.h>
-#include <sys/mount.h>
-#include <sys/stat.h>
-#include <sys/wait.h>
-
-#include <asm/unistd.h>
-
-#ifdef HAVE_ZLIB_STATIC
-#include <zlib.h>
-#endif
-
-#ifdef HAVE_LZMA_STATIC
-#include <lzma.h>
-#endif
-
-/* Maximum time to wait for the root device to appear (seconds).
- *
- * On slow machines with lots of disks (Koji running the 255 disk test
- * in libguestfs) this really can take several minutes.
- *...