summaryrefslogtreecommitdiffstats
path: root/daemon/.gitignore
Commit message (Collapse)AuthorAgeFilesLines
* Update to latest gnulib.Richard Jones2010-06-041-0/+1
|
* Improve errors from tar-in/tgz-in commands (RHBZ#591155 RHBZ#591250).Richard Jones2010-05-131-0/+1
| | | | | | | | | | | | | | | | | | | | This commit improves the error messages from the tar-in, tgz-in (etc) commands by capturing the stderr from the tar command in a file and sending that back in the error message. The method used for the error file is primitive, and there is a case for a more generic error file mechanism, but this will do for now. Sample error messages after this change: $ virt-tar -u /tmp/test1.img /tmp/not.tar / tar_in: tar subcommand failed on directory: /: tar: This does not look like a tar archive tar: Skipping to next header tar: Exiting with failure status due to previous errors at /home/rjones/d/libguestfs/tools/virt-tar line 247. $ virt-tar -u /tmp/test1.img /tmp/test.tar / tar_in: tar subcommand failed on directory: /: tar: access.log: Cannot open: Read-only file system tar: Exiting with failure status due to previous errors at /home/rjones/d/libguestfs/tools/virt-tar line 247.
* Update to latest gnulib.Richard Jones2010-05-061-0/+3
|
* Update to latest Gnulib.Richard Jones2010-01-131-1/+6
|
* build: update gnulib submodule to latestRichard Jones2009-11-261-0/+1
|
* daemon/Win32: use gnulib modules connect, socket and symlinkat (for readlinkat).Richard Jones2009-11-261-0/+1
|
* daemon/Win32: provide htonl, htons, ntohl, ntohs functions.Richard Jones2009-11-261-0/+1
| | | | These functions are not available on Windows.
* daemon/Win32: Use gnulib getaddrinfo module.Richard Jones2009-11-251-0/+5
|
* daemon/Win32: Implement statvfs using GetDiskFreeSpaceEx.Richard Jones2009-11-251-0/+5
| | | | | | | At the time of writing Gnulib didn't support Win32 for its fsusage API. Therefore this patch uses GetDiskFreeSpaceEx if it's available (on Windows) otherwise falls back to using Gnulib fsusage.
* daemon: Use gnulib futimens module.Richard Jones2009-11-251-0/+8
| | | | | | | | | Instead of checking for futimens support and falling back (incorrectly in one case) to using futimes, use gnulib's module. However the gnulib module does not yet support Win32, so this change is only really useful on platforms like RHEL 5.
* daemon/Win32: Use gnulib pread module.Richard Jones2009-11-251-0/+2
|
* daemon/Win32: Use gnulib modules for first porting to Win32.Richard Jones2009-11-201-1/+30
|
* build: update gnulib submodule to latestRichard Jones2009-11-201-0/+17
|
* daemon/gnulib: Include glob module.Richard Jones2009-11-201-0/+16
|
* daemon/Win32: Ignore mingw32-config.cache.Richard Jones2009-11-201-0/+1
| | | | | The Fedora Windows cross-compiler 'mingw32-configure' script always uses a configure cache. Ignore that file.
* daemon: Change chdir to use openat/fdopendir.Richard Jones2009-10-261-0/+42
| | | | Uses Gnulib implementation of openat which should be portable.
* Ignore some more m4 files.Richard Jones2009-09-091-0/+1
|
* Ignore manywarnings.m4 / warnings.m4.Richard W.M. Jones2009-08-171-0/+2
|
* daemon: use gnulibJim Meyering2009-08-061-0/+29
* daemon/Makefile.am (SUBDIRS): Define. (AM_CPPFLAGS): Define, to include from gnulib's lib/ (LDADD): Define, to link with gnulib's libgnu.a. * daemon/configure.ac: Use AC_CONFIG_AUX_DIR([build-aux]), gl_EARLY and gl_INIT. (AC_CONFIG_FILES): Add lib/Makefile and tests/Makefile * daemon/m4/gnulib-cache.m4: New file, generated by running ../.gnulib/gnulib-tool --import --with-tests hash * daemon/.gitignore: Ignore all of the imported files. build: tell bootstrap about daemon/ * bootstrap: Run gnulib-tool --update in daemon/. Remove bootstrap's --gnulib-srcdir option, because it probably didn't work, and even if it did, we've discovered that using a separate git repo like that can lead to subtle mix-ups.