search for: gzopen

Displaying 20 results from an estimated 29 matches for "gzopen".

Did you mean: gzdopen
2007 Feb 13
1
CentOS 4 CPAN problem
Not sure if this is the proper list, but I've spent days browsing for the solution. This only happens on the CentOS machine, so I'll start here. After upgrading CPAN, I get the following: undefined subroutine &Compress::Zlib::gzopen called at /usr/lib/perl5/5.8.5/CPAN/Tarzip.pm line 102. "gzopen" seems to refer to a PHP command. Am I missing a module, or have I hit a bug? KS
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.
2016 Feb 17
0
[PATCH supermin v2 1/4] init: Uncompress modules before adding them to the mini initrd.
...7,11 @@ dnl Check for fakeroot, only used a few drivers where the host package dnl manager contains broken/unnecessary tests for root privs. AC_PATH_PROG(FAKEROOT,[fakeroot],[no]) -dnl Support for compressed input files, gzipped kernel modules. -AC_CHECK_HEADER([zlib.h],[ - AC_CHECK_LIB([z],[gzopen],[ - zlib=yes - ZLIB_LIBS=-lz +dnl Check for gunzip, only needed if you have gzip-compressed kernel modules. +AC_PATH_PROG(GUNZIP,[gunzip],[no]) - AC_MSG_CHECKING([for gzip static library]) - old_CFLAGS="$CFLAGS" - old_LDFLAGS="$LDFLAGS" -...
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.
2006 Sep 28
1
Build error/zlib question
...e -i makecdfenv_res.rc -o makecdfenv_res.o gcc -shared -s -o makecdfenv.dll makecdfenv.def read_cdffile.o makecdfenv_res.o -Lc:/rw2040dev/bin -lR read_cdffile.o:read_cdffile.c:(.text+0x42): undefined reference to `gzgets' read_cdffile.o:read_cdffile.c:(.text+0xf3): undefined reference to `gzopen' read_cdffile.o:read_cdffile.c:(.text+0x10f): undefined reference to `gzgets' read_cdffile.o:read_cdffile.c:(.text+0x140): undefined reference to `gzrewind' read_cdffile.o:read_cdffile.c:(.text+0x177): undefined reference to `gzclose' collect2: ld returned 1 exit status make[3]: ***...
2009 Mar 11
1
configure fail for XML package on freebsd
...xml and install.packages("XML") fails with checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for libxml/parser.h... (cached) no checking for gnome-xml/parser.h... (cached) no Located parser file -I/usr/local/include/libxml2/libxml/parser.h checking for gzopen in -lz... yes checking for xmlParseFile in -lxml2... yes You are trying to use a version 2.* edition of libxml but an incompatible library. The header files and library seem to be mismatched. If you have specified LIBXML_INCDIR, make certain to also specify an appropriate LIBXML_LIBDIR if the libxm...
2001 Dec 21
0
{R} 1.4.0 compiling failed on sun sparc solaris 2.6
...ited (mt100): ../../../bin/R --vanilla --slave < all.R initializing class and method definitions now Bus Error (core dumped) (mt100): dbx ../../../bin/R.bin core Reading R.bin [...] program terminated by signal BUS (invalid address alignment) Current function is gzfile_open 750 fp = gzopen(R_ExpandFileName(con->description), con->mode); (dbx) where [1] deflateEnd(0xaf0e18, 0xef429758, 0x115f188, 0x11700e0, 0xef423138, 0xef3c5b3c), at 0xef6b4be0 [2] destroy(0xaf0e18, 0x6, 0x8, 0xfffffff1, 0x8, 0x0), at 0xef6b2e48 [3] gz_open(0xaf0e18, 0x1122734, 0xffffffff, 0x0, 0x0, 0x0),...
2011 Nov 16
1
febootstrap-3.12 configure error on Fedora 16
...+0100, Andrzej Tobola wrote: > Hello Richard, > > Can't configure febootstrap-3.12 on Fedora 16: > > $ ./configure > ............ > checking for aptitude... no > checking for apt-cache... no > checking for dpkg... no > checking for pacman... no > checking for gzopen in -lz... no > checking for mke2fs... /sbin/mke2fs > checking for error_message in -lcom_err... no > configure: error: in `/home/ato/febootstrap/febootstrap-3.12': > configure: error: com_err library not found (part of e2fsprogs) > See `config.log' for more details > >...
2004 Sep 10
2
flac in the filesystem?
I am looking to losslessly archive a lot of music and share it over a network. The following stipulations lead me to an interesting conclusion: 1. Almost no programs can read or write flac files directly. 2. Almost all programs can read and write wav files directly. 3. The cost of encoding flac files is fairly low 4. The cost of decoding them is even lower 5. These files would be read much more
2008 Feb 29
1
using zlib (was compress data on read, decompress on write)
....0. I just downloaded the latest development version, built it, etc, but I am not able to find the zlib.h that, I believe, R should place somewhere under "where/you/want/R/to/go" (from --prefix=/where/you/want/R/to/go). There seem to be entry points for zlib in the binary (e.g., grep -r gzopen ./ Binary file ./lib64/R/bin/exec/R matches; etc). What is the appropriate way (if any) to tell my package where to look for the R-provided zlib.h? In addition, when searching the archives I found the message http://finzi.psych.upenn.edu/R/R-devel/archive/27154.html which seems to suggest that I...
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.
2004 Sep 10
0
flac in the filesystem?
...o all filesystems simultaneously, or if individual > filesystems would need to be modified. If you really want this, the right place to implement it is in userspace, not in the kernel. Take a look at libbz2 and zlib for examples of how this can be done. You could write a FLACopen routine like gzopen, which would transparently encode/decode from/to WAV format. This would probably go in the FLAC library, and make it trivial to add FLAC support to many WAV-supporting programs (those which don't use mmap). If you wanted transparency, you would write a shared library which would override open(...
2004 Aug 06
1
Icecast2: undefined reference to `xmlDocGetRootElement'
...g.o(.text+0x853): undefined reference to `xmlIsBlankNode' config.o(.text+0x932): more undefined references to `xmlIsBlankNode' follow stats.o: In function `stats_sendxml': stats.o(.text+0x9eb): undefined reference to `xmlDocSetRootElement' /usr/lib/libxml.so: undefined reference to `gzopen' /usr/lib/libxml.so: undefined reference to `gzread' /usr/lib/libxml.so: undefined reference to `gzclose' /usr/lib/libxml.so: undefined reference to `gzwrite' collect2: ld returned 1 exit status What do I have to do to get this to compile? Regards, Simon B. --- >8 ---- List ar...
2010 May 29
0
Tar archive extract to buffer and offer for view / download
...ruby'' def testFu File.directory?(log_folder) or return "Log folder ''#{log_folder}'' doesn''t exist." log_archive = File.expand_path(@log.log_archive,log_folder) # a hash which i probably can access from my view $result = Hash.new Tar.gzopen(log_archive, File::RDONLY, 0644, Tar::GNU | Tar::VERBOSE) do |tar| tar.each do if tar.reg? # regular file buf = tar.extract_buffer $result[tar.pathname] = buf end end end end View: <div class="rightbox"> <h1><%= F...
2001 Oct 24
1
How change the size of persp() axis labels?
Hi, I have been using the persp() function to plot species response surfaces based on GAMs (using package mgcv). Everything works fine, except that I have a slight problem when it comes to producing a figure with multiple (4 - 6) persp() plots on it. The axis labels remain the same size, no matter how large or small the plot is, causing some overlap when the multiplot figure is produced. Is
2004 Jun 23
0
Problem with XML package compilation on AIX
...needed checking how to run the C preprocessor... gcc -E checking for xml-config... no checking for xml2-config... /usr/bin/xml2-config Using libxml version 2. Located parser file -I/opt/freeware/include/libxml2/parser.h Checking for 1.8: -I/opt/freeware/include/libxml2 Using libxml2.* checking for gzopen in -lz... yes checking for xmlParseFile in -lxml2... yes checking for xmlHashSize in -lxml2... yes Using built-in xmlHashSize Checking DTD parsing (presence of externalSubset)... checking for xmlHashSize in -lxml2... yes Found xmlHashSize checking for xmlDocDumpFormatMemoryEnc in -lxml2... yes chec...
2004 Sep 10
3
flac in the filesystem?
...ly, or if individual > > filesystems would need to be modified. > > If you really want this, the right place to implement it is in > userspace, not in the kernel. Take a look at libbz2 and zlib for > examples of how this can be done. You could write a FLACopen routine > like gzopen, which would transparently encode/decode from/to WAV format. > This would probably go in the FLAC library, and make it trivial to add > FLAC support to many WAV-supporting programs (those which don't use > mmap). This doesn't give me the transparency I desire. > If you wanted...
2012 Oct 13
0
XML_3.95-0.1.tar.gz does not build on FreeBSD
...RRENT amd64, but it stopped during the check of R_HAS_REMOVE_FINALIZERS (full log appended): ---------------------------------- R CMD INSTALL XML_3.95-0.1.tar.gz [..snip..] Checking for 1.8: -DR_HAS_REMOVE_FINALIZERS=1 -I/usr/local/include/libxml2 -I/usr/local/include Using libxml2.* checking for gzopen in -lz... gcc46 -std=gnu99 -I/usr/local/lib/R/include -DNDEBUG -I/usr/local/include -fpic -O2 -pipe -O2 -fno-strict-aliasing -pipe -msse3 -Wl,-rpath=/usr/local/lib/gcc46 -c testRemoveFinalizers.c -o testRemoveFinalizers.o testRemoveFinalizers.c: In function 'foo': testRemoveFinalizers...
2007 Jan 30
1
Solaris 10 compilation issue
....o dtrco_ registration.o dtrsl_ registration.o wilcox_free registration.o fdhess optimize.o R_ShowFiles platform.o gzgetc connections.o gzopen connections.o gzread connections.o gzseek connections.o gztell connections.o BZ2_bzReadOpen connections.o R_zeroin optimize.o ptr_R_sav...
2001 Nov 02
1
png and jpeg libs for Solaris
...yes checking if jpeglib version >= 6b... yes checking for jpeg_destroy_compress in -ljpeg... no checking for main in -lz... yes checking for png.h... yes checking if libpng version >= 1.0.5... yes checking for png_create_write_struct in -lpng... no checking for XDR support... yes checking for gzopen in -lz... yes checking for zlib.h... yes checking if zlib version >= 1.1.3... yes But: > capabilities() jpeg png tcltk X11 libz http/ftp sockets libxml fifo cledit FALSE FALSE FALSE TRUE TRUE TRUE TRUE TRUE TRUE TRUE > ver...