diff options
author | sunpoet <sunpoet@FreeBSD.org> | 2018-07-31 08:05:38 +0800 |
---|---|---|
committer | sunpoet <sunpoet@FreeBSD.org> | 2018-07-31 08:05:38 +0800 |
commit | 91d6e3f123fc188cc791bf53b732c664a8517f38 (patch) | |
tree | e25e8c1f74579af2181a87ab79435d138bb36543 /sysutils | |
parent | eb039ad8eb44158d9cab66988af5e6e2e0187493 (diff) | |
download | freebsd-ports-gnome-91d6e3f123fc188cc791bf53b732c664a8517f38.tar.gz freebsd-ports-gnome-91d6e3f123fc188cc791bf53b732c664a8517f38.tar.zst freebsd-ports-gnome-91d6e3f123fc188cc791bf53b732c664a8517f38.zip |
Fix UTF16 option
PR: 227666
Submitted by: Ting-Wei Lan <lantw44@gmail.com>
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/gdisk/files/patch-parttypes.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sysutils/gdisk/files/patch-parttypes.h b/sysutils/gdisk/files/patch-parttypes.h new file mode 100644 index 000000000000..86936d479922 --- /dev/null +++ b/sysutils/gdisk/files/patch-parttypes.h @@ -0,0 +1,12 @@ +--- parttypes.h.orig 2018-07-05 20:19:46 UTC ++++ parttypes.h +@@ -16,6 +16,9 @@ + #define __PARTITION_TYPES + + using namespace std; ++#ifdef USE_UTF16 ++using namespace icu; ++#endif + + // A partition type + struct AType { |