X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=Fuse.pm;h=d05104ba5a5130a635690c838814e7083b6daa5f;hb=11482549ab0f67b1ad315da6c12a0b25f769e7a3;hp=5a1f5d9c535bbf96a63f858e567a18923fba3572;hpb=c8201688f77a2f26c429e8d4ff2310f3c8353150;p=perl-fuse.git diff --git a/Fuse.pm b/Fuse.pm index 5a1f5d9..d05104b 100755 --- a/Fuse.pm +++ b/Fuse.pm @@ -20,14 +20,11 @@ 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) ], ); -if (fuse_version() >= 2.8) { - push(@{$EXPORT_TAGS{'all'}}, qw(notify_poll pollhandle_destroy)); - our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } ); our @EXPORT = ();