From 864ef706a84c7c87a62f776d4b2e82a6f959ae14 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Tue, 14 Aug 2012 09:04:51 +0100 Subject: Add optional compress flag to tar-in, tar-out APIs. The compress flag can be used to control compression, one of: (none), "compress", "gzip", "bzip2", "xz", "lzop". Thus these calls can now be used instead of tgz-in/tgz-out/txz-in/txz-out, and also support more compression types. Mark these APIs as once_had_no_optargs so that compatibility code is generated. --- gobject/Makefile.inc | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'gobject/Makefile.inc') diff --git a/gobject/Makefile.inc b/gobject/Makefile.inc index 8c4b2d13..49f95387 100644 --- a/gobject/Makefile.inc +++ b/gobject/Makefile.inc @@ -47,6 +47,8 @@ guestfs_gobject_headers= \ include/guestfs-gobject/optargs-mount_local.h \ include/guestfs-gobject/optargs-umount_local.h \ include/guestfs-gobject/optargs-umount.h \ + include/guestfs-gobject/optargs-tar_in.h \ + include/guestfs-gobject/optargs-tar_out.h \ include/guestfs-gobject/optargs-grep.h \ include/guestfs-gobject/optargs-mkfs.h \ include/guestfs-gobject/optargs-mount_9p.h \ @@ -99,6 +101,8 @@ guestfs_gobject_sources= \ src/optargs-mount_local.c \ src/optargs-umount_local.c \ src/optargs-umount.c \ + src/optargs-tar_in.c \ + src/optargs-tar_out.c \ src/optargs-grep.c \ src/optargs-mkfs.c \ src/optargs-mount_9p.c \ -- cgit