From fc72e6a6937832bcd8f8767daf1c715d54b0c740 Mon Sep 17 00:00:00 2001 From: Derrik Pates Date: Tue, 9 Aug 2011 20:24:43 -0600 Subject: [PATCH] Okay, nevermind, can't do that that way at all... --- Fuse.pm | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Fuse.pm b/Fuse.pm index 0bd25cc..d05104b 100755 --- a/Fuse.pm +++ b/Fuse.pm @@ -20,7 +20,7 @@ our @ISA = qw(Exporter DynaLoader); # If you do not need this, moving things directly into @EXPORT or @EXPORT_OK # will save memory. our %EXPORT_TAGS = ( - 'all' => [ qw(XATTR_CREATE XATTR_REPLACE fuse_get_context fuse_version FUSE_IOCTL_COMPAT FUSE_IOCTL_UNRESTRICTED FUSE_IOCTL_RETRY FUSE_IOCTL_MAX_IOV) ], + 'all' => [ qw(XATTR_CREATE XATTR_REPLACE fuse_get_context fuse_version FUSE_IOCTL_COMPAT FUSE_IOCTL_UNRESTRICTED FUSE_IOCTL_RETRY FUSE_IOCTL_MAX_IOV notify_poll pollhandle_destroy) ], 'xattr' => [ qw(XATTR_CREATE XATTR_REPLACE) ], 'ioctl' => [ qw(FUSE_IOCTL_COMPAT FUSE_IOCTL_UNRESTRICTED FUSE_IOCTL_RETRY FUSE_IOCTL_MAX_IOV) ], ); @@ -64,10 +64,6 @@ sub AUTOLOAD { bootstrap Fuse $VERSION; -if (fuse_version() >= 2.8) { - push(@{$EXPORT_TAGS{'all'}}, qw(notify_poll pollhandle_destroy)); -} - use constant FUSE_IOCTL_COMPAT => (1 << 0); use constant FUSE_IOCTL_UNRESTRICTED => (1 << 1); use constant FUSE_IOCTL_RETRY => (1 << 2); -- 2.20.1