Displaying 4 results from an estimated 4 matches for "have_lzma".
2015 Nov 06
0
Building R for AIX in 64-bit mode
...was not available.
from the diff of R-3.2.2 and R-devel
## R_TRE
@@ -3192,11 +3270,10 @@
## Try finding liblzma library and headers.
## We check that both are installed,
AC_DEFUN([R_LZMA],
- [if test "x${use_system_xz}" = xyes; then
- AC_CHECK_LIB(lzma, lzma_version_number, [have_lzma=yes], [have_lzma=no])
- if test "${have_lzma}" = yes; then
- AC_CHECK_HEADERS(lzma.h, [have_lzma=yes], [have_lzma=no])
- fi
+ [AC_CHECK_LIB(lzma, lzma_version_number, [have_lzma=yes], [have_lzma=no])
+ if test "${have_lzma}" = yes; then
+ AC_CHECK_HEADERS(lzma.h, [have...
2015 Nov 04
2
Building R for AIX in 64-bit mode
On 2015-11-04 17:31, aixtools wrote:
> On 2015-11-04 16:51, aixtools wrote:
>> On 2015-10-15 15:02, Prof Brian Ripley wrote:
>>> On 15/10/2015 13:32, Michael Felt wrote:
>>>> Hi.
>>>>
>>>> Just wanted to let you know I am getting close to packaging R for
>>>> AIX in
>>>> 64.bit mode.
>>>
>>> Which
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.
2013 Mar 15
0
[PATCH 4.1] Add DomU xz kernel decompression
...lzma_decode(
+ struct xc_dom_image *dom, void **blob, size_t *size)
+{
+ lzma_stream stream = LZMA_STREAM_INIT;
+ lzma_ret ret = lzma_alone_decoder(&stream, LZMA_BLOCK_SIZE);
+
+ return _xc_try_lzma_decode(dom, blob, size, &stream, ret, "LZMA");
+}
+
#else /* !defined(HAVE_LZMA) */
+static int xc_try_xz_decode(
+ struct xc_dom_image *dom, void **blob, size_t *size)
+{
+ DOMPRINTF("%s: XZ decompress support unavailable",
+ __FUNCTION__);
+ return -1;
+}
+
static int xc_try_lzma_decode(
struct xc_dom_image *dom, void **blob, size_t *s...