-
-
Notifications
You must be signed in to change notification settings - Fork 14.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
perlPackages.EncodeIMAPUTF7: patch to fix build with 540
- Loading branch information
1 parent
88135df
commit bd26bb2
Showing
2 changed files
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git a/lib/Encode/IMAPUTF7.pm b/lib/Encode/IMAPUTF7.pm | ||
index 07835b9..411c57f 100644 | ||
--- a/lib/Encode/IMAPUTF7.pm | ||
+++ b/lib/Encode/IMAPUTF7.pm | ||
@@ -9,6 +9,8 @@ __PACKAGE__->Define('IMAP-UTF-7', 'imap-utf-7'); | ||
our $VERSION = '1.05'; | ||
use MIME::Base64; | ||
use Encode; | ||
+use Exporter 'import'; | ||
+our @EXPORT_OK = qw(encode decode); | ||
|
||
# | ||
# Algorithms taken from Unicode::String by Gisle Aas |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters