summaryrefslogtreecommitdiff
path: root/tool
diff options
context:
space:
mode:
Diffstat (limited to 'tool')
-rwxr-xr-xtool/mkconfig.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/tool/mkconfig.rb b/tool/mkconfig.rb
index ec39e5f8bd..e9bedc6e44 100755
--- a/tool/mkconfig.rb
+++ b/tool/mkconfig.rb
@@ -9,6 +9,7 @@
$install_name ||= nil
$so_name ||= nil
$unicode_version ||= nil
+$unicode_emoji_version ||= nil
arch = $arch or raise "missing -arch"
version = $version or raise "missing -version"
@@ -247,6 +248,9 @@ print(*v_others)
print <<EOS if $unicode_version
CONFIG["UNICODE_VERSION"] = #{$unicode_version.dump}
EOS
+print <<EOS if $unicode_emoji_version
+ CONFIG["UNICODE_EMOJI_VERSION"] = #{$unicode_emoji_version.dump}
+EOS
print <<EOS if /darwin/ =~ arch
CONFIG["SDKROOT"] = ENV["SDKROOT"] || "" # don't run xcrun everytime, usually useless.
EOS