STLExtract 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1967) hide show
  1. data/.gitignore +14 -0
  2. data/Gemfile +4 -0
  3. data/LICENSE.txt +22 -0
  4. data/README.md +66 -0
  5. data/Rakefile +2 -0
  6. data/STLExtract-0.0.1.gem +0 -0
  7. data/STLExtract.gemspec +23 -0
  8. data/Slic3r/Linux/bin/slic3r +0 -0
  9. data/Slic3r/Linux/dll/libGLU.so +1 -0
  10. data/Slic3r/Linux/dll/libGLU.so.1 +1 -0
  11. data/Slic3r/Linux/dll/libGLU.so.1.3.08004 +0 -0
  12. data/Slic3r/Linux/dll/libperl.so +0 -0
  13. data/Slic3r/Linux/dll/libwx_baseu-2.9.so +1 -0
  14. data/Slic3r/Linux/dll/libwx_baseu-2.9.so.3 +1 -0
  15. data/Slic3r/Linux/dll/libwx_baseu-2.9.so.3.0.0 +0 -0
  16. data/Slic3r/Linux/dll/libwx_baseu_net-2.9.so +1 -0
  17. data/Slic3r/Linux/dll/libwx_baseu_net-2.9.so.3 +1 -0
  18. data/Slic3r/Linux/dll/libwx_baseu_net-2.9.so.3.0.0 +0 -0
  19. data/Slic3r/Linux/dll/libwx_gtk2u_adv-2.9.so +1 -0
  20. data/Slic3r/Linux/dll/libwx_gtk2u_adv-2.9.so.3 +1 -0
  21. data/Slic3r/Linux/dll/libwx_gtk2u_adv-2.9.so.3.0.0 +0 -0
  22. data/Slic3r/Linux/dll/libwx_gtk2u_core-2.9.so +1 -0
  23. data/Slic3r/Linux/dll/libwx_gtk2u_core-2.9.so.3 +1 -0
  24. data/Slic3r/Linux/dll/libwx_gtk2u_core-2.9.so.3.0.0 +0 -0
  25. data/Slic3r/Linux/dll/libwx_gtk2u_gl-2.9.so +1 -0
  26. data/Slic3r/Linux/dll/libwx_gtk2u_gl-2.9.so.3 +1 -0
  27. data/Slic3r/Linux/dll/libwx_gtk2u_gl-2.9.so.3.0.0 +0 -0
  28. data/Slic3r/Linux/dll/libwx_gtk2u_html-2.9.so +1 -0
  29. data/Slic3r/Linux/dll/libwx_gtk2u_html-2.9.so.3 +1 -0
  30. data/Slic3r/Linux/dll/libwx_gtk2u_html-2.9.so.3.0.0 +0 -0
  31. data/Slic3r/Linux/lib/std/Authen/SASL.pm +130 -0
  32. data/Slic3r/Linux/lib/std/Authen/SASL/CRAM_MD5.pm +18 -0
  33. data/Slic3r/Linux/lib/std/Authen/SASL/EXTERNAL.pm +18 -0
  34. data/Slic3r/Linux/lib/std/Authen/SASL/Perl.pm +344 -0
  35. data/Slic3r/Linux/lib/std/Authen/SASL/Perl/ANONYMOUS.pm +93 -0
  36. data/Slic3r/Linux/lib/std/Authen/SASL/Perl/CRAM_MD5.pm +105 -0
  37. data/Slic3r/Linux/lib/std/Authen/SASL/Perl/DIGEST_MD5.pm +877 -0
  38. data/Slic3r/Linux/lib/std/Authen/SASL/Perl/EXTERNAL.pm +97 -0
  39. data/Slic3r/Linux/lib/std/Authen/SASL/Perl/GSSAPI.pm +375 -0
  40. data/Slic3r/Linux/lib/std/Authen/SASL/Perl/LOGIN.pm +216 -0
  41. data/Slic3r/Linux/lib/std/Authen/SASL/Perl/PLAIN.pm +182 -0
  42. data/Slic3r/Linux/lib/std/B.pm +1202 -0
  43. data/Slic3r/Linux/lib/std/B/Deparse.pm +4900 -0
  44. data/Slic3r/Linux/lib/std/CPAN/Config.pm +55 -0
  45. data/Slic3r/Linux/lib/std/Cava/Global.pm +20 -0
  46. data/Slic3r/Linux/lib/std/Cava/Project.pm +19 -0
  47. data/Slic3r/Linux/lib/std/Class/Accessor.pm +744 -0
  48. data/Slic3r/Linux/lib/std/Class/Method/Modifiers.pm +481 -0
  49. data/Slic3r/Linux/lib/std/Class/Struct.pm +636 -0
  50. data/Slic3r/Linux/lib/std/Class/XSAccessor.pm +326 -0
  51. data/Slic3r/Linux/lib/std/Class/XSAccessor/Heavy.pm +76 -0
  52. data/Slic3r/Linux/lib/std/Compress/Raw/Bzip2.pm +361 -0
  53. data/Slic3r/Linux/lib/std/Compress/Raw/Zlib.pm +1429 -0
  54. data/Slic3r/Linux/lib/std/Config.pm +110 -0
  55. data/Slic3r/Linux/lib/std/Config_git.pl +12 -0
  56. data/Slic3r/Linux/lib/std/Config_heavy.pl +1355 -0
  57. data/Slic3r/Linux/lib/std/Crypt/CBC.pm +1050 -0
  58. data/Slic3r/Linux/lib/std/Crypt/SSLeay.pm +457 -0
  59. data/Slic3r/Linux/lib/std/Crypt/SSLeay/CTX.pm +4 -0
  60. data/Slic3r/Linux/lib/std/Crypt/SSLeay/Conn.pm +4 -0
  61. data/Slic3r/Linux/lib/std/Crypt/SSLeay/Err.pm +4 -0
  62. data/Slic3r/Linux/lib/std/Crypt/SSLeay/MainContext.pm +42 -0
  63. data/Slic3r/Linux/lib/std/Crypt/SSLeay/X509.pm +26 -0
  64. data/Slic3r/Linux/lib/std/Cwd.pm +855 -0
  65. data/Slic3r/Linux/lib/std/Data/Dumper.pm +1306 -0
  66. data/Slic3r/Linux/lib/std/Data/UUID.pm +204 -0
  67. data/Slic3r/Linux/lib/std/Devel/GlobalDestruction.pm +110 -0
  68. data/Slic3r/Linux/lib/std/Digest/HMAC.pm +120 -0
  69. data/Slic3r/Linux/lib/std/Digest/HMAC_MD5.pm +71 -0
  70. data/Slic3r/Linux/lib/std/Digest/MD5.pm +376 -0
  71. data/Slic3r/Linux/lib/std/Digest/SHA.pm +701 -0
  72. data/Slic3r/Linux/lib/std/Digest/base.pm +100 -0
  73. data/Slic3r/Linux/lib/std/Encode.pm +977 -0
  74. data/Slic3r/Linux/lib/std/Encode/Alias.pm +384 -0
  75. data/Slic3r/Linux/lib/std/Encode/Byte.pm +120 -0
  76. data/Slic3r/Linux/lib/std/Encode/CJKConstants.pm +66 -0
  77. data/Slic3r/Linux/lib/std/Encode/CN.pm +74 -0
  78. data/Slic3r/Linux/lib/std/Encode/CN/HZ.pm +198 -0
  79. data/Slic3r/Linux/lib/std/Encode/Config.pm +170 -0
  80. data/Slic3r/Linux/lib/std/Encode/EBCDIC.pm +45 -0
  81. data/Slic3r/Linux/lib/std/Encode/Encoder.pm +253 -0
  82. data/Slic3r/Linux/lib/std/Encode/Encoding.pm +360 -0
  83. data/Slic3r/Linux/lib/std/Encode/GSM0338.pm +292 -0
  84. data/Slic3r/Linux/lib/std/Encode/Guess.pm +355 -0
  85. data/Slic3r/Linux/lib/std/Encode/JP.pm +95 -0
  86. data/Slic3r/Linux/lib/std/Encode/JP/H2Z.pm +176 -0
  87. data/Slic3r/Linux/lib/std/Encode/JP/JIS7.pm +165 -0
  88. data/Slic3r/Linux/lib/std/Encode/KR.pm +69 -0
  89. data/Slic3r/Linux/lib/std/Encode/KR/2022_KR.pm +81 -0
  90. data/Slic3r/Linux/lib/std/Encode/Locale.pm +348 -0
  91. data/Slic3r/Linux/lib/std/Encode/MIME/Header.pm +242 -0
  92. data/Slic3r/Linux/lib/std/Encode/MIME/Header/ISO_2022_JP.pm +131 -0
  93. data/Slic3r/Linux/lib/std/Encode/MIME/Name.pm +94 -0
  94. data/Slic3r/Linux/lib/std/Encode/Symbol.pm +44 -0
  95. data/Slic3r/Linux/lib/std/Encode/TW.pm +75 -0
  96. data/Slic3r/Linux/lib/std/Encode/Unicode.pm +270 -0
  97. data/Slic3r/Linux/lib/std/Encode/Unicode/UTF7.pm +130 -0
  98. data/Slic3r/Linux/lib/std/Errno.pm +282 -0
  99. data/Slic3r/Linux/lib/std/Fcntl.pm +186 -0
  100. data/Slic3r/Linux/lib/std/File/Basename.pm +402 -0
  101. data/Slic3r/Linux/lib/std/File/Glob.pm +437 -0
  102. data/Slic3r/Linux/lib/std/File/GlobMapper.pm +679 -0
  103. data/Slic3r/Linux/lib/std/File/Listing.pm +435 -0
  104. data/Slic3r/Linux/lib/std/File/Path.pm +981 -0
  105. data/Slic3r/Linux/lib/std/File/Spec.pm +339 -0
  106. data/Slic3r/Linux/lib/std/File/Spec/Cygwin.pm +160 -0
  107. data/Slic3r/Linux/lib/std/File/Spec/Epoc.pm +79 -0
  108. data/Slic3r/Linux/lib/std/File/Spec/Functions.pm +130 -0
  109. data/Slic3r/Linux/lib/std/File/Spec/Mac.pm +786 -0
  110. data/Slic3r/Linux/lib/std/File/Spec/OS2.pm +276 -0
  111. data/Slic3r/Linux/lib/std/File/Spec/Unix.pm +595 -0
  112. data/Slic3r/Linux/lib/std/File/Spec/VMS.pm +679 -0
  113. data/Slic3r/Linux/lib/std/File/Spec/Win32.pm +446 -0
  114. data/Slic3r/Linux/lib/std/File/Temp.pm +2452 -0
  115. data/Slic3r/Linux/lib/std/File/stat.pm +345 -0
  116. data/Slic3r/Linux/lib/std/FileHandle.pm +262 -0
  117. data/Slic3r/Linux/lib/std/Filter/Util/Call.pm +498 -0
  118. data/Slic3r/Linux/lib/std/FindBin.pm +209 -0
  119. data/Slic3r/Linux/lib/std/Getopt/Long.pm +2693 -0
  120. data/Slic3r/Linux/lib/std/Growl/GNTP.pm +595 -0
  121. data/Slic3r/Linux/lib/std/HTML/Entities.pm +483 -0
  122. data/Slic3r/Linux/lib/std/HTML/HeadParser.pm +310 -0
  123. data/Slic3r/Linux/lib/std/HTML/Parser.pm +1240 -0
  124. data/Slic3r/Linux/lib/std/HTTP/Config.pm +436 -0
  125. data/Slic3r/Linux/lib/std/HTTP/Cookies.pm +781 -0
  126. data/Slic3r/Linux/lib/std/HTTP/Cookies/Netscape.pm +114 -0
  127. data/Slic3r/Linux/lib/std/HTTP/Date.pm +388 -0
  128. data/Slic3r/Linux/lib/std/HTTP/Headers.pm +849 -0
  129. data/Slic3r/Linux/lib/std/HTTP/Headers/Util.pm +199 -0
  130. data/Slic3r/Linux/lib/std/HTTP/Message.pm +1107 -0
  131. data/Slic3r/Linux/lib/std/HTTP/Negotiate.pm +528 -0
  132. data/Slic3r/Linux/lib/std/HTTP/Request.pm +242 -0
  133. data/Slic3r/Linux/lib/std/HTTP/Request/Common.pm +514 -0
  134. data/Slic3r/Linux/lib/std/HTTP/Response.pm +638 -0
  135. data/Slic3r/Linux/lib/std/HTTP/Status.pm +267 -0
  136. data/Slic3r/Linux/lib/std/I18N/Langinfo.pm +191 -0
  137. data/Slic3r/Linux/lib/std/IO.pm +68 -0
  138. data/Slic3r/Linux/lib/std/IO/Compress/Adapter/Bzip2.pm +162 -0
  139. data/Slic3r/Linux/lib/std/IO/Compress/Adapter/Deflate.pm +165 -0
  140. data/Slic3r/Linux/lib/std/IO/Compress/Base.pm +981 -0
  141. data/Slic3r/Linux/lib/std/IO/Compress/Base/Common.pm +956 -0
  142. data/Slic3r/Linux/lib/std/IO/Compress/Bzip2.pm +758 -0
  143. data/Slic3r/Linux/lib/std/IO/Compress/Deflate.pm +930 -0
  144. data/Slic3r/Linux/lib/std/IO/Compress/Gzip.pm +1242 -0
  145. data/Slic3r/Linux/lib/std/IO/Compress/Gzip/Constants.pm +148 -0
  146. data/Slic3r/Linux/lib/std/IO/Compress/RawDeflate.pm +1017 -0
  147. data/Slic3r/Linux/lib/std/IO/Compress/Zlib/Constants.pm +77 -0
  148. data/Slic3r/Linux/lib/std/IO/Compress/Zlib/Extra.pm +198 -0
  149. data/Slic3r/Linux/lib/std/IO/Dir.pm +248 -0
  150. data/Slic3r/Linux/lib/std/IO/File.pm +204 -0
  151. data/Slic3r/Linux/lib/std/IO/Handle.pm +646 -0
  152. data/Slic3r/Linux/lib/std/IO/Pipe.pm +257 -0
  153. data/Slic3r/Linux/lib/std/IO/Seekable.pm +128 -0
  154. data/Slic3r/Linux/lib/std/IO/Select.pm +387 -0
  155. data/Slic3r/Linux/lib/std/IO/Socket.pm +540 -0
  156. data/Slic3r/Linux/lib/std/IO/Socket/INET.pm +464 -0
  157. data/Slic3r/Linux/lib/std/IO/Socket/SSL.pm +2456 -0
  158. data/Slic3r/Linux/lib/std/IO/Socket/UNIX.pm +143 -0
  159. data/Slic3r/Linux/lib/std/IO/Uncompress/Adapter/Bunzip2.pm +112 -0
  160. data/Slic3r/Linux/lib/std/IO/Uncompress/Adapter/Inflate.pm +158 -0
  161. data/Slic3r/Linux/lib/std/IO/Uncompress/Base.pm +1483 -0
  162. data/Slic3r/Linux/lib/std/IO/Uncompress/Bunzip2.pm +858 -0
  163. data/Slic3r/Linux/lib/std/IO/Uncompress/Gunzip.pm +1111 -0
  164. data/Slic3r/Linux/lib/std/IO/Uncompress/Inflate.pm +982 -0
  165. data/Slic3r/Linux/lib/std/IO/Uncompress/RawInflate.pm +1110 -0
  166. data/Slic3r/Linux/lib/std/Import/Into.pm +289 -0
  167. data/Slic3r/Linux/lib/std/LWP.pm +667 -0
  168. data/Slic3r/Linux/lib/std/LWP/Authen/Basic.pm +65 -0
  169. data/Slic3r/Linux/lib/std/LWP/Authen/Digest.pm +68 -0
  170. data/Slic3r/Linux/lib/std/LWP/Authen/Ntlm.pm +180 -0
  171. data/Slic3r/Linux/lib/std/LWP/ConnCache.pm +313 -0
  172. data/Slic3r/Linux/lib/std/LWP/MediaTypes.pm +280 -0
  173. data/Slic3r/Linux/lib/std/LWP/MemberMixin.pm +44 -0
  174. data/Slic3r/Linux/lib/std/LWP/Protocol.pm +291 -0
  175. data/Slic3r/Linux/lib/std/LWP/Protocol/GHTTP.pm +73 -0
  176. data/Slic3r/Linux/lib/std/LWP/Protocol/cpan.pm +72 -0
  177. data/Slic3r/Linux/lib/std/LWP/Protocol/data.pm +52 -0
  178. data/Slic3r/Linux/lib/std/LWP/Protocol/file.pm +146 -0
  179. data/Slic3r/Linux/lib/std/LWP/Protocol/ftp.pm +543 -0
  180. data/Slic3r/Linux/lib/std/LWP/Protocol/gopher.pm +213 -0
  181. data/Slic3r/Linux/lib/std/LWP/Protocol/http.pm +501 -0
  182. data/Slic3r/Linux/lib/std/LWP/Protocol/https.pm +132 -0
  183. data/Slic3r/Linux/lib/std/LWP/Protocol/loopback.pm +26 -0
  184. data/Slic3r/Linux/lib/std/LWP/Protocol/mailto.pm +183 -0
  185. data/Slic3r/Linux/lib/std/LWP/Protocol/nntp.pm +145 -0
  186. data/Slic3r/Linux/lib/std/LWP/Protocol/nogo.pm +24 -0
  187. data/Slic3r/Linux/lib/std/LWP/UserAgent.pm +1859 -0
  188. data/Slic3r/Linux/lib/std/List/Util.pm +433 -0
  189. data/Slic3r/Linux/lib/std/MIME/Base64.pm +188 -0
  190. data/Slic3r/Linux/lib/std/MIME/QuotedPrint.pm +114 -0
  191. data/Slic3r/Linux/lib/std/Mail/Address.pm +273 -0
  192. data/Slic3r/Linux/lib/std/Mail/Header.pm +637 -0
  193. data/Slic3r/Linux/lib/std/Mail/Internet.pm +546 -0
  194. data/Slic3r/Linux/lib/std/Mail/Mailer.pm +215 -0
  195. data/Slic3r/Linux/lib/std/Mail/Util.pm +149 -0
  196. data/Slic3r/Linux/lib/std/Math/BigFloat.pm +4493 -0
  197. data/Slic3r/Linux/lib/std/Math/BigFloat/Trace.pm +58 -0
  198. data/Slic3r/Linux/lib/std/Math/BigInt.pm +5284 -0
  199. data/Slic3r/Linux/lib/std/Math/BigInt/Calc.pm +2970 -0
  200. data/Slic3r/Linux/lib/std/Math/BigInt/CalcEmu.pm +329 -0
  201. data/Slic3r/Linux/lib/std/Math/BigInt/FastCalc.pm +112 -0
  202. data/Slic3r/Linux/lib/std/Math/BigInt/Trace.pm +47 -0
  203. data/Slic3r/Linux/lib/std/Math/Complex.pm +2093 -0
  204. data/Slic3r/Linux/lib/std/Math/Libm.pm +199 -0
  205. data/Slic3r/Linux/lib/std/Math/PlanePath.pm +2211 -0
  206. data/Slic3r/Linux/lib/std/Math/PlanePath/ArchimedeanChords.pm +686 -0
  207. data/Slic3r/Linux/lib/std/Math/PlanePath/Base/Digits.pm +389 -0
  208. data/Slic3r/Linux/lib/std/Math/PlanePath/Base/Generic.pm +242 -0
  209. data/Slic3r/Linux/lib/std/Math/PlanePath/Base/NSEW.pm +114 -0
  210. data/Slic3r/Linux/lib/std/Math/PlanePath/Flowsnake.pm +886 -0
  211. data/Slic3r/Linux/lib/std/Math/PlanePath/FlowsnakeCentres.pm +1018 -0
  212. data/Slic3r/Linux/lib/std/Math/PlanePath/HilbertCurve.pm +772 -0
  213. data/Slic3r/Linux/lib/std/Math/PlanePath/MultipleRings.pm +1715 -0
  214. data/Slic3r/Linux/lib/std/Math/PlanePath/OctagramSpiral.pm +469 -0
  215. data/Slic3r/Linux/lib/std/Math/PlanePath/SacksSpiral.pm +440 -0
  216. data/Slic3r/Linux/lib/std/Math/Trig.pm +768 -0
  217. data/Slic3r/Linux/lib/std/Method/Generate/Accessor.pm +652 -0
  218. data/Slic3r/Linux/lib/std/Method/Generate/BuildAll.pm +33 -0
  219. data/Slic3r/Linux/lib/std/Method/Generate/Constructor.pm +221 -0
  220. data/Slic3r/Linux/lib/std/Method/Generate/DemolishAll.pm +48 -0
  221. data/Slic3r/Linux/lib/std/Module/Runtime.pm +494 -0
  222. data/Slic3r/Linux/lib/std/Moo.pm +989 -0
  223. data/Slic3r/Linux/lib/std/Moo/HandleMoose.pm +210 -0
  224. data/Slic3r/Linux/lib/std/Moo/HandleMoose/FakeMetaClass.pm +21 -0
  225. data/Slic3r/Linux/lib/std/Moo/HandleMoose/_TypeMap.pm +72 -0
  226. data/Slic3r/Linux/lib/std/Moo/Object.pm +80 -0
  227. data/Slic3r/Linux/lib/std/Moo/Role.pm +475 -0
  228. data/Slic3r/Linux/lib/std/Moo/_Utils.pm +124 -0
  229. data/Slic3r/Linux/lib/std/Moo/_mro.pm +10 -0
  230. data/Slic3r/Linux/lib/std/Moo/sification.pm +22 -0
  231. data/Slic3r/Linux/lib/std/Mozilla/CA.pm +99 -0
  232. data/Slic3r/Linux/lib/std/Mozilla/CA/cacert.pem +3366 -0
  233. data/Slic3r/Linux/lib/std/Net/Cmd.pm +783 -0
  234. data/Slic3r/Linux/lib/std/Net/Config.pm +312 -0
  235. data/Slic3r/Linux/lib/std/Net/Domain.pm +347 -0
  236. data/Slic3r/Linux/lib/std/Net/FTP.pm +1829 -0
  237. data/Slic3r/Linux/lib/std/Net/FTP/A.pm +111 -0
  238. data/Slic3r/Linux/lib/std/Net/FTP/E.pm +8 -0
  239. data/Slic3r/Linux/lib/std/Net/FTP/I.pm +80 -0
  240. data/Slic3r/Linux/lib/std/Net/FTP/L.pm +8 -0
  241. data/Slic3r/Linux/lib/std/Net/FTP/dataconn.pm +124 -0
  242. data/Slic3r/Linux/lib/std/Net/HTTP.pm +279 -0
  243. data/Slic3r/Linux/lib/std/Net/HTTP/Methods.pm +593 -0
  244. data/Slic3r/Linux/lib/std/Net/HTTPS.pm +110 -0
  245. data/Slic3r/Linux/lib/std/Net/NNTP.pm +1140 -0
  246. data/Slic3r/Linux/lib/std/Net/Netrc.pm +325 -0
  247. data/Slic3r/Linux/lib/std/Net/SMTP.pm +867 -0
  248. data/Slic3r/Linux/lib/std/Net/SSL.pm +639 -0
  249. data/Slic3r/Linux/lib/std/Net/SSLeay.pm +2692 -0
  250. data/Slic3r/Linux/lib/std/OpenGL.pm +6288 -0
  251. data/Slic3r/Linux/lib/std/POSIX.pm +1037 -0
  252. data/Slic3r/Linux/lib/std/Params/Validate/XS.pm +51 -0
  253. data/Slic3r/Linux/lib/std/PerlIO.pm +332 -0
  254. data/Slic3r/Linux/lib/std/PerlIO/encoding.pm +53 -0
  255. data/Slic3r/Linux/lib/std/PerlIO/scalar.pm +41 -0
  256. data/Slic3r/Linux/lib/std/PerlIO/via.pm +243 -0
  257. data/Slic3r/Linux/lib/std/PerlIO/via/QuotedPrint.pm +94 -0
  258. data/Slic3r/Linux/lib/std/Pod/Escapes.pm +721 -0
  259. data/Slic3r/Linux/lib/std/Pod/InputObjects.pm +936 -0
  260. data/Slic3r/Linux/lib/std/Pod/Parser.pm +1829 -0
  261. data/Slic3r/Linux/lib/std/Pod/PlainText.pm +738 -0
  262. data/Slic3r/Linux/lib/std/Pod/Select.pm +746 -0
  263. data/Slic3r/Linux/lib/std/Pod/Simple.pm +1535 -0
  264. data/Slic3r/Linux/lib/std/Pod/Simple/BlackBox.pm +1930 -0
  265. data/Slic3r/Linux/lib/std/Pod/Simple/LinkSection.pm +174 -0
  266. data/Slic3r/Linux/lib/std/Pod/Simple/TiedOutFH.pm +105 -0
  267. data/Slic3r/Linux/lib/std/Pod/Simple/Transcode.pm +35 -0
  268. data/Slic3r/Linux/lib/std/Pod/Text.pm +886 -0
  269. data/Slic3r/Linux/lib/std/Pod/Usage.pm +730 -0
  270. data/Slic3r/Linux/lib/std/Role/Tiny.pm +698 -0
  271. data/Slic3r/Linux/lib/std/SVG.pm +341 -0
  272. data/Slic3r/Linux/lib/std/SVG/DOM.pm +804 -0
  273. data/Slic3r/Linux/lib/std/SVG/Element.pm +1649 -0
  274. data/Slic3r/Linux/lib/std/SVG/Extension.pm +458 -0
  275. data/Slic3r/Linux/lib/std/SVG/XML.pm +185 -0
  276. data/Slic3r/Linux/lib/std/Scalar/Util.pm +325 -0
  277. data/Slic3r/Linux/lib/std/SelectSaver.pm +54 -0
  278. data/Slic3r/Linux/lib/std/Slic3r.pm +180 -0
  279. data/Slic3r/Linux/lib/std/Slic3r/Build.pm +8 -0
  280. data/Slic3r/Linux/lib/std/Slic3r/Config.pm +456 -0
  281. data/Slic3r/Linux/lib/std/Slic3r/ExPolygon.pm +53 -0
  282. data/Slic3r/Linux/lib/std/Slic3r/Extruder.pm +52 -0
  283. data/Slic3r/Linux/lib/std/Slic3r/ExtrusionLoop.pm +12 -0
  284. data/Slic3r/Linux/lib/std/Slic3r/ExtrusionPath.pm +12 -0
  285. data/Slic3r/Linux/lib/std/Slic3r/ExtrusionPath/Collection.pm +5 -0
  286. data/Slic3r/Linux/lib/std/Slic3r/Fill.pm +259 -0
  287. data/Slic3r/Linux/lib/std/Slic3r/Fill/ArchimedeanChords.pm +7 -0
  288. data/Slic3r/Linux/lib/std/Slic3r/Fill/Base.pm +81 -0
  289. data/Slic3r/Linux/lib/std/Slic3r/Fill/Concentric.pm +65 -0
  290. data/Slic3r/Linux/lib/std/Slic3r/Fill/Flowsnake.pm +18 -0
  291. data/Slic3r/Linux/lib/std/Slic3r/Fill/HilbertCurve.pm +7 -0
  292. data/Slic3r/Linux/lib/std/Slic3r/Fill/Honeycomb.pm +128 -0
  293. data/Slic3r/Linux/lib/std/Slic3r/Fill/Line.pm +8 -0
  294. data/Slic3r/Linux/lib/std/Slic3r/Fill/OctagramSpiral.pm +9 -0
  295. data/Slic3r/Linux/lib/std/Slic3r/Fill/PlanePath.pm +61 -0
  296. data/Slic3r/Linux/lib/std/Slic3r/Fill/Rectilinear.pm +110 -0
  297. data/Slic3r/Linux/lib/std/Slic3r/Flow.pm +12 -0
  298. data/Slic3r/Linux/lib/std/Slic3r/Format/AMF.pm +122 -0
  299. data/Slic3r/Linux/lib/std/Slic3r/Format/AMF/Parser.pm +157 -0
  300. data/Slic3r/Linux/lib/std/Slic3r/Format/OBJ.pm +36 -0
  301. data/Slic3r/Linux/lib/std/Slic3r/Format/STL.pm +39 -0
  302. data/Slic3r/Linux/lib/std/Slic3r/GCode.pm +696 -0
  303. data/Slic3r/Linux/lib/std/Slic3r/GCode/ArcFitting.pm +242 -0
  304. data/Slic3r/Linux/lib/std/Slic3r/GCode/CoolingBuffer.pm +80 -0
  305. data/Slic3r/Linux/lib/std/Slic3r/GCode/Layer.pm +238 -0
  306. data/Slic3r/Linux/lib/std/Slic3r/GCode/MotionPlanner.pm +317 -0
  307. data/Slic3r/Linux/lib/std/Slic3r/GCode/PlaceholderParser.pm +83 -0
  308. data/Slic3r/Linux/lib/std/Slic3r/GCode/Reader.pm +72 -0
  309. data/Slic3r/Linux/lib/std/Slic3r/GCode/SpiralVase.pm +81 -0
  310. data/Slic3r/Linux/lib/std/Slic3r/GCode/VibrationLimit.pm +64 -0
  311. data/Slic3r/Linux/lib/std/Slic3r/GUI.pm +586 -0
  312. data/Slic3r/Linux/lib/std/Slic3r/GUI/AboutDialog.pm +110 -0
  313. data/Slic3r/Linux/lib/std/Slic3r/GUI/ConfigWizard.pm +373 -0
  314. data/Slic3r/Linux/lib/std/Slic3r/GUI/OptionsGroup.pm +504 -0
  315. data/Slic3r/Linux/lib/std/Slic3r/GUI/Plater.pm +1437 -0
  316. data/Slic3r/Linux/lib/std/Slic3r/GUI/Plater/ObjectCutDialog.pm +153 -0
  317. data/Slic3r/Linux/lib/std/Slic3r/GUI/Plater/ObjectPartsPanel.pm +268 -0
  318. data/Slic3r/Linux/lib/std/Slic3r/GUI/Plater/ObjectPreviewDialog.pm +30 -0
  319. data/Slic3r/Linux/lib/std/Slic3r/GUI/Plater/ObjectSettingsDialog.pm +175 -0
  320. data/Slic3r/Linux/lib/std/Slic3r/GUI/Plater/OverrideSettingsPanel.pm +137 -0
  321. data/Slic3r/Linux/lib/std/Slic3r/GUI/Preferences.pm +78 -0
  322. data/Slic3r/Linux/lib/std/Slic3r/GUI/PreviewCanvas.pm +506 -0
  323. data/Slic3r/Linux/lib/std/Slic3r/GUI/SimpleTab.pm +230 -0
  324. data/Slic3r/Linux/lib/std/Slic3r/GUI/SkeinPanel.pm +550 -0
  325. data/Slic3r/Linux/lib/std/Slic3r/GUI/Tab.pm +944 -0
  326. data/Slic3r/Linux/lib/std/Slic3r/Geometry.pm +753 -0
  327. data/Slic3r/Linux/lib/std/Slic3r/Geometry/Clipper.pm +13 -0
  328. data/Slic3r/Linux/lib/std/Slic3r/Layer.pm +76 -0
  329. data/Slic3r/Linux/lib/std/Slic3r/Layer/BridgeDetector.pm +277 -0
  330. data/Slic3r/Linux/lib/std/Slic3r/Layer/Region.pm +545 -0
  331. data/Slic3r/Linux/lib/std/Slic3r/Line.pm +21 -0
  332. data/Slic3r/Linux/lib/std/Slic3r/Model.pm +608 -0
  333. data/Slic3r/Linux/lib/std/Slic3r/Point.pm +10 -0
  334. data/Slic3r/Linux/lib/std/Slic3r/Polygon.pm +95 -0
  335. data/Slic3r/Linux/lib/std/Slic3r/Polyline.pm +40 -0
  336. data/Slic3r/Linux/lib/std/Slic3r/Print.pm +1146 -0
  337. data/Slic3r/Linux/lib/std/Slic3r/Print/Object.pm +1023 -0
  338. data/Slic3r/Linux/lib/std/Slic3r/Print/Region.pm +63 -0
  339. data/Slic3r/Linux/lib/std/Slic3r/Print/Simple.pm +108 -0
  340. data/Slic3r/Linux/lib/std/Slic3r/Print/State.pm +28 -0
  341. data/Slic3r/Linux/lib/std/Slic3r/Print/SupportMaterial.pm +862 -0
  342. data/Slic3r/Linux/lib/std/Slic3r/SVG.pm +142 -0
  343. data/Slic3r/Linux/lib/std/Slic3r/Surface.pm +15 -0
  344. data/Slic3r/Linux/lib/std/Slic3r/Test/SectionCut.pm +170 -0
  345. data/Slic3r/Linux/lib/std/Slic3r/TriangleMesh.pm +22 -0
  346. data/Slic3r/Linux/lib/std/Slic3r/XS.pm +205 -0
  347. data/Slic3r/Linux/lib/std/Socket.pm +804 -0
  348. data/Slic3r/Linux/lib/std/Storable.pm +1227 -0
  349. data/Slic3r/Linux/lib/std/Sub/Defer.pm +141 -0
  350. data/Slic3r/Linux/lib/std/Sub/Exporter/Progressive.pm +158 -0
  351. data/Slic3r/Linux/lib/std/Sub/Quote.pm +368 -0
  352. data/Slic3r/Linux/lib/std/Symbol.pm +170 -0
  353. data/Slic3r/Linux/lib/std/Term/Cap.pm +799 -0
  354. data/Slic3r/Linux/lib/std/Text/ParseWords.pm +294 -0
  355. data/Slic3r/Linux/lib/std/Thread/Queue.pm +476 -0
  356. data/Slic3r/Linux/lib/std/Tie/Handle.pm +201 -0
  357. data/Slic3r/Linux/lib/std/Tie/Hash.pm +268 -0
  358. data/Slic3r/Linux/lib/std/Tie/Hash/NamedCapture.pm +49 -0
  359. data/Slic3r/Linux/lib/std/Tie/StdHandle.pm +71 -0
  360. data/Slic3r/Linux/lib/std/Time/HiRes.pm +591 -0
  361. data/Slic3r/Linux/lib/std/Time/Local.pm +384 -0
  362. data/Slic3r/Linux/lib/std/Time/Zone.pm +291 -0
  363. data/Slic3r/Linux/lib/std/UNIVERSAL.pm +214 -0
  364. data/Slic3r/Linux/lib/std/URI.pm +1131 -0
  365. data/Slic3r/Linux/lib/std/URI/Escape.pm +208 -0
  366. data/Slic3r/Linux/lib/std/URI/Heuristic.pm +253 -0
  367. data/Slic3r/Linux/lib/std/URI/IRI.pm +44 -0
  368. data/Slic3r/Linux/lib/std/URI/QueryParam.pm +193 -0
  369. data/Slic3r/Linux/lib/std/URI/Split.pm +96 -0
  370. data/Slic3r/Linux/lib/std/URI/URL.pm +305 -0
  371. data/Slic3r/Linux/lib/std/URI/WithBase.pm +171 -0
  372. data/Slic3r/Linux/lib/std/URI/_foreign.pm +6 -0
  373. data/Slic3r/Linux/lib/std/URI/_generic.pm +252 -0
  374. data/Slic3r/Linux/lib/std/URI/_idna.pm +87 -0
  375. data/Slic3r/Linux/lib/std/URI/_ldap.pm +140 -0
  376. data/Slic3r/Linux/lib/std/URI/_login.pm +10 -0
  377. data/Slic3r/Linux/lib/std/URI/_punycode.pm +202 -0
  378. data/Slic3r/Linux/lib/std/URI/_query.pm +93 -0
  379. data/Slic3r/Linux/lib/std/URI/_segment.pm +20 -0
  380. data/Slic3r/Linux/lib/std/URI/_server.pm +162 -0
  381. data/Slic3r/Linux/lib/std/URI/_userpass.pm +51 -0
  382. data/Slic3r/Linux/lib/std/URI/data.pm +140 -0
  383. data/Slic3r/Linux/lib/std/URI/file.pm +328 -0
  384. data/Slic3r/Linux/lib/std/URI/file/Base.pm +80 -0
  385. data/Slic3r/Linux/lib/std/URI/file/FAT.pm +23 -0
  386. data/Slic3r/Linux/lib/std/URI/file/Mac.pm +120 -0
  387. data/Slic3r/Linux/lib/std/URI/file/OS2.pm +28 -0
  388. data/Slic3r/Linux/lib/std/URI/file/QNX.pm +18 -0
  389. data/Slic3r/Linux/lib/std/URI/file/Unix.pm +55 -0
  390. data/Slic3r/Linux/lib/std/URI/file/Win32.pm +84 -0
  391. data/Slic3r/Linux/lib/std/URI/ftp.pm +45 -0
  392. data/Slic3r/Linux/lib/std/URI/gopher.pm +94 -0
  393. data/Slic3r/Linux/lib/std/URI/http.pm +25 -0
  394. data/Slic3r/Linux/lib/std/URI/https.pm +9 -0
  395. data/Slic3r/Linux/lib/std/URI/ldap.pm +122 -0
  396. data/Slic3r/Linux/lib/std/URI/ldapi.pm +30 -0
  397. data/Slic3r/Linux/lib/std/URI/ldaps.pm +9 -0
  398. data/Slic3r/Linux/lib/std/URI/mailto.pm +72 -0
  399. data/Slic3r/Linux/lib/std/URI/mms.pm +8 -0
  400. data/Slic3r/Linux/lib/std/URI/news.pm +68 -0
  401. data/Slic3r/Linux/lib/std/URI/nntp.pm +6 -0
  402. data/Slic3r/Linux/lib/std/URI/pop.pm +68 -0
  403. data/Slic3r/Linux/lib/std/URI/rlogin.pm +7 -0
  404. data/Slic3r/Linux/lib/std/URI/rsync.pm +12 -0
  405. data/Slic3r/Linux/lib/std/URI/rtsp.pm +8 -0
  406. data/Slic3r/Linux/lib/std/URI/rtspu.pm +8 -0
  407. data/Slic3r/Linux/lib/std/URI/sip.pm +86 -0
  408. data/Slic3r/Linux/lib/std/URI/sips.pm +9 -0
  409. data/Slic3r/Linux/lib/std/URI/snews.pm +10 -0
  410. data/Slic3r/Linux/lib/std/URI/ssh.pm +11 -0
  411. data/Slic3r/Linux/lib/std/URI/telnet.pm +7 -0
  412. data/Slic3r/Linux/lib/std/URI/tn3270.pm +7 -0
  413. data/Slic3r/Linux/lib/std/URI/urn.pm +97 -0
  414. data/Slic3r/Linux/lib/std/URI/urn/isbn.pm +102 -0
  415. data/Slic3r/Linux/lib/std/URI/urn/oid.pm +18 -0
  416. data/Slic3r/Linux/lib/std/Wx.pm +394 -0
  417. data/Slic3r/Linux/lib/std/Wx/App.pm +54 -0
  418. data/Slic3r/Linux/lib/std/Wx/DND.pm +74 -0
  419. data/Slic3r/Linux/lib/std/Wx/DropSource.pm +33 -0
  420. data/Slic3r/Linux/lib/std/Wx/Event.pm +469 -0
  421. data/Slic3r/Linux/lib/std/Wx/GLCanvas.pm +84 -0
  422. data/Slic3r/Linux/lib/std/Wx/Grid.pm +128 -0
  423. data/Slic3r/Linux/lib/std/Wx/Html.pm +67 -0
  424. data/Slic3r/Linux/lib/std/Wx/Locale.pm +61 -0
  425. data/Slic3r/Linux/lib/std/Wx/Menu.pm +74 -0
  426. data/Slic3r/Linux/lib/std/Wx/Mini.pm +181 -0
  427. data/Slic3r/Linux/lib/std/Wx/Print.pm +56 -0
  428. data/Slic3r/Linux/lib/std/Wx/RadioBox.pm +53 -0
  429. data/Slic3r/Linux/lib/std/Wx/Timer.pm +56 -0
  430. data/Slic3r/Linux/lib/std/Wx/Wx_Exp.pm +9494 -0
  431. data/Slic3r/Linux/lib/std/XML/NamespaceSupport.pm +583 -0
  432. data/Slic3r/Linux/lib/std/XML/SAX.pm +379 -0
  433. data/Slic3r/Linux/lib/std/XML/SAX/Base.pm +3176 -0
  434. data/Slic3r/Linux/lib/std/XML/SAX/BuildSAXBase.pl +847 -0
  435. data/Slic3r/Linux/lib/std/XML/SAX/DocumentLocator.pm +134 -0
  436. data/Slic3r/Linux/lib/std/XML/SAX/Exception.pm +129 -0
  437. data/Slic3r/Linux/lib/std/XML/SAX/ExpatXS.pm +354 -0
  438. data/Slic3r/Linux/lib/std/XML/SAX/ExpatXS/Encoding.pm +184 -0
  439. data/Slic3r/Linux/lib/std/XML/SAX/ExpatXS/Preload.pm +288 -0
  440. data/Slic3r/Linux/lib/std/XML/SAX/ParserDetails.ini +16 -0
  441. data/Slic3r/Linux/lib/std/XML/SAX/ParserFactory.pm +230 -0
  442. data/Slic3r/Linux/lib/std/XML/SAX/PurePerl.pm +751 -0
  443. data/Slic3r/Linux/lib/std/XML/SAX/PurePerl/DTDDecls.pm +603 -0
  444. data/Slic3r/Linux/lib/std/XML/SAX/PurePerl/DebugHandler.pm +95 -0
  445. data/Slic3r/Linux/lib/std/XML/SAX/PurePerl/DocType.pm +180 -0
  446. data/Slic3r/Linux/lib/std/XML/SAX/PurePerl/EncodingDetect.pm +105 -0
  447. data/Slic3r/Linux/lib/std/XML/SAX/PurePerl/Exception.pm +67 -0
  448. data/Slic3r/Linux/lib/std/XML/SAX/PurePerl/NoUnicodeExt.pm +28 -0
  449. data/Slic3r/Linux/lib/std/XML/SAX/PurePerl/Productions.pm +147 -0
  450. data/Slic3r/Linux/lib/std/XML/SAX/PurePerl/Reader.pm +136 -0
  451. data/Slic3r/Linux/lib/std/XML/SAX/PurePerl/Reader/NoUnicodeExt.pm +25 -0
  452. data/Slic3r/Linux/lib/std/XML/SAX/PurePerl/Reader/Stream.pm +84 -0
  453. data/Slic3r/Linux/lib/std/XML/SAX/PurePerl/Reader/String.pm +78 -0
  454. data/Slic3r/Linux/lib/std/XML/SAX/PurePerl/Reader/URI.pm +57 -0
  455. data/Slic3r/Linux/lib/std/XML/SAX/PurePerl/Reader/UnicodeExt.pm +23 -0
  456. data/Slic3r/Linux/lib/std/XML/SAX/PurePerl/UnicodeExt.pm +22 -0
  457. data/Slic3r/Linux/lib/std/XML/SAX/PurePerl/XMLDecl.pm +129 -0
  458. data/Slic3r/Linux/lib/std/attributes.pm +490 -0
  459. data/Slic3r/Linux/lib/std/auto/B/B.so +0 -0
  460. data/Slic3r/Linux/lib/std/auto/Class/XSAccessor/XSAccessor.so +0 -0
  461. data/Slic3r/Linux/lib/std/auto/Compress/Raw/Bzip2/Bzip2.so +0 -0
  462. data/Slic3r/Linux/lib/std/auto/Compress/Raw/Bzip2/autosplit.ix +3 -0
  463. data/Slic3r/Linux/lib/std/auto/Compress/Raw/Zlib/Zlib.so +0 -0
  464. data/Slic3r/Linux/lib/std/auto/Compress/Raw/Zlib/autosplit.ix +3 -0
  465. data/Slic3r/Linux/lib/std/auto/Crypt/SSLeay/SSLeay.so +0 -0
  466. data/Slic3r/Linux/lib/std/auto/Cwd/Cwd.so +0 -0
  467. data/Slic3r/Linux/lib/std/auto/Data/Dumper/Dumper.so +0 -0
  468. data/Slic3r/Linux/lib/std/auto/Data/UUID/UUID.so +0 -0
  469. data/Slic3r/Linux/lib/std/auto/Digest/MD5/MD5.so +0 -0
  470. data/Slic3r/Linux/lib/std/auto/Digest/SHA/SHA.so +0 -0
  471. data/Slic3r/Linux/lib/std/auto/Encode/Byte/Byte.so +0 -0
  472. data/Slic3r/Linux/lib/std/auto/Encode/CN/CN.so +0 -0
  473. data/Slic3r/Linux/lib/std/auto/Encode/EBCDIC/EBCDIC.so +0 -0
  474. data/Slic3r/Linux/lib/std/auto/Encode/Encode.so +0 -0
  475. data/Slic3r/Linux/lib/std/auto/Encode/JP/JP.so +0 -0
  476. data/Slic3r/Linux/lib/std/auto/Encode/KR/KR.so +0 -0
  477. data/Slic3r/Linux/lib/std/auto/Encode/Symbol/Symbol.so +0 -0
  478. data/Slic3r/Linux/lib/std/auto/Encode/TW/TW.so +0 -0
  479. data/Slic3r/Linux/lib/std/auto/Encode/Unicode/Unicode.so +0 -0
  480. data/Slic3r/Linux/lib/std/auto/Fcntl/Fcntl.so +0 -0
  481. data/Slic3r/Linux/lib/std/auto/File/Glob/Glob.so +0 -0
  482. data/Slic3r/Linux/lib/std/auto/Filter/Util/Call/Call.so +0 -0
  483. data/Slic3r/Linux/lib/std/auto/HTML/Parser/Parser.so +0 -0
  484. data/Slic3r/Linux/lib/std/auto/I18N/Langinfo/Langinfo.so +0 -0
  485. data/Slic3r/Linux/lib/std/auto/IO/IO.so +0 -0
  486. data/Slic3r/Linux/lib/std/auto/List/Util/Util.so +0 -0
  487. data/Slic3r/Linux/lib/std/auto/MIME/Base64/Base64.so +0 -0
  488. data/Slic3r/Linux/lib/std/auto/Math/BigInt/FastCalc/FastCalc.so +0 -0
  489. data/Slic3r/Linux/lib/std/auto/Math/Libm/Libm.so +0 -0
  490. data/Slic3r/Linux/lib/std/auto/Math/Libm/autosplit.ix +3 -0
  491. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/SSLeay.so +0 -0
  492. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/autosplit.ix +78 -0
  493. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/debug_read.al +22 -0
  494. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/do_https.al +18 -0
  495. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/do_https2.al +13 -0
  496. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/do_https3.al +13 -0
  497. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/do_https4.al +12 -0
  498. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/do_httpx2.al +18 -0
  499. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/do_httpx3.al +43 -0
  500. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/do_httpx4.al +19 -0
  501. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/dump_peer_certificate.al +29 -0
  502. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/get_http.al +9 -0
  503. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/get_http3.al +9 -0
  504. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/get_http4.al +9 -0
  505. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/get_https.al +9 -0
  506. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/get_https3.al +9 -0
  507. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/get_https4.al +9 -0
  508. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/get_httpx.al +9 -0
  509. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/get_httpx3.al +9 -0
  510. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/get_httpx4.al +9 -0
  511. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/head_http.al +10 -0
  512. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/head_http3.al +10 -0
  513. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/head_http4.al +12 -0
  514. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/head_https.al +10 -0
  515. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/head_https3.al +10 -0
  516. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/head_https4.al +12 -0
  517. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/head_httpx.al +10 -0
  518. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/head_httpx3.al +10 -0
  519. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/head_httpx4.al +13 -0
  520. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/http_cat.al +34 -0
  521. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/https_cat.al +97 -0
  522. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/httpx_cat.al +18 -0
  523. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/make_form.al +25 -0
  524. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/make_headers.al +21 -0
  525. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/new_x_ctx.al +16 -0
  526. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/open_proxy_tcp_connection.al +31 -0
  527. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/open_tcp_connection.al +40 -0
  528. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/post_http.al +9 -0
  529. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/post_http3.al +9 -0
  530. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/post_http4.al +9 -0
  531. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/post_https.al +9 -0
  532. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/post_https3.al +9 -0
  533. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/post_https4.al +9 -0
  534. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/post_httpx.al +9 -0
  535. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/post_httpx3.al +9 -0
  536. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/post_httpx4.al +9 -0
  537. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/put_http.al +9 -0
  538. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/put_http3.al +9 -0
  539. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/put_http4.al +9 -0
  540. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/put_https.al +9 -0
  541. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/put_https3.al +9 -0
  542. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/put_https4.al +9 -0
  543. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/put_httpx.al +9 -0
  544. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/put_httpx3.al +9 -0
  545. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/put_httpx4.al +9 -0
  546. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/randomize.al +31 -0
  547. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/set_cert_and_key.al +23 -0
  548. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/set_proxy.al +16 -0
  549. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/set_server_cert_and_key.al +14 -0
  550. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/ssl_read_CRLF.al +10 -0
  551. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/ssl_read_all.al +28 -0
  552. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/ssl_read_until.al +95 -0
  553. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/ssl_write_CRLF.al +23 -0
  554. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/ssl_write_all.al +149 -0
  555. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/sslcat.al +99 -0
  556. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/tcp_read_CRLF.al +11 -0
  557. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/tcp_read_all.al +26 -0
  558. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/tcp_read_until.al +34 -0
  559. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/tcp_write_CRLF.al +23 -0
  560. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/tcp_write_all.al +36 -0
  561. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/tcpcat.al +37 -0
  562. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/tcpxcat.al +17 -0
  563. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/want_X509_lookup.al +15 -0
  564. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/want_nothing.al +16 -0
  565. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/want_read.al +9 -0
  566. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/want_write.al +9 -0
  567. data/Slic3r/Linux/lib/std/auto/OpenGL/OpenGL.so +0 -0
  568. data/Slic3r/Linux/lib/std/auto/OpenGL/autosplit.ix +3 -0
  569. data/Slic3r/Linux/lib/std/auto/POSIX/POSIX.so +0 -0
  570. data/Slic3r/Linux/lib/std/auto/POSIX/SigAction/flags.al +9 -0
  571. data/Slic3r/Linux/lib/std/auto/POSIX/SigAction/handler.al +9 -0
  572. data/Slic3r/Linux/lib/std/auto/POSIX/SigAction/mask.al +9 -0
  573. data/Slic3r/Linux/lib/std/auto/POSIX/SigAction/new.al +11 -0
  574. data/Slic3r/Linux/lib/std/auto/POSIX/SigAction/safe.al +13 -0
  575. data/Slic3r/Linux/lib/std/auto/POSIX/SigRt/CLEAR.al +9 -0
  576. data/Slic3r/Linux/lib/std/auto/POSIX/SigRt/DELETE.al +9 -0
  577. data/Slic3r/Linux/lib/std/auto/POSIX/SigRt/EXISTS.al +9 -0
  578. data/Slic3r/Linux/lib/std/auto/POSIX/SigRt/FETCH.al +12 -0
  579. data/Slic3r/Linux/lib/std/auto/POSIX/SigRt/SCALAR.al +9 -0
  580. data/Slic3r/Linux/lib/std/auto/POSIX/SigRt/STORE.al +9 -0
  581. data/Slic3r/Linux/lib/std/auto/POSIX/SigRt/_check.al +15 -0
  582. data/Slic3r/Linux/lib/std/auto/POSIX/SigRt/_croak.al +13 -0
  583. data/Slic3r/Linux/lib/std/auto/POSIX/SigRt/_exist.al +14 -0
  584. data/Slic3r/Linux/lib/std/auto/POSIX/SigRt/_getsig.al +17 -0
  585. data/Slic3r/Linux/lib/std/auto/POSIX/SigRt/_init.al +14 -0
  586. data/Slic3r/Linux/lib/std/auto/POSIX/SigRt/new.al +17 -0
  587. data/Slic3r/Linux/lib/std/auto/POSIX/abs.al +13 -0
  588. data/Slic3r/Linux/lib/std/auto/POSIX/alarm.al +13 -0
  589. data/Slic3r/Linux/lib/std/auto/POSIX/assert.al +15 -0
  590. data/Slic3r/Linux/lib/std/auto/POSIX/atan2.al +13 -0
  591. data/Slic3r/Linux/lib/std/auto/POSIX/atexit.al +12 -0
  592. data/Slic3r/Linux/lib/std/auto/POSIX/atof.al +12 -0
  593. data/Slic3r/Linux/lib/std/auto/POSIX/atoi.al +12 -0
  594. data/Slic3r/Linux/lib/std/auto/POSIX/atol.al +12 -0
  595. data/Slic3r/Linux/lib/std/auto/POSIX/autosplit.ix +173 -0
  596. data/Slic3r/Linux/lib/std/auto/POSIX/bsearch.al +12 -0
  597. data/Slic3r/Linux/lib/std/auto/POSIX/calloc.al +12 -0
  598. data/Slic3r/Linux/lib/std/auto/POSIX/chdir.al +13 -0
  599. data/Slic3r/Linux/lib/std/auto/POSIX/chmod.al +13 -0
  600. data/Slic3r/Linux/lib/std/auto/POSIX/chown.al +13 -0
  601. data/Slic3r/Linux/lib/std/auto/POSIX/clearerr.al +12 -0
  602. data/Slic3r/Linux/lib/std/auto/POSIX/closedir.al +13 -0
  603. data/Slic3r/Linux/lib/std/auto/POSIX/cos.al +13 -0
  604. data/Slic3r/Linux/lib/std/auto/POSIX/creat.al +13 -0
  605. data/Slic3r/Linux/lib/std/auto/POSIX/div.al +12 -0
  606. data/Slic3r/Linux/lib/std/auto/POSIX/errno.al +13 -0
  607. data/Slic3r/Linux/lib/std/auto/POSIX/execl.al +12 -0
  608. data/Slic3r/Linux/lib/std/auto/POSIX/execle.al +12 -0
  609. data/Slic3r/Linux/lib/std/auto/POSIX/execlp.al +12 -0
  610. data/Slic3r/Linux/lib/std/auto/POSIX/execv.al +12 -0
  611. data/Slic3r/Linux/lib/std/auto/POSIX/execve.al +12 -0
  612. data/Slic3r/Linux/lib/std/auto/POSIX/execvp.al +12 -0
  613. data/Slic3r/Linux/lib/std/auto/POSIX/exit.al +13 -0
  614. data/Slic3r/Linux/lib/std/auto/POSIX/exp.al +13 -0
  615. data/Slic3r/Linux/lib/std/auto/POSIX/fabs.al +13 -0
  616. data/Slic3r/Linux/lib/std/auto/POSIX/fclose.al +12 -0
  617. data/Slic3r/Linux/lib/std/auto/POSIX/fcntl.al +13 -0
  618. data/Slic3r/Linux/lib/std/auto/POSIX/fdopen.al +12 -0
  619. data/Slic3r/Linux/lib/std/auto/POSIX/feof.al +12 -0
  620. data/Slic3r/Linux/lib/std/auto/POSIX/ferror.al +12 -0
  621. data/Slic3r/Linux/lib/std/auto/POSIX/fflush.al +12 -0
  622. data/Slic3r/Linux/lib/std/auto/POSIX/fgetc.al +12 -0
  623. data/Slic3r/Linux/lib/std/auto/POSIX/fgetpos.al +12 -0
  624. data/Slic3r/Linux/lib/std/auto/POSIX/fgets.al +12 -0
  625. data/Slic3r/Linux/lib/std/auto/POSIX/fileno.al +12 -0
  626. data/Slic3r/Linux/lib/std/auto/POSIX/fopen.al +12 -0
  627. data/Slic3r/Linux/lib/std/auto/POSIX/fork.al +13 -0
  628. data/Slic3r/Linux/lib/std/auto/POSIX/fprintf.al +12 -0
  629. data/Slic3r/Linux/lib/std/auto/POSIX/fputc.al +12 -0
  630. data/Slic3r/Linux/lib/std/auto/POSIX/fputs.al +12 -0
  631. data/Slic3r/Linux/lib/std/auto/POSIX/fread.al +12 -0
  632. data/Slic3r/Linux/lib/std/auto/POSIX/free.al +12 -0
  633. data/Slic3r/Linux/lib/std/auto/POSIX/freopen.al +12 -0
  634. data/Slic3r/Linux/lib/std/auto/POSIX/fscanf.al +12 -0
  635. data/Slic3r/Linux/lib/std/auto/POSIX/fseek.al +12 -0
  636. data/Slic3r/Linux/lib/std/auto/POSIX/fsetpos.al +12 -0
  637. data/Slic3r/Linux/lib/std/auto/POSIX/fstat.al +17 -0
  638. data/Slic3r/Linux/lib/std/auto/POSIX/fsync.al +12 -0
  639. data/Slic3r/Linux/lib/std/auto/POSIX/ftell.al +12 -0
  640. data/Slic3r/Linux/lib/std/auto/POSIX/fwrite.al +12 -0
  641. data/Slic3r/Linux/lib/std/auto/POSIX/getc.al +13 -0
  642. data/Slic3r/Linux/lib/std/auto/POSIX/getchar.al +13 -0
  643. data/Slic3r/Linux/lib/std/auto/POSIX/getegid.al +13 -0
  644. data/Slic3r/Linux/lib/std/auto/POSIX/getenv.al +13 -0
  645. data/Slic3r/Linux/lib/std/auto/POSIX/geteuid.al +13 -0
  646. data/Slic3r/Linux/lib/std/auto/POSIX/getgid.al +13 -0
  647. data/Slic3r/Linux/lib/std/auto/POSIX/getgrgid.al +13 -0
  648. data/Slic3r/Linux/lib/std/auto/POSIX/getgrnam.al +13 -0
  649. data/Slic3r/Linux/lib/std/auto/POSIX/getgroups.al +14 -0
  650. data/Slic3r/Linux/lib/std/auto/POSIX/getlogin.al +13 -0
  651. data/Slic3r/Linux/lib/std/auto/POSIX/getpgrp.al +13 -0
  652. data/Slic3r/Linux/lib/std/auto/POSIX/getpid.al +13 -0
  653. data/Slic3r/Linux/lib/std/auto/POSIX/getppid.al +13 -0
  654. data/Slic3r/Linux/lib/std/auto/POSIX/getpwnam.al +13 -0
  655. data/Slic3r/Linux/lib/std/auto/POSIX/getpwuid.al +13 -0
  656. data/Slic3r/Linux/lib/std/auto/POSIX/gets.al +13 -0
  657. data/Slic3r/Linux/lib/std/auto/POSIX/getuid.al +13 -0
  658. data/Slic3r/Linux/lib/std/auto/POSIX/gmtime.al +13 -0
  659. data/Slic3r/Linux/lib/std/auto/POSIX/isatty.al +13 -0
  660. data/Slic3r/Linux/lib/std/auto/POSIX/kill.al +13 -0
  661. data/Slic3r/Linux/lib/std/auto/POSIX/labs.al +12 -0
  662. data/Slic3r/Linux/lib/std/auto/POSIX/ldiv.al +12 -0
  663. data/Slic3r/Linux/lib/std/auto/POSIX/link.al +13 -0
  664. data/Slic3r/Linux/lib/std/auto/POSIX/load_imports.al +231 -0
  665. data/Slic3r/Linux/lib/std/auto/POSIX/localtime.al +13 -0
  666. data/Slic3r/Linux/lib/std/auto/POSIX/log.al +13 -0
  667. data/Slic3r/Linux/lib/std/auto/POSIX/longjmp.al +12 -0
  668. data/Slic3r/Linux/lib/std/auto/POSIX/malloc.al +12 -0
  669. data/Slic3r/Linux/lib/std/auto/POSIX/memchr.al +12 -0
  670. data/Slic3r/Linux/lib/std/auto/POSIX/memcmp.al +12 -0
  671. data/Slic3r/Linux/lib/std/auto/POSIX/memcpy.al +12 -0
  672. data/Slic3r/Linux/lib/std/auto/POSIX/memmove.al +12 -0
  673. data/Slic3r/Linux/lib/std/auto/POSIX/memset.al +12 -0
  674. data/Slic3r/Linux/lib/std/auto/POSIX/mkdir.al +13 -0
  675. data/Slic3r/Linux/lib/std/auto/POSIX/offsetof.al +12 -0
  676. data/Slic3r/Linux/lib/std/auto/POSIX/opendir.al +16 -0
  677. data/Slic3r/Linux/lib/std/auto/POSIX/perror.al +13 -0
  678. data/Slic3r/Linux/lib/std/auto/POSIX/pow.al +13 -0
  679. data/Slic3r/Linux/lib/std/auto/POSIX/printf.al +13 -0
  680. data/Slic3r/Linux/lib/std/auto/POSIX/putc.al +12 -0
  681. data/Slic3r/Linux/lib/std/auto/POSIX/putchar.al +12 -0
  682. data/Slic3r/Linux/lib/std/auto/POSIX/puts.al +12 -0
  683. data/Slic3r/Linux/lib/std/auto/POSIX/qsort.al +12 -0
  684. data/Slic3r/Linux/lib/std/auto/POSIX/raise.al +13 -0
  685. data/Slic3r/Linux/lib/std/auto/POSIX/rand.al +12 -0
  686. data/Slic3r/Linux/lib/std/auto/POSIX/readdir.al +13 -0
  687. data/Slic3r/Linux/lib/std/auto/POSIX/realloc.al +12 -0
  688. data/Slic3r/Linux/lib/std/auto/POSIX/redef.al +13 -0
  689. data/Slic3r/Linux/lib/std/auto/POSIX/remove.al +13 -0
  690. data/Slic3r/Linux/lib/std/auto/POSIX/rename.al +13 -0
  691. data/Slic3r/Linux/lib/std/auto/POSIX/rewind.al +13 -0
  692. data/Slic3r/Linux/lib/std/auto/POSIX/rewinddir.al +13 -0
  693. data/Slic3r/Linux/lib/std/auto/POSIX/rmdir.al +13 -0
  694. data/Slic3r/Linux/lib/std/auto/POSIX/scanf.al +12 -0
  695. data/Slic3r/Linux/lib/std/auto/POSIX/setbuf.al +12 -0
  696. data/Slic3r/Linux/lib/std/auto/POSIX/setjmp.al +12 -0
  697. data/Slic3r/Linux/lib/std/auto/POSIX/setvbuf.al +12 -0
  698. data/Slic3r/Linux/lib/std/auto/POSIX/siglongjmp.al +12 -0
  699. data/Slic3r/Linux/lib/std/auto/POSIX/sigsetjmp.al +12 -0
  700. data/Slic3r/Linux/lib/std/auto/POSIX/sin.al +13 -0
  701. data/Slic3r/Linux/lib/std/auto/POSIX/sleep.al +13 -0
  702. data/Slic3r/Linux/lib/std/auto/POSIX/sprintf.al +13 -0
  703. data/Slic3r/Linux/lib/std/auto/POSIX/sqrt.al +13 -0
  704. data/Slic3r/Linux/lib/std/auto/POSIX/srand.al +12 -0
  705. data/Slic3r/Linux/lib/std/auto/POSIX/sscanf.al +12 -0
  706. data/Slic3r/Linux/lib/std/auto/POSIX/stat.al +13 -0
  707. data/Slic3r/Linux/lib/std/auto/POSIX/strcat.al +12 -0
  708. data/Slic3r/Linux/lib/std/auto/POSIX/strchr.al +12 -0
  709. data/Slic3r/Linux/lib/std/auto/POSIX/strcmp.al +12 -0
  710. data/Slic3r/Linux/lib/std/auto/POSIX/strcpy.al +12 -0
  711. data/Slic3r/Linux/lib/std/auto/POSIX/strcspn.al +12 -0
  712. data/Slic3r/Linux/lib/std/auto/POSIX/strerror.al +14 -0
  713. data/Slic3r/Linux/lib/std/auto/POSIX/strlen.al +12 -0
  714. data/Slic3r/Linux/lib/std/auto/POSIX/strncat.al +12 -0
  715. data/Slic3r/Linux/lib/std/auto/POSIX/strncmp.al +12 -0
  716. data/Slic3r/Linux/lib/std/auto/POSIX/strncpy.al +12 -0
  717. data/Slic3r/Linux/lib/std/auto/POSIX/strpbrk.al +12 -0
  718. data/Slic3r/Linux/lib/std/auto/POSIX/strrchr.al +12 -0
  719. data/Slic3r/Linux/lib/std/auto/POSIX/strspn.al +12 -0
  720. data/Slic3r/Linux/lib/std/auto/POSIX/strstr.al +13 -0
  721. data/Slic3r/Linux/lib/std/auto/POSIX/strtok.al +12 -0
  722. data/Slic3r/Linux/lib/std/auto/POSIX/system.al +13 -0
  723. data/Slic3r/Linux/lib/std/auto/POSIX/time.al +13 -0
  724. data/Slic3r/Linux/lib/std/auto/POSIX/tmpfile.al +12 -0
  725. data/Slic3r/Linux/lib/std/auto/POSIX/tolower.al +13 -0
  726. data/Slic3r/Linux/lib/std/auto/POSIX/toupper.al +13 -0
  727. data/Slic3r/Linux/lib/std/auto/POSIX/umask.al +13 -0
  728. data/Slic3r/Linux/lib/std/auto/POSIX/ungetc.al +12 -0
  729. data/Slic3r/Linux/lib/std/auto/POSIX/unimpl.al +14 -0
  730. data/Slic3r/Linux/lib/std/auto/POSIX/unlink.al +13 -0
  731. data/Slic3r/Linux/lib/std/auto/POSIX/usage.al +13 -0
  732. data/Slic3r/Linux/lib/std/auto/POSIX/utime.al +13 -0
  733. data/Slic3r/Linux/lib/std/auto/POSIX/vfprintf.al +12 -0
  734. data/Slic3r/Linux/lib/std/auto/POSIX/vprintf.al +12 -0
  735. data/Slic3r/Linux/lib/std/auto/POSIX/vsprintf.al +12 -0
  736. data/Slic3r/Linux/lib/std/auto/POSIX/wait.al +13 -0
  737. data/Slic3r/Linux/lib/std/auto/POSIX/waitpid.al +13 -0
  738. data/Slic3r/Linux/lib/std/auto/Params/Validate/XS/XS.so +0 -0
  739. data/Slic3r/Linux/lib/std/auto/PerlIO/encoding/encoding.so +0 -0
  740. data/Slic3r/Linux/lib/std/auto/PerlIO/scalar/scalar.so +0 -0
  741. data/Slic3r/Linux/lib/std/auto/PerlIO/via/via.so +0 -0
  742. data/Slic3r/Linux/lib/std/auto/Slic3r/XS/XS.so +0 -0
  743. data/Slic3r/Linux/lib/std/auto/Socket/Socket.so +0 -0
  744. data/Slic3r/Linux/lib/std/auto/Storable/Storable.so +0 -0
  745. data/Slic3r/Linux/lib/std/auto/Tie/Hash/NamedCapture/NamedCapture.so +0 -0
  746. data/Slic3r/Linux/lib/std/auto/Time/HiRes/HiRes.so +0 -0
  747. data/Slic3r/Linux/lib/std/auto/Wx/DND/DND.so +0 -0
  748. data/Slic3r/Linux/lib/std/auto/Wx/GLCanvas/GLCanvas.so +0 -0
  749. data/Slic3r/Linux/lib/std/auto/Wx/Grid/Grid.so +0 -0
  750. data/Slic3r/Linux/lib/std/auto/Wx/Html/Html.so +0 -0
  751. data/Slic3r/Linux/lib/std/auto/Wx/Print/Print.so +0 -0
  752. data/Slic3r/Linux/lib/std/auto/Wx/Wx.so +0 -0
  753. data/Slic3r/Linux/lib/std/auto/XML/SAX/ExpatXS/ExpatXS.so +0 -0
  754. data/Slic3r/Linux/lib/std/auto/attributes/attributes.so +0 -0
  755. data/Slic3r/Linux/lib/std/auto/mro/mro.so +0 -0
  756. data/Slic3r/Linux/lib/std/auto/re/re.so +0 -0
  757. data/Slic3r/Linux/lib/std/auto/threads/shared/shared.so +0 -0
  758. data/Slic3r/Linux/lib/std/auto/threads/threads.so +0 -0
  759. data/Slic3r/Linux/lib/std/base.pm +265 -0
  760. data/Slic3r/Linux/lib/std/bytes.pm +100 -0
  761. data/Slic3r/Linux/lib/std/bytes_heavy.pl +40 -0
  762. data/Slic3r/Linux/lib/std/constant.pm +397 -0
  763. data/Slic3r/Linux/lib/std/constant/defer.pm +441 -0
  764. data/Slic3r/Linux/lib/std/encoding.pm +669 -0
  765. data/Slic3r/Linux/lib/std/encoding/warnings.pm +239 -0
  766. data/Slic3r/Linux/lib/std/feature.pm +249 -0
  767. data/Slic3r/Linux/lib/std/filetest.pm +117 -0
  768. data/Slic3r/Linux/lib/std/integer.pm +93 -0
  769. data/Slic3r/Linux/lib/std/less.pm +158 -0
  770. data/Slic3r/Linux/lib/std/mro.pm +363 -0
  771. data/Slic3r/Linux/lib/std/overload.pm +1701 -0
  772. data/Slic3r/Linux/lib/std/parent.pm +136 -0
  773. data/Slic3r/Linux/lib/std/re.pm +604 -0
  774. data/Slic3r/Linux/lib/std/slic3r.pl +491 -0
  775. data/Slic3r/Linux/lib/std/sort.pm +196 -0
  776. data/Slic3r/Linux/lib/std/strictures.pm +296 -0
  777. data/Slic3r/Linux/lib/std/threads.pm +1115 -0
  778. data/Slic3r/Linux/lib/std/threads/shared.pm +616 -0
  779. data/Slic3r/Linux/lib/std/unicore/Heavy.pl +3261 -0
  780. data/Slic3r/Linux/lib/std/unicore/To/Age.pl +1036 -0
  781. data/Slic3r/Linux/lib/std/unicore/To/Bc.pl +555 -0
  782. data/Slic3r/Linux/lib/std/unicore/To/Bmg.pl +375 -0
  783. data/Slic3r/Linux/lib/std/unicore/To/Digit.pl +433 -0
  784. data/Slic3r/Linux/lib/std/unicore/To/Dt.pl +759 -0
  785. data/Slic3r/Linux/lib/std/unicore/To/Ea.pl +245 -0
  786. data/Slic3r/Linux/lib/std/unicore/To/Fold.pl +1177 -0
  787. data/Slic3r/Linux/lib/std/unicore/To/GCB.pl +1177 -0
  788. data/Slic3r/Linux/lib/std/unicore/To/Gc.pl +2639 -0
  789. data/Slic3r/Linux/lib/std/unicore/To/Hst.pl +822 -0
  790. data/Slic3r/Linux/lib/std/unicore/To/Jg.pl +144 -0
  791. data/Slic3r/Linux/lib/std/unicore/To/Jt.pl +292 -0
  792. data/Slic3r/Linux/lib/std/unicore/To/Lb.pl +2195 -0
  793. data/Slic3r/Linux/lib/std/unicore/To/Lower.pl +1061 -0
  794. data/Slic3r/Linux/lib/std/unicore/To/NFCQC.pl +126 -0
  795. data/Slic3r/Linux/lib/std/unicore/To/NFDQC.pl +245 -0
  796. data/Slic3r/Linux/lib/std/unicore/To/NFKCCF.pl +9815 -0
  797. data/Slic3r/Linux/lib/std/unicore/To/NFKCQC.pl +265 -0
  798. data/Slic3r/Linux/lib/std/unicore/To/NFKDQC.pl +367 -0
  799. data/Slic3r/Linux/lib/std/unicore/To/Na1.pl +1996 -0
  800. data/Slic3r/Linux/lib/std/unicore/To/Nt.pl +198 -0
  801. data/Slic3r/Linux/lib/std/unicore/To/Nv.pl +1157 -0
  802. data/Slic3r/Linux/lib/std/unicore/To/SB.pl +1958 -0
  803. data/Slic3r/Linux/lib/std/unicore/To/Sc.pl +702 -0
  804. data/Slic3r/Linux/lib/std/unicore/To/Title.pl +1117 -0
  805. data/Slic3r/Linux/lib/std/unicore/To/Upper.pl +1144 -0
  806. data/Slic3r/Linux/lib/std/unicore/To/WB.pl +691 -0
  807. data/Slic3r/Linux/lib/std/unicore/To/_slc.pl +46 -0
  808. data/Slic3r/Linux/lib/std/unicore/To/_stc.pl +45 -0
  809. data/Slic3r/Linux/lib/std/unicore/To/_suc.pl +45 -0
  810. data/Slic3r/Linux/lib/std/unicore/lib/AHex/N.pl +16 -0
  811. data/Slic3r/Linux/lib/std/unicore/lib/AHex/Y.pl +15 -0
  812. data/Slic3r/Linux/lib/std/unicore/lib/Age/1_1.pl +300 -0
  813. data/Slic3r/Linux/lib/std/unicore/lib/Age/2_0.pl +41 -0
  814. data/Slic3r/Linux/lib/std/unicore/lib/Age/2_1.pl +14 -0
  815. data/Slic3r/Linux/lib/std/unicore/lib/Age/3_0.pl +133 -0
  816. data/Slic3r/Linux/lib/std/unicore/lib/Age/3_1.pl +48 -0
  817. data/Slic3r/Linux/lib/std/unicore/lib/Age/3_2.pl +71 -0
  818. data/Slic3r/Linux/lib/std/unicore/lib/Age/4_0.pl +89 -0
  819. data/Slic3r/Linux/lib/std/unicore/lib/Age/4_1.pl +98 -0
  820. data/Slic3r/Linux/lib/std/unicore/lib/Age/5_0.pl +47 -0
  821. data/Slic3r/Linux/lib/std/unicore/lib/Age/5_1.pl +101 -0
  822. data/Slic3r/Linux/lib/std/unicore/lib/Age/5_2.pl +102 -0
  823. data/Slic3r/Linux/lib/std/unicore/lib/Age/6_0.pl +118 -0
  824. data/Slic3r/Linux/lib/std/unicore/lib/Age/Unassign.pl +522 -0
  825. data/Slic3r/Linux/lib/std/unicore/lib/Alpha/N.pl +499 -0
  826. data/Slic3r/Linux/lib/std/unicore/lib/Alpha/Y.pl +498 -0
  827. data/Slic3r/Linux/lib/std/unicore/lib/Bc/AL.pl +30 -0
  828. data/Slic3r/Linux/lib/std/unicore/lib/Bc/AN.pl +17 -0
  829. data/Slic3r/Linux/lib/std/unicore/lib/Bc/B.pl +17 -0
  830. data/Slic3r/Linux/lib/std/unicore/lib/Bc/BN.pl +41 -0
  831. data/Slic3r/Linux/lib/std/unicore/lib/Bc/CS.pl +25 -0
  832. data/Slic3r/Linux/lib/std/unicore/lib/Bc/EN.pl +23 -0
  833. data/Slic3r/Linux/lib/std/unicore/lib/Bc/ES.pl +21 -0
  834. data/Slic3r/Linux/lib/std/unicore/lib/Bc/ET.pl +33 -0
  835. data/Slic3r/Linux/lib/std/unicore/lib/Bc/L.pl +358 -0
  836. data/Slic3r/Linux/lib/std/unicore/lib/Bc/LRE.pl +13 -0
  837. data/Slic3r/Linux/lib/std/unicore/lib/Bc/LRO.pl +13 -0
  838. data/Slic3r/Linux/lib/std/unicore/lib/Bc/NSM.pl +211 -0
  839. data/Slic3r/Linux/lib/std/unicore/lib/Bc/ON.pl +195 -0
  840. data/Slic3r/Linux/lib/std/unicore/lib/Bc/PDF.pl +13 -0
  841. data/Slic3r/Linux/lib/std/unicore/lib/Bc/R.pl +40 -0
  842. data/Slic3r/Linux/lib/std/unicore/lib/Bc/RLE.pl +13 -0
  843. data/Slic3r/Linux/lib/std/unicore/lib/Bc/RLO.pl +13 -0
  844. data/Slic3r/Linux/lib/std/unicore/lib/Bc/S.pl +15 -0
  845. data/Slic3r/Linux/lib/std/unicore/lib/Bc/WS.pl +20 -0
  846. data/Slic3r/Linux/lib/std/unicore/lib/BidiC/N.pl +15 -0
  847. data/Slic3r/Linux/lib/std/unicore/lib/BidiC/Y.pl +14 -0
  848. data/Slic3r/Linux/lib/std/unicore/lib/BidiM/N.pl +124 -0
  849. data/Slic3r/Linux/lib/std/unicore/lib/BidiM/Y.pl +123 -0
  850. data/Slic3r/Linux/lib/std/unicore/lib/Blk/ASCII.pl +13 -0
  851. data/Slic3r/Linux/lib/std/unicore/lib/Blk/AegeanNu.pl +13 -0
  852. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Alchemic.pl +13 -0
  853. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Alphabet.pl +13 -0
  854. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Ancient2.pl +13 -0
  855. data/Slic3r/Linux/lib/std/unicore/lib/Blk/AncientG.pl +13 -0
  856. data/Slic3r/Linux/lib/std/unicore/lib/Blk/AncientS.pl +13 -0
  857. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Arabic.pl +13 -0
  858. data/Slic3r/Linux/lib/std/unicore/lib/Blk/ArabicP2.pl +13 -0
  859. data/Slic3r/Linux/lib/std/unicore/lib/Blk/ArabicPr.pl +13 -0
  860. data/Slic3r/Linux/lib/std/unicore/lib/Blk/ArabicSu.pl +13 -0
  861. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Armenian.pl +13 -0
  862. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Arrows.pl +13 -0
  863. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Avestan.pl +13 -0
  864. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Balinese.pl +13 -0
  865. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Bamum.pl +13 -0
  866. data/Slic3r/Linux/lib/std/unicore/lib/Blk/BamumSup.pl +13 -0
  867. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Batak.pl +13 -0
  868. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Bengali.pl +13 -0
  869. data/Slic3r/Linux/lib/std/unicore/lib/Blk/BlockEle.pl +13 -0
  870. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Bopomof2.pl +13 -0
  871. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Bopomofo.pl +13 -0
  872. data/Slic3r/Linux/lib/std/unicore/lib/Blk/BoxDrawi.pl +13 -0
  873. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Brahmi.pl +13 -0
  874. data/Slic3r/Linux/lib/std/unicore/lib/Blk/BrailleP.pl +13 -0
  875. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Buginese.pl +13 -0
  876. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Buhid.pl +13 -0
  877. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Byzantin.pl +13 -0
  878. data/Slic3r/Linux/lib/std/unicore/lib/Blk/CJKComp2.pl +13 -0
  879. data/Slic3r/Linux/lib/std/unicore/lib/Blk/CJKComp3.pl +13 -0
  880. data/Slic3r/Linux/lib/std/unicore/lib/Blk/CJKComp4.pl +13 -0
  881. data/Slic3r/Linux/lib/std/unicore/lib/Blk/CJKCompa.pl +13 -0
  882. data/Slic3r/Linux/lib/std/unicore/lib/Blk/CJKRadic.pl +13 -0
  883. data/Slic3r/Linux/lib/std/unicore/lib/Blk/CJKStrok.pl +13 -0
  884. data/Slic3r/Linux/lib/std/unicore/lib/Blk/CJKSymbo.pl +13 -0
  885. data/Slic3r/Linux/lib/std/unicore/lib/Blk/CJKUnif2.pl +13 -0
  886. data/Slic3r/Linux/lib/std/unicore/lib/Blk/CJKUnif3.pl +13 -0
  887. data/Slic3r/Linux/lib/std/unicore/lib/Blk/CJKUnif4.pl +13 -0
  888. data/Slic3r/Linux/lib/std/unicore/lib/Blk/CJKUnif5.pl +13 -0
  889. data/Slic3r/Linux/lib/std/unicore/lib/Blk/CJKUnifi.pl +13 -0
  890. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Canadian.pl +13 -0
  891. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Carian.pl +13 -0
  892. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Cham.pl +13 -0
  893. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Cherokee.pl +13 -0
  894. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Combini2.pl +13 -0
  895. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Combini3.pl +13 -0
  896. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Combini4.pl +13 -0
  897. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Combinin.pl +13 -0
  898. data/Slic3r/Linux/lib/std/unicore/lib/Blk/CommonIn.pl +13 -0
  899. data/Slic3r/Linux/lib/std/unicore/lib/Blk/ControlP.pl +13 -0
  900. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Coptic.pl +13 -0
  901. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Counting.pl +13 -0
  902. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Cuneifo2.pl +13 -0
  903. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Cuneifor.pl +13 -0
  904. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Currency.pl +13 -0
  905. data/Slic3r/Linux/lib/std/unicore/lib/Blk/CypriotS.pl +13 -0
  906. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Cyrilli2.pl +13 -0
  907. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Cyrilli3.pl +13 -0
  908. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Cyrilli4.pl +13 -0
  909. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Cyrillic.pl +13 -0
  910. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Deseret.pl +13 -0
  911. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Devanag2.pl +13 -0
  912. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Devanaga.pl +13 -0
  913. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Dingbats.pl +13 -0
  914. data/Slic3r/Linux/lib/std/unicore/lib/Blk/DominoTi.pl +13 -0
  915. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Egyptian.pl +13 -0
  916. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Emoticon.pl +13 -0
  917. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Enclose2.pl +13 -0
  918. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Enclose3.pl +13 -0
  919. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Enclose4.pl +13 -0
  920. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Enclosed.pl +13 -0
  921. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Ethiopi2.pl +13 -0
  922. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Ethiopi3.pl +13 -0
  923. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Ethiopi4.pl +13 -0
  924. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Ethiopic.pl +13 -0
  925. data/Slic3r/Linux/lib/std/unicore/lib/Blk/GeneralP.pl +13 -0
  926. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Geometri.pl +13 -0
  927. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Georgia2.pl +13 -0
  928. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Georgian.pl +13 -0
  929. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Glagolit.pl +13 -0
  930. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Gothic.pl +13 -0
  931. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Greek.pl +13 -0
  932. data/Slic3r/Linux/lib/std/unicore/lib/Blk/GreekExt.pl +13 -0
  933. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Gujarati.pl +13 -0
  934. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Gurmukhi.pl +13 -0
  935. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Halfwidt.pl +13 -0
  936. data/Slic3r/Linux/lib/std/unicore/lib/Blk/HangulCo.pl +13 -0
  937. data/Slic3r/Linux/lib/std/unicore/lib/Blk/HangulJ2.pl +13 -0
  938. data/Slic3r/Linux/lib/std/unicore/lib/Blk/HangulJ3.pl +13 -0
  939. data/Slic3r/Linux/lib/std/unicore/lib/Blk/HangulJa.pl +13 -0
  940. data/Slic3r/Linux/lib/std/unicore/lib/Blk/HangulSy.pl +13 -0
  941. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Hanunoo.pl +13 -0
  942. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Hebrew.pl +13 -0
  943. data/Slic3r/Linux/lib/std/unicore/lib/Blk/HighPriv.pl +13 -0
  944. data/Slic3r/Linux/lib/std/unicore/lib/Blk/HighSurr.pl +13 -0
  945. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Hiragana.pl +13 -0
  946. data/Slic3r/Linux/lib/std/unicore/lib/Blk/IPAExten.pl +13 -0
  947. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Ideograp.pl +13 -0
  948. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Imperial.pl +13 -0
  949. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Inscrip2.pl +13 -0
  950. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Inscript.pl +13 -0
  951. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Javanese.pl +13 -0
  952. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Kaithi.pl +13 -0
  953. data/Slic3r/Linux/lib/std/unicore/lib/Blk/KanaSupp.pl +13 -0
  954. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Kanbun.pl +13 -0
  955. data/Slic3r/Linux/lib/std/unicore/lib/Blk/KangxiRa.pl +13 -0
  956. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Kannada.pl +13 -0
  957. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Katakan2.pl +13 -0
  958. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Katakana.pl +13 -0
  959. data/Slic3r/Linux/lib/std/unicore/lib/Blk/KayahLi.pl +13 -0
  960. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Kharosht.pl +13 -0
  961. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Khmer.pl +13 -0
  962. data/Slic3r/Linux/lib/std/unicore/lib/Blk/KhmerSym.pl +13 -0
  963. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Lao.pl +13 -0
  964. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Latin1.pl +13 -0
  965. data/Slic3r/Linux/lib/std/unicore/lib/Blk/LatinEx2.pl +13 -0
  966. data/Slic3r/Linux/lib/std/unicore/lib/Blk/LatinEx3.pl +13 -0
  967. data/Slic3r/Linux/lib/std/unicore/lib/Blk/LatinEx4.pl +13 -0
  968. data/Slic3r/Linux/lib/std/unicore/lib/Blk/LatinEx5.pl +13 -0
  969. data/Slic3r/Linux/lib/std/unicore/lib/Blk/LatinExt.pl +13 -0
  970. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Lepcha.pl +13 -0
  971. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Letterli.pl +13 -0
  972. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Limbu.pl +13 -0
  973. data/Slic3r/Linux/lib/std/unicore/lib/Blk/LinearBI.pl +13 -0
  974. data/Slic3r/Linux/lib/std/unicore/lib/Blk/LinearBS.pl +13 -0
  975. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Lisu.pl +13 -0
  976. data/Slic3r/Linux/lib/std/unicore/lib/Blk/LowSurro.pl +13 -0
  977. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Lycian.pl +13 -0
  978. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Lydian.pl +13 -0
  979. data/Slic3r/Linux/lib/std/unicore/lib/Blk/MahjongT.pl +13 -0
  980. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Malayala.pl +13 -0
  981. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Mandaic.pl +13 -0
  982. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Mathema2.pl +13 -0
  983. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Mathemat.pl +13 -0
  984. data/Slic3r/Linux/lib/std/unicore/lib/Blk/MeeteiMa.pl +13 -0
  985. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Miscell2.pl +13 -0
  986. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Miscell3.pl +13 -0
  987. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Miscell4.pl +13 -0
  988. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Miscell5.pl +13 -0
  989. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Miscell6.pl +13 -0
  990. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Miscella.pl +13 -0
  991. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Modifier.pl +13 -0
  992. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Mongolia.pl +13 -0
  993. data/Slic3r/Linux/lib/std/unicore/lib/Blk/MusicalS.pl +13 -0
  994. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Myanmar.pl +13 -0
  995. data/Slic3r/Linux/lib/std/unicore/lib/Blk/MyanmarE.pl +13 -0
  996. data/Slic3r/Linux/lib/std/unicore/lib/Blk/NKo.pl +13 -0
  997. data/Slic3r/Linux/lib/std/unicore/lib/Blk/NewTaiLu.pl +13 -0
  998. data/Slic3r/Linux/lib/std/unicore/lib/Blk/NoBlock.pl +45 -0
  999. data/Slic3r/Linux/lib/std/unicore/lib/Blk/NumberFo.pl +13 -0
  1000. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Ogham.pl +13 -0
  1001. data/Slic3r/Linux/lib/std/unicore/lib/Blk/OlChiki.pl +13 -0
  1002. data/Slic3r/Linux/lib/std/unicore/lib/Blk/OldItali.pl +13 -0
  1003. data/Slic3r/Linux/lib/std/unicore/lib/Blk/OldPersi.pl +13 -0
  1004. data/Slic3r/Linux/lib/std/unicore/lib/Blk/OldSouth.pl +13 -0
  1005. data/Slic3r/Linux/lib/std/unicore/lib/Blk/OldTurki.pl +13 -0
  1006. data/Slic3r/Linux/lib/std/unicore/lib/Blk/OpticalC.pl +13 -0
  1007. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Oriya.pl +13 -0
  1008. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Osmanya.pl +13 -0
  1009. data/Slic3r/Linux/lib/std/unicore/lib/Blk/PhagsPa.pl +13 -0
  1010. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Phaistos.pl +13 -0
  1011. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Phoenici.pl +13 -0
  1012. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Phoneti2.pl +13 -0
  1013. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Phonetic.pl +13 -0
  1014. data/Slic3r/Linux/lib/std/unicore/lib/Blk/PlayingC.pl +13 -0
  1015. data/Slic3r/Linux/lib/std/unicore/lib/Blk/PrivateU.pl +13 -0
  1016. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Rejang.pl +13 -0
  1017. data/Slic3r/Linux/lib/std/unicore/lib/Blk/RumiNume.pl +13 -0
  1018. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Runic.pl +13 -0
  1019. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Samarita.pl +13 -0
  1020. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Saurasht.pl +13 -0
  1021. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Shavian.pl +13 -0
  1022. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Sinhala.pl +13 -0
  1023. data/Slic3r/Linux/lib/std/unicore/lib/Blk/SmallFor.pl +13 -0
  1024. data/Slic3r/Linux/lib/std/unicore/lib/Blk/SpacingM.pl +13 -0
  1025. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Specials.pl +13 -0
  1026. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Sundanes.pl +13 -0
  1027. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Superscr.pl +13 -0
  1028. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Supplem2.pl +13 -0
  1029. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Supplem3.pl +13 -0
  1030. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Supplem4.pl +13 -0
  1031. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Supplem5.pl +13 -0
  1032. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Supplem6.pl +13 -0
  1033. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Suppleme.pl +13 -0
  1034. data/Slic3r/Linux/lib/std/unicore/lib/Blk/SylotiNa.pl +13 -0
  1035. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Syriac.pl +13 -0
  1036. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Tagalog.pl +13 -0
  1037. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Tagbanwa.pl +13 -0
  1038. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Tags.pl +13 -0
  1039. data/Slic3r/Linux/lib/std/unicore/lib/Blk/TaiLe.pl +13 -0
  1040. data/Slic3r/Linux/lib/std/unicore/lib/Blk/TaiTham.pl +13 -0
  1041. data/Slic3r/Linux/lib/std/unicore/lib/Blk/TaiViet.pl +13 -0
  1042. data/Slic3r/Linux/lib/std/unicore/lib/Blk/TaiXuanJ.pl +13 -0
  1043. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Tamil.pl +13 -0
  1044. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Telugu.pl +13 -0
  1045. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Thaana.pl +13 -0
  1046. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Thai.pl +13 -0
  1047. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Tibetan.pl +13 -0
  1048. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Tifinagh.pl +13 -0
  1049. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Transpor.pl +13 -0
  1050. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Ugaritic.pl +13 -0
  1051. data/Slic3r/Linux/lib/std/unicore/lib/Blk/UnifiedC.pl +13 -0
  1052. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Vai.pl +13 -0
  1053. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Variati2.pl +13 -0
  1054. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Variatio.pl +13 -0
  1055. data/Slic3r/Linux/lib/std/unicore/lib/Blk/VedicExt.pl +13 -0
  1056. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Vertical.pl +13 -0
  1057. data/Slic3r/Linux/lib/std/unicore/lib/Blk/YiRadica.pl +13 -0
  1058. data/Slic3r/Linux/lib/std/unicore/lib/Blk/YiSyllab.pl +13 -0
  1059. data/Slic3r/Linux/lib/std/unicore/lib/Blk/YijingHe.pl +13 -0
  1060. data/Slic3r/Linux/lib/std/unicore/lib/CE/N.pl +46 -0
  1061. data/Slic3r/Linux/lib/std/unicore/lib/CE/Y.pl +45 -0
  1062. data/Slic3r/Linux/lib/std/unicore/lib/CI/N.pl +290 -0
  1063. data/Slic3r/Linux/lib/std/unicore/lib/CI/Y.pl +289 -0
  1064. data/Slic3r/Linux/lib/std/unicore/lib/CWCF/N.pl +590 -0
  1065. data/Slic3r/Linux/lib/std/unicore/lib/CWCF/Y.pl +589 -0
  1066. data/Slic3r/Linux/lib/std/unicore/lib/CWCM/N.pl +112 -0
  1067. data/Slic3r/Linux/lib/std/unicore/lib/CWCM/Y.pl +111 -0
  1068. data/Slic3r/Linux/lib/std/unicore/lib/CWKCF/N.pl +765 -0
  1069. data/Slic3r/Linux/lib/std/unicore/lib/CWKCF/Y.pl +764 -0
  1070. data/Slic3r/Linux/lib/std/unicore/lib/CWL/N.pl +579 -0
  1071. data/Slic3r/Linux/lib/std/unicore/lib/CWL/Y.pl +578 -0
  1072. data/Slic3r/Linux/lib/std/unicore/lib/CWT/N.pl +596 -0
  1073. data/Slic3r/Linux/lib/std/unicore/lib/CWT/Y.pl +595 -0
  1074. data/Slic3r/Linux/lib/std/unicore/lib/CWU/N.pl +595 -0
  1075. data/Slic3r/Linux/lib/std/unicore/lib/CWU/Y.pl +594 -0
  1076. data/Slic3r/Linux/lib/std/unicore/lib/Cased/N.pl +125 -0
  1077. data/Slic3r/Linux/lib/std/unicore/lib/Cased/Y.pl +124 -0
  1078. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/10.pl +13 -0
  1079. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/103.pl +13 -0
  1080. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/107.pl +13 -0
  1081. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/11.pl +13 -0
  1082. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/118.pl +13 -0
  1083. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/12.pl +13 -0
  1084. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/122.pl +13 -0
  1085. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/129.pl +13 -0
  1086. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/13.pl +13 -0
  1087. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/130.pl +15 -0
  1088. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/132.pl +13 -0
  1089. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/14.pl +13 -0
  1090. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/15.pl +13 -0
  1091. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/16.pl +13 -0
  1092. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/17.pl +13 -0
  1093. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/18.pl +14 -0
  1094. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/19.pl +13 -0
  1095. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/20.pl +13 -0
  1096. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/21.pl +13 -0
  1097. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/22.pl +13 -0
  1098. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/23.pl +13 -0
  1099. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/24.pl +13 -0
  1100. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/25.pl +13 -0
  1101. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/26.pl +13 -0
  1102. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/27.pl +13 -0
  1103. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/28.pl +13 -0
  1104. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/29.pl +13 -0
  1105. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/30.pl +14 -0
  1106. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/31.pl +14 -0
  1107. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/32.pl +14 -0
  1108. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/33.pl +13 -0
  1109. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/34.pl +13 -0
  1110. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/35.pl +13 -0
  1111. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/36.pl +13 -0
  1112. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/84.pl +13 -0
  1113. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/91.pl +13 -0
  1114. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/A.pl +96 -0
  1115. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/AL.pl +15 -0
  1116. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/AR.pl +16 -0
  1117. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/ATA.pl +13 -0
  1118. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/ATAR.pl +16 -0
  1119. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/ATB.pl +15 -0
  1120. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/ATBL.pl +13 -0
  1121. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/B.pl +71 -0
  1122. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/BL.pl +13 -0
  1123. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/BR.pl +16 -0
  1124. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/DA.pl +15 -0
  1125. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/DB.pl +16 -0
  1126. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/IS.pl +13 -0
  1127. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/KV.pl +13 -0
  1128. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/L.pl +13 -0
  1129. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/NK.pl +24 -0
  1130. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/NR.pl +135 -0
  1131. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/OV.pl +21 -0
  1132. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/R.pl +13 -0
  1133. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/VR.pl +41 -0
  1134. data/Slic3r/Linux/lib/std/unicore/lib/CompEx/N.pl +87 -0
  1135. data/Slic3r/Linux/lib/std/unicore/lib/CompEx/Y.pl +86 -0
  1136. data/Slic3r/Linux/lib/std/unicore/lib/DI/N.pl +28 -0
  1137. data/Slic3r/Linux/lib/std/unicore/lib/DI/Y.pl +27 -0
  1138. data/Slic3r/Linux/lib/std/unicore/lib/Dash/N.pl +32 -0
  1139. data/Slic3r/Linux/lib/std/unicore/lib/Dash/Y.pl +31 -0
  1140. data/Slic3r/Linux/lib/std/unicore/lib/Dep/N.pl +22 -0
  1141. data/Slic3r/Linux/lib/std/unicore/lib/Dep/Y.pl +21 -0
  1142. data/Slic3r/Linux/lib/std/unicore/lib/Dia/N.pl +130 -0
  1143. data/Slic3r/Linux/lib/std/unicore/lib/Dia/Y.pl +129 -0
  1144. data/Slic3r/Linux/lib/std/unicore/lib/Dt/Com.pl +86 -0
  1145. data/Slic3r/Linux/lib/std/unicore/lib/Dt/Enc.pl +20 -0
  1146. data/Slic3r/Linux/lib/std/unicore/lib/Dt/Fin.pl +125 -0
  1147. data/Slic3r/Linux/lib/std/unicore/lib/Dt/Font.pl +46 -0
  1148. data/Slic3r/Linux/lib/std/unicore/lib/Dt/Fra.pl +15 -0
  1149. data/Slic3r/Linux/lib/std/unicore/lib/Dt/Init.pl +87 -0
  1150. data/Slic3r/Linux/lib/std/unicore/lib/Dt/Iso.pl +110 -0
  1151. data/Slic3r/Linux/lib/std/unicore/lib/Dt/Med.pl +66 -0
  1152. data/Slic3r/Linux/lib/std/unicore/lib/Dt/Nar.pl +18 -0
  1153. data/Slic3r/Linux/lib/std/unicore/lib/Dt/Nb.pl +17 -0
  1154. data/Slic3r/Linux/lib/std/unicore/lib/Dt/NonCanon.pl +161 -0
  1155. data/Slic3r/Linux/lib/std/unicore/lib/Dt/None.pl +362 -0
  1156. data/Slic3r/Linux/lib/std/unicore/lib/Dt/Sml.pl +15 -0
  1157. data/Slic3r/Linux/lib/std/unicore/lib/Dt/Sqr.pl +21 -0
  1158. data/Slic3r/Linux/lib/std/unicore/lib/Dt/Sub.pl +16 -0
  1159. data/Slic3r/Linux/lib/std/unicore/lib/Dt/Sup.pl +32 -0
  1160. data/Slic3r/Linux/lib/std/unicore/lib/Dt/Vert.pl +17 -0
  1161. data/Slic3r/Linux/lib/std/unicore/lib/Ea/A.pl +185 -0
  1162. data/Slic3r/Linux/lib/std/unicore/lib/Ea/F.pl +15 -0
  1163. data/Slic3r/Linux/lib/std/unicore/lib/Ea/H.pl +19 -0
  1164. data/Slic3r/Linux/lib/std/unicore/lib/Ea/N.pl +227 -0
  1165. data/Slic3r/Linux/lib/std/unicore/lib/Ea/Na.pl +19 -0
  1166. data/Slic3r/Linux/lib/std/unicore/lib/Ea/W.pl +49 -0
  1167. data/Slic3r/Linux/lib/std/unicore/lib/Ext/N.pl +33 -0
  1168. data/Slic3r/Linux/lib/std/unicore/lib/Ext/Y.pl +32 -0
  1169. data/Slic3r/Linux/lib/std/unicore/lib/GCB/CN.pl +32 -0
  1170. data/Slic3r/Linux/lib/std/unicore/lib/GCB/CR.pl +13 -0
  1171. data/Slic3r/Linux/lib/std/unicore/lib/GCB/EX.pl +227 -0
  1172. data/Slic3r/Linux/lib/std/unicore/lib/GCB/L.pl +14 -0
  1173. data/Slic3r/Linux/lib/std/unicore/lib/GCB/LF.pl +13 -0
  1174. data/Slic3r/Linux/lib/std/unicore/lib/GCB/LV.pl +411 -0
  1175. data/Slic3r/Linux/lib/std/unicore/lib/GCB/LVT.pl +411 -0
  1176. data/Slic3r/Linux/lib/std/unicore/lib/GCB/PP.pl +17 -0
  1177. data/Slic3r/Linux/lib/std/unicore/lib/GCB/SM.pl +125 -0
  1178. data/Slic3r/Linux/lib/std/unicore/lib/GCB/T.pl +14 -0
  1179. data/Slic3r/Linux/lib/std/unicore/lib/GCB/V.pl +14 -0
  1180. data/Slic3r/Linux/lib/std/unicore/lib/GCB/XX.pl +224 -0
  1181. data/Slic3r/Linux/lib/std/unicore/lib/Gc/C.pl +516 -0
  1182. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Cc.pl +14 -0
  1183. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Cf.pl +27 -0
  1184. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Cn.pl +513 -0
  1185. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Co.pl +15 -0
  1186. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Cs.pl +13 -0
  1187. data/Slic3r/Linux/lib/std/unicore/lib/Gc/L.pl +447 -0
  1188. data/Slic3r/Linux/lib/std/unicore/lib/Gc/LC.pl +122 -0
  1189. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Ll.pl +621 -0
  1190. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Lm.pl +61 -0
  1191. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Lo.pl +335 -0
  1192. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Lu.pl +615 -0
  1193. data/Slic3r/Linux/lib/std/unicore/lib/Gc/M.pl +205 -0
  1194. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Mc.pl +125 -0
  1195. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Me.pl +16 -0
  1196. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Mn.pl +215 -0
  1197. data/Slic3r/Linux/lib/std/unicore/lib/Gc/N.pl +95 -0
  1198. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Nl.pl +24 -0
  1199. data/Slic3r/Linux/lib/std/unicore/lib/Gc/No.pl +53 -0
  1200. data/Slic3r/Linux/lib/std/unicore/lib/Gc/P.pl +145 -0
  1201. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Pd.pl +27 -0
  1202. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Pe.pl +82 -0
  1203. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Pf.pl +22 -0
  1204. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Pi.pl +23 -0
  1205. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Po.pl +140 -0
  1206. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Ps.pl +84 -0
  1207. data/Slic3r/Linux/lib/std/unicore/lib/Gc/S.pl +220 -0
  1208. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Sc.pl +28 -0
  1209. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Sk.pl +39 -0
  1210. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Sm.pl +78 -0
  1211. data/Slic3r/Linux/lib/std/unicore/lib/Gc/So.pl +176 -0
  1212. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Z.pl +21 -0
  1213. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Zl.pl +13 -0
  1214. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Zp.pl +13 -0
  1215. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Zs.pl +20 -0
  1216. data/Slic3r/Linux/lib/std/unicore/lib/GrBase/N.pl +609 -0
  1217. data/Slic3r/Linux/lib/std/unicore/lib/GrBase/Y.pl +608 -0
  1218. data/Slic3r/Linux/lib/std/unicore/lib/GrExt/N.pl +228 -0
  1219. data/Slic3r/Linux/lib/std/unicore/lib/Hex/N.pl +19 -0
  1220. data/Slic3r/Linux/lib/std/unicore/lib/Hex/Y.pl +18 -0
  1221. data/Slic3r/Linux/lib/std/unicore/lib/Hst/NA.pl +18 -0
  1222. data/Slic3r/Linux/lib/std/unicore/lib/Hyphen/N.pl +23 -0
  1223. data/Slic3r/Linux/lib/std/unicore/lib/Hyphen/Y.pl +22 -0
  1224. data/Slic3r/Linux/lib/std/unicore/lib/IDC/N.pl +527 -0
  1225. data/Slic3r/Linux/lib/std/unicore/lib/IDC/Y.pl +526 -0
  1226. data/Slic3r/Linux/lib/std/unicore/lib/IDS/N.pl +450 -0
  1227. data/Slic3r/Linux/lib/std/unicore/lib/IDS/Y.pl +449 -0
  1228. data/Slic3r/Linux/lib/std/unicore/lib/IDSB/N.pl +15 -0
  1229. data/Slic3r/Linux/lib/std/unicore/lib/IDSB/Y.pl +14 -0
  1230. data/Slic3r/Linux/lib/std/unicore/lib/IDST/N.pl +14 -0
  1231. data/Slic3r/Linux/lib/std/unicore/lib/IDST/Y.pl +13 -0
  1232. data/Slic3r/Linux/lib/std/unicore/lib/Ideo/N.pl +25 -0
  1233. data/Slic3r/Linux/lib/std/unicore/lib/Ideo/Y.pl +24 -0
  1234. data/Slic3r/Linux/lib/std/unicore/lib/In/2_0.pl +324 -0
  1235. data/Slic3r/Linux/lib/std/unicore/lib/In/2_1.pl +324 -0
  1236. data/Slic3r/Linux/lib/std/unicore/lib/In/3_0.pl +381 -0
  1237. data/Slic3r/Linux/lib/std/unicore/lib/In/3_1.pl +414 -0
  1238. data/Slic3r/Linux/lib/std/unicore/lib/In/3_2.pl +409 -0
  1239. data/Slic3r/Linux/lib/std/unicore/lib/In/4_0.pl +424 -0
  1240. data/Slic3r/Linux/lib/std/unicore/lib/In/4_1.pl +442 -0
  1241. data/Slic3r/Linux/lib/std/unicore/lib/In/5_0.pl +452 -0
  1242. data/Slic3r/Linux/lib/std/unicore/lib/In/5_1.pl +467 -0
  1243. data/Slic3r/Linux/lib/std/unicore/lib/In/5_2.pl +507 -0
  1244. data/Slic3r/Linux/lib/std/unicore/lib/In/6_0.pl +523 -0
  1245. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Ain.pl +16 -0
  1246. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Alaph.pl +13 -0
  1247. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Alef.pl +18 -0
  1248. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Beh.pl +17 -0
  1249. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Beth.pl +14 -0
  1250. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Burushas.pl +13 -0
  1251. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Dal.pl +16 -0
  1252. data/Slic3r/Linux/lib/std/unicore/lib/Jg/DalathRi.pl +15 -0
  1253. data/Slic3r/Linux/lib/std/unicore/lib/Jg/E.pl +13 -0
  1254. data/Slic3r/Linux/lib/std/unicore/lib/Jg/FarsiYeh.pl +16 -0
  1255. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Fe.pl +13 -0
  1256. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Feh.pl +15 -0
  1257. data/Slic3r/Linux/lib/std/unicore/lib/Jg/FinalSem.pl +13 -0
  1258. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Gaf.pl +17 -0
  1259. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Gamal.pl +14 -0
  1260. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Hah.pl +19 -0
  1261. data/Slic3r/Linux/lib/std/unicore/lib/Jg/He.pl +13 -0
  1262. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Heh.pl +13 -0
  1263. data/Slic3r/Linux/lib/std/unicore/lib/Jg/HehGoal.pl +13 -0
  1264. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Heth.pl +13 -0
  1265. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Kaf.pl +15 -0
  1266. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Kaph.pl +13 -0
  1267. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Khaph.pl +13 -0
  1268. data/Slic3r/Linux/lib/std/unicore/lib/Jg/KnottedH.pl +14 -0
  1269. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Lam.pl +15 -0
  1270. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Lamadh.pl +13 -0
  1271. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Meem.pl +14 -0
  1272. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Mim.pl +13 -0
  1273. data/Slic3r/Linux/lib/std/unicore/lib/Jg/NoJoinin.pl +26 -0
  1274. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Noon.pl +15 -0
  1275. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Nun.pl +13 -0
  1276. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Nya.pl +13 -0
  1277. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Pe.pl +13 -0
  1278. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Qaf.pl +15 -0
  1279. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Qaph.pl +13 -0
  1280. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Reh.pl +18 -0
  1281. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Reversed.pl +13 -0
  1282. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Sad.pl +15 -0
  1283. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Sadhe.pl +13 -0
  1284. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Seen.pl +19 -0
  1285. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Semkath.pl +13 -0
  1286. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Shin.pl +13 -0
  1287. data/Slic3r/Linux/lib/std/unicore/lib/Jg/SwashKaf.pl +13 -0
  1288. data/Slic3r/Linux/lib/std/unicore/lib/Jg/SyriacWa.pl +13 -0
  1289. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Tah.pl +14 -0
  1290. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Taw.pl +13 -0
  1291. data/Slic3r/Linux/lib/std/unicore/lib/Jg/TehMarb2.pl +13 -0
  1292. data/Slic3r/Linux/lib/std/unicore/lib/Jg/TehMarbu.pl +15 -0
  1293. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Teth.pl +13 -0
  1294. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Waw.pl +18 -0
  1295. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Yeh.pl +18 -0
  1296. data/Slic3r/Linux/lib/std/unicore/lib/Jg/YehBarre.pl +13 -0
  1297. data/Slic3r/Linux/lib/std/unicore/lib/Jg/YehWithT.pl +13 -0
  1298. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Yudh.pl +13 -0
  1299. data/Slic3r/Linux/lib/std/unicore/lib/Jg/YudhHe.pl +13 -0
  1300. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Zain.pl +13 -0
  1301. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Zhain.pl +13 -0
  1302. data/Slic3r/Linux/lib/std/unicore/lib/JoinC/N.pl +14 -0
  1303. data/Slic3r/Linux/lib/std/unicore/lib/JoinC/Y.pl +13 -0
  1304. data/Slic3r/Linux/lib/std/unicore/lib/Jt/C.pl +15 -0
  1305. data/Slic3r/Linux/lib/std/unicore/lib/Jt/D.pl +41 -0
  1306. data/Slic3r/Linux/lib/std/unicore/lib/Jt/R.pl +40 -0
  1307. data/Slic3r/Linux/lib/std/unicore/lib/Jt/T.pl +226 -0
  1308. data/Slic3r/Linux/lib/std/unicore/lib/Jt/U.pl +231 -0
  1309. data/Slic3r/Linux/lib/std/unicore/lib/LOE/N.pl +18 -0
  1310. data/Slic3r/Linux/lib/std/unicore/lib/Lb/AI.pl +117 -0
  1311. data/Slic3r/Linux/lib/std/unicore/lib/Lb/AL.pl +576 -0
  1312. data/Slic3r/Linux/lib/std/unicore/lib/Lb/B2.pl +13 -0
  1313. data/Slic3r/Linux/lib/std/unicore/lib/Lb/BA.pl +74 -0
  1314. data/Slic3r/Linux/lib/std/unicore/lib/Lb/BB.pl +24 -0
  1315. data/Slic3r/Linux/lib/std/unicore/lib/Lb/BK.pl +14 -0
  1316. data/Slic3r/Linux/lib/std/unicore/lib/Lb/CB.pl +13 -0
  1317. data/Slic3r/Linux/lib/std/unicore/lib/Lb/CL.pl +91 -0
  1318. data/Slic3r/Linux/lib/std/unicore/lib/Lb/CM.pl +189 -0
  1319. data/Slic3r/Linux/lib/std/unicore/lib/Lb/CP.pl +14 -0
  1320. data/Slic3r/Linux/lib/std/unicore/lib/Lb/EX.pl +34 -0
  1321. data/Slic3r/Linux/lib/std/unicore/lib/Lb/GL.pl +23 -0
  1322. data/Slic3r/Linux/lib/std/unicore/lib/Lb/HY.pl +13 -0
  1323. data/Slic3r/Linux/lib/std/unicore/lib/Lb/ID.pl +85 -0
  1324. data/Slic3r/Linux/lib/std/unicore/lib/Lb/IN.pl +14 -0
  1325. data/Slic3r/Linux/lib/std/unicore/lib/Lb/IS.pl +22 -0
  1326. data/Slic3r/Linux/lib/std/unicore/lib/Lb/NL.pl +13 -0
  1327. data/Slic3r/Linux/lib/std/unicore/lib/Lb/NS.pl +49 -0
  1328. data/Slic3r/Linux/lib/std/unicore/lib/Lb/NU.pl +50 -0
  1329. data/Slic3r/Linux/lib/std/unicore/lib/Lb/OP.pl +91 -0
  1330. data/Slic3r/Linux/lib/std/unicore/lib/Lb/PO.pl +30 -0
  1331. data/Slic3r/Linux/lib/std/unicore/lib/Lb/PR.pl +31 -0
  1332. data/Slic3r/Linux/lib/std/unicore/lib/Lb/QU.pl +24 -0
  1333. data/Slic3r/Linux/lib/std/unicore/lib/Lb/SA.pl +49 -0
  1334. data/Slic3r/Linux/lib/std/unicore/lib/Lb/SG.pl +13 -0
  1335. data/Slic3r/Linux/lib/std/unicore/lib/Lb/SP.pl +13 -0
  1336. data/Slic3r/Linux/lib/std/unicore/lib/Lb/SY.pl +13 -0
  1337. data/Slic3r/Linux/lib/std/unicore/lib/Lb/WJ.pl +14 -0
  1338. data/Slic3r/Linux/lib/std/unicore/lib/Lb/XX.pl +505 -0
  1339. data/Slic3r/Linux/lib/std/unicore/lib/Lb/ZW.pl +13 -0
  1340. data/Slic3r/Linux/lib/std/unicore/lib/Lower/N.pl +625 -0
  1341. data/Slic3r/Linux/lib/std/unicore/lib/Lower/Y.pl +624 -0
  1342. data/Slic3r/Linux/lib/std/unicore/lib/Math/N.pl +119 -0
  1343. data/Slic3r/Linux/lib/std/unicore/lib/Math/Y.pl +118 -0
  1344. data/Slic3r/Linux/lib/std/unicore/lib/NChar/N.pl +30 -0
  1345. data/Slic3r/Linux/lib/std/unicore/lib/NChar/Y.pl +30 -0
  1346. data/Slic3r/Linux/lib/std/unicore/lib/NFCQC/Y.pl +118 -0
  1347. data/Slic3r/Linux/lib/std/unicore/lib/NFDQC/N.pl +239 -0
  1348. data/Slic3r/Linux/lib/std/unicore/lib/NFDQC/Y.pl +240 -0
  1349. data/Slic3r/Linux/lib/std/unicore/lib/NFKCQC/M.pl +46 -0
  1350. data/Slic3r/Linux/lib/std/unicore/lib/NFKCQC/N.pl +225 -0
  1351. data/Slic3r/Linux/lib/std/unicore/lib/NFKCQC/Y.pl +256 -0
  1352. data/Slic3r/Linux/lib/std/unicore/lib/NFKDQC/N.pl +361 -0
  1353. data/Slic3r/Linux/lib/std/unicore/lib/Nt/De.pl +50 -0
  1354. data/Slic3r/Linux/lib/std/unicore/lib/Nt/Di.pl +32 -0
  1355. data/Slic3r/Linux/lib/std/unicore/lib/Nt/Nu.pl +134 -0
  1356. data/Slic3r/Linux/lib/std/unicore/lib/Nv/0.pl +67 -0
  1357. data/Slic3r/Linux/lib/std/unicore/lib/Nv/1.pl +102 -0
  1358. data/Slic3r/Linux/lib/std/unicore/lib/Nv/10.pl +47 -0
  1359. data/Slic3r/Linux/lib/std/unicore/lib/Nv/100.pl +32 -0
  1360. data/Slic3r/Linux/lib/std/unicore/lib/Nv/1000.pl +28 -0
  1361. data/Slic3r/Linux/lib/std/unicore/lib/Nv/10000.pl +19 -0
  1362. data/Slic3r/Linux/lib/std/unicore/lib/Nv/100000.pl +13 -0
  1363. data/Slic3r/Linux/lib/std/unicore/lib/Nv/10000000.pl +14 -0
  1364. data/Slic3r/Linux/lib/std/unicore/lib/Nv/10000002.pl +13 -0
  1365. data/Slic3r/Linux/lib/std/unicore/lib/Nv/11.pl +18 -0
  1366. data/Slic3r/Linux/lib/std/unicore/lib/Nv/11_2.pl +13 -0
  1367. data/Slic3r/Linux/lib/std/unicore/lib/Nv/12.pl +18 -0
  1368. data/Slic3r/Linux/lib/std/unicore/lib/Nv/13.pl +16 -0
  1369. data/Slic3r/Linux/lib/std/unicore/lib/Nv/13_2.pl +13 -0
  1370. data/Slic3r/Linux/lib/std/unicore/lib/Nv/14.pl +16 -0
  1371. data/Slic3r/Linux/lib/std/unicore/lib/Nv/15.pl +16 -0
  1372. data/Slic3r/Linux/lib/std/unicore/lib/Nv/15_2.pl +13 -0
  1373. data/Slic3r/Linux/lib/std/unicore/lib/Nv/16.pl +17 -0
  1374. data/Slic3r/Linux/lib/std/unicore/lib/Nv/17.pl +17 -0
  1375. data/Slic3r/Linux/lib/std/unicore/lib/Nv/17_2.pl +13 -0
  1376. data/Slic3r/Linux/lib/std/unicore/lib/Nv/18.pl +17 -0
  1377. data/Slic3r/Linux/lib/std/unicore/lib/Nv/19.pl +17 -0
  1378. data/Slic3r/Linux/lib/std/unicore/lib/Nv/1_10.pl +13 -0
  1379. data/Slic3r/Linux/lib/std/unicore/lib/Nv/1_16.pl +15 -0
  1380. data/Slic3r/Linux/lib/std/unicore/lib/Nv/1_2.pl +21 -0
  1381. data/Slic3r/Linux/lib/std/unicore/lib/Nv/1_3.pl +16 -0
  1382. data/Slic3r/Linux/lib/std/unicore/lib/Nv/1_4.pl +21 -0
  1383. data/Slic3r/Linux/lib/std/unicore/lib/Nv/1_5.pl +13 -0
  1384. data/Slic3r/Linux/lib/std/unicore/lib/Nv/1_6.pl +14 -0
  1385. data/Slic3r/Linux/lib/std/unicore/lib/Nv/1_7.pl +13 -0
  1386. data/Slic3r/Linux/lib/std/unicore/lib/Nv/1_8.pl +17 -0
  1387. data/Slic3r/Linux/lib/std/unicore/lib/Nv/1_9.pl +13 -0
  1388. data/Slic3r/Linux/lib/std/unicore/lib/Nv/2.pl +105 -0
  1389. data/Slic3r/Linux/lib/std/unicore/lib/Nv/20.pl +30 -0
  1390. data/Slic3r/Linux/lib/std/unicore/lib/Nv/200.pl +14 -0
  1391. data/Slic3r/Linux/lib/std/unicore/lib/Nv/2000.pl +13 -0
  1392. data/Slic3r/Linux/lib/std/unicore/lib/Nv/20000.pl +13 -0
  1393. data/Slic3r/Linux/lib/std/unicore/lib/Nv/21.pl +13 -0
  1394. data/Slic3r/Linux/lib/std/unicore/lib/Nv/22.pl +13 -0
  1395. data/Slic3r/Linux/lib/std/unicore/lib/Nv/23.pl +13 -0
  1396. data/Slic3r/Linux/lib/std/unicore/lib/Nv/24.pl +13 -0
  1397. data/Slic3r/Linux/lib/std/unicore/lib/Nv/25.pl +13 -0
  1398. data/Slic3r/Linux/lib/std/unicore/lib/Nv/26.pl +13 -0
  1399. data/Slic3r/Linux/lib/std/unicore/lib/Nv/27.pl +13 -0
  1400. data/Slic3r/Linux/lib/std/unicore/lib/Nv/28.pl +13 -0
  1401. data/Slic3r/Linux/lib/std/unicore/lib/Nv/29.pl +13 -0
  1402. data/Slic3r/Linux/lib/std/unicore/lib/Nv/2_3.pl +17 -0
  1403. data/Slic3r/Linux/lib/std/unicore/lib/Nv/2_5.pl +13 -0
  1404. data/Slic3r/Linux/lib/std/unicore/lib/Nv/3.pl +103 -0
  1405. data/Slic3r/Linux/lib/std/unicore/lib/Nv/30.pl +22 -0
  1406. data/Slic3r/Linux/lib/std/unicore/lib/Nv/300.pl +15 -0
  1407. data/Slic3r/Linux/lib/std/unicore/lib/Nv/3000.pl +13 -0
  1408. data/Slic3r/Linux/lib/std/unicore/lib/Nv/30000.pl +13 -0
  1409. data/Slic3r/Linux/lib/std/unicore/lib/Nv/31.pl +13 -0
  1410. data/Slic3r/Linux/lib/std/unicore/lib/Nv/32.pl +13 -0
  1411. data/Slic3r/Linux/lib/std/unicore/lib/Nv/33.pl +13 -0
  1412. data/Slic3r/Linux/lib/std/unicore/lib/Nv/34.pl +13 -0
  1413. data/Slic3r/Linux/lib/std/unicore/lib/Nv/35.pl +13 -0
  1414. data/Slic3r/Linux/lib/std/unicore/lib/Nv/36.pl +13 -0
  1415. data/Slic3r/Linux/lib/std/unicore/lib/Nv/37.pl +13 -0
  1416. data/Slic3r/Linux/lib/std/unicore/lib/Nv/38.pl +13 -0
  1417. data/Slic3r/Linux/lib/std/unicore/lib/Nv/39.pl +13 -0
  1418. data/Slic3r/Linux/lib/std/unicore/lib/Nv/3_16.pl +15 -0
  1419. data/Slic3r/Linux/lib/std/unicore/lib/Nv/3_2.pl +13 -0
  1420. data/Slic3r/Linux/lib/std/unicore/lib/Nv/3_4.pl +18 -0
  1421. data/Slic3r/Linux/lib/std/unicore/lib/Nv/3_5.pl +13 -0
  1422. data/Slic3r/Linux/lib/std/unicore/lib/Nv/3_8.pl +13 -0
  1423. data/Slic3r/Linux/lib/std/unicore/lib/Nv/4.pl +97 -0
  1424. data/Slic3r/Linux/lib/std/unicore/lib/Nv/40.pl +21 -0
  1425. data/Slic3r/Linux/lib/std/unicore/lib/Nv/400.pl +14 -0
  1426. data/Slic3r/Linux/lib/std/unicore/lib/Nv/4000.pl +13 -0
  1427. data/Slic3r/Linux/lib/std/unicore/lib/Nv/40000.pl +13 -0
  1428. data/Slic3r/Linux/lib/std/unicore/lib/Nv/41.pl +13 -0
  1429. data/Slic3r/Linux/lib/std/unicore/lib/Nv/42.pl +13 -0
  1430. data/Slic3r/Linux/lib/std/unicore/lib/Nv/43.pl +13 -0
  1431. data/Slic3r/Linux/lib/std/unicore/lib/Nv/44.pl +13 -0
  1432. data/Slic3r/Linux/lib/std/unicore/lib/Nv/45.pl +13 -0
  1433. data/Slic3r/Linux/lib/std/unicore/lib/Nv/46.pl +13 -0
  1434. data/Slic3r/Linux/lib/std/unicore/lib/Nv/47.pl +13 -0
  1435. data/Slic3r/Linux/lib/std/unicore/lib/Nv/48.pl +13 -0
  1436. data/Slic3r/Linux/lib/std/unicore/lib/Nv/49.pl +13 -0
  1437. data/Slic3r/Linux/lib/std/unicore/lib/Nv/4_5.pl +13 -0
  1438. data/Slic3r/Linux/lib/std/unicore/lib/Nv/5.pl +97 -0
  1439. data/Slic3r/Linux/lib/std/unicore/lib/Nv/50.pl +28 -0
  1440. data/Slic3r/Linux/lib/std/unicore/lib/Nv/500.pl +20 -0
  1441. data/Slic3r/Linux/lib/std/unicore/lib/Nv/5000.pl +17 -0
  1442. data/Slic3r/Linux/lib/std/unicore/lib/Nv/50000.pl +16 -0
  1443. data/Slic3r/Linux/lib/std/unicore/lib/Nv/5_2.pl +13 -0
  1444. data/Slic3r/Linux/lib/std/unicore/lib/Nv/5_6.pl +14 -0
  1445. data/Slic3r/Linux/lib/std/unicore/lib/Nv/5_8.pl +13 -0
  1446. data/Slic3r/Linux/lib/std/unicore/lib/Nv/6.pl +90 -0
  1447. data/Slic3r/Linux/lib/std/unicore/lib/Nv/60.pl +17 -0
  1448. data/Slic3r/Linux/lib/std/unicore/lib/Nv/600.pl +14 -0
  1449. data/Slic3r/Linux/lib/std/unicore/lib/Nv/6000.pl +13 -0
  1450. data/Slic3r/Linux/lib/std/unicore/lib/Nv/60000.pl +13 -0
  1451. data/Slic3r/Linux/lib/std/unicore/lib/Nv/7.pl +87 -0
  1452. data/Slic3r/Linux/lib/std/unicore/lib/Nv/70.pl +17 -0
  1453. data/Slic3r/Linux/lib/std/unicore/lib/Nv/700.pl +14 -0
  1454. data/Slic3r/Linux/lib/std/unicore/lib/Nv/7000.pl +13 -0
  1455. data/Slic3r/Linux/lib/std/unicore/lib/Nv/70000.pl +13 -0
  1456. data/Slic3r/Linux/lib/std/unicore/lib/Nv/7_2.pl +13 -0
  1457. data/Slic3r/Linux/lib/std/unicore/lib/Nv/7_8.pl +13 -0
  1458. data/Slic3r/Linux/lib/std/unicore/lib/Nv/8.pl +84 -0
  1459. data/Slic3r/Linux/lib/std/unicore/lib/Nv/80.pl +17 -0
  1460. data/Slic3r/Linux/lib/std/unicore/lib/Nv/800.pl +14 -0
  1461. data/Slic3r/Linux/lib/std/unicore/lib/Nv/8000.pl +13 -0
  1462. data/Slic3r/Linux/lib/std/unicore/lib/Nv/80000.pl +13 -0
  1463. data/Slic3r/Linux/lib/std/unicore/lib/Nv/9.pl +86 -0
  1464. data/Slic3r/Linux/lib/std/unicore/lib/Nv/90.pl +18 -0
  1465. data/Slic3r/Linux/lib/std/unicore/lib/Nv/900.pl +15 -0
  1466. data/Slic3r/Linux/lib/std/unicore/lib/Nv/9000.pl +13 -0
  1467. data/Slic3r/Linux/lib/std/unicore/lib/Nv/90000.pl +13 -0
  1468. data/Slic3r/Linux/lib/std/unicore/lib/Nv/9_2.pl +13 -0
  1469. data/Slic3r/Linux/lib/std/unicore/lib/Nv/NaN.pl +170 -0
  1470. data/Slic3r/Linux/lib/std/unicore/lib/Nv/_1_2.pl +13 -0
  1471. data/Slic3r/Linux/lib/std/unicore/lib/OAlpha/N.pl +158 -0
  1472. data/Slic3r/Linux/lib/std/unicore/lib/OAlpha/Y.pl +157 -0
  1473. data/Slic3r/Linux/lib/std/unicore/lib/ODI/N.pl +23 -0
  1474. data/Slic3r/Linux/lib/std/unicore/lib/ODI/Y.pl +22 -0
  1475. data/Slic3r/Linux/lib/std/unicore/lib/OGrExt/N.pl +29 -0
  1476. data/Slic3r/Linux/lib/std/unicore/lib/OGrExt/Y.pl +28 -0
  1477. data/Slic3r/Linux/lib/std/unicore/lib/OIDC/N.pl +17 -0
  1478. data/Slic3r/Linux/lib/std/unicore/lib/OIDC/Y.pl +16 -0
  1479. data/Slic3r/Linux/lib/std/unicore/lib/OIDS/N.pl +16 -0
  1480. data/Slic3r/Linux/lib/std/unicore/lib/OIDS/Y.pl +15 -0
  1481. data/Slic3r/Linux/lib/std/unicore/lib/OLower/N.pl +26 -0
  1482. data/Slic3r/Linux/lib/std/unicore/lib/OLower/Y.pl +25 -0
  1483. data/Slic3r/Linux/lib/std/unicore/lib/OMath/N.pl +113 -0
  1484. data/Slic3r/Linux/lib/std/unicore/lib/OMath/Y.pl +112 -0
  1485. data/Slic3r/Linux/lib/std/unicore/lib/OUpper/N.pl +15 -0
  1486. data/Slic3r/Linux/lib/std/unicore/lib/OUpper/Y.pl +14 -0
  1487. data/Slic3r/Linux/lib/std/unicore/lib/PatSyn/N.pl +41 -0
  1488. data/Slic3r/Linux/lib/std/unicore/lib/PatSyn/Y.pl +40 -0
  1489. data/Slic3r/Linux/lib/std/unicore/lib/PatWS/N.pl +18 -0
  1490. data/Slic3r/Linux/lib/std/unicore/lib/PatWS/Y.pl +17 -0
  1491. data/Slic3r/Linux/lib/std/unicore/lib/Perl/Alnum.pl +521 -0
  1492. data/Slic3r/Linux/lib/std/unicore/lib/Perl/Any.pl +13 -0
  1493. data/Slic3r/Linux/lib/std/unicore/lib/Perl/Assigned.pl +513 -0
  1494. data/Slic3r/Linux/lib/std/unicore/lib/Perl/Blank.pl +21 -0
  1495. data/Slic3r/Linux/lib/std/unicore/lib/Perl/Graph.pl +518 -0
  1496. data/Slic3r/Linux/lib/std/unicore/lib/Perl/PerlSpac.pl +15 -0
  1497. data/Slic3r/Linux/lib/std/unicore/lib/Perl/PerlWord.pl +16 -0
  1498. data/Slic3r/Linux/lib/std/unicore/lib/Perl/PosixAln.pl +15 -0
  1499. data/Slic3r/Linux/lib/std/unicore/lib/Perl/PosixAlp.pl +14 -0
  1500. data/Slic3r/Linux/lib/std/unicore/lib/Perl/PosixBla.pl +14 -0
  1501. data/Slic3r/Linux/lib/std/unicore/lib/Perl/PosixCnt.pl +14 -0
  1502. data/Slic3r/Linux/lib/std/unicore/lib/Perl/PosixDig.pl +13 -0
  1503. data/Slic3r/Linux/lib/std/unicore/lib/Perl/PosixGra.pl +13 -0
  1504. data/Slic3r/Linux/lib/std/unicore/lib/Perl/PosixLow.pl +13 -0
  1505. data/Slic3r/Linux/lib/std/unicore/lib/Perl/PosixPri.pl +13 -0
  1506. data/Slic3r/Linux/lib/std/unicore/lib/Perl/PosixPun.pl +16 -0
  1507. data/Slic3r/Linux/lib/std/unicore/lib/Perl/PosixSpa.pl +14 -0
  1508. data/Slic3r/Linux/lib/std/unicore/lib/Perl/PosixUpp.pl +13 -0
  1509. data/Slic3r/Linux/lib/std/unicore/lib/Perl/Print.pl +515 -0
  1510. data/Slic3r/Linux/lib/std/unicore/lib/Perl/SpacePer.pl +24 -0
  1511. data/Slic3r/Linux/lib/std/unicore/lib/Perl/Title.pl +22 -0
  1512. data/Slic3r/Linux/lib/std/unicore/lib/Perl/VertSpac.pl +15 -0
  1513. data/Slic3r/Linux/lib/std/unicore/lib/Perl/Word.pl +526 -0
  1514. data/Slic3r/Linux/lib/std/unicore/lib/Perl/XPosixPu.pl +140 -0
  1515. data/Slic3r/Linux/lib/std/unicore/lib/Perl/_XBegin.pl +30 -0
  1516. data/Slic3r/Linux/lib/std/unicore/lib/Perl/_XExtend.pl +206 -0
  1517. data/Slic3r/Linux/lib/std/unicore/lib/Perl/_XLVLVTV.pl +15 -0
  1518. data/Slic3r/Linux/lib/std/unicore/lib/QMark/N.pl +25 -0
  1519. data/Slic3r/Linux/lib/std/unicore/lib/QMark/Y.pl +24 -0
  1520. data/Slic3r/Linux/lib/std/unicore/lib/Radical/N.pl +16 -0
  1521. data/Slic3r/Linux/lib/std/unicore/lib/Radical/Y.pl +15 -0
  1522. data/Slic3r/Linux/lib/std/unicore/lib/SB/AT.pl +16 -0
  1523. data/Slic3r/Linux/lib/std/unicore/lib/SB/CL.pl +53 -0
  1524. data/Slic3r/Linux/lib/std/unicore/lib/SB/EX.pl +207 -0
  1525. data/Slic3r/Linux/lib/std/unicore/lib/SB/FO.pl +28 -0
  1526. data/Slic3r/Linux/lib/std/unicore/lib/SB/LE.pl +362 -0
  1527. data/Slic3r/Linux/lib/std/unicore/lib/SB/LO.pl +623 -0
  1528. data/Slic3r/Linux/lib/std/unicore/lib/SB/SC.pl +31 -0
  1529. data/Slic3r/Linux/lib/std/unicore/lib/SB/SE.pl +14 -0
  1530. data/Slic3r/Linux/lib/std/unicore/lib/SB/ST.pl +56 -0
  1531. data/Slic3r/Linux/lib/std/unicore/lib/SB/Sp.pl +22 -0
  1532. data/Slic3r/Linux/lib/std/unicore/lib/SB/UP.pl +620 -0
  1533. data/Slic3r/Linux/lib/std/unicore/lib/SB/XX.pl +584 -0
  1534. data/Slic3r/Linux/lib/std/unicore/lib/SD/N.pl +44 -0
  1535. data/Slic3r/Linux/lib/std/unicore/lib/SD/Y.pl +43 -0
  1536. data/Slic3r/Linux/lib/std/unicore/lib/STerm/N.pl +60 -0
  1537. data/Slic3r/Linux/lib/std/unicore/lib/STerm/Y.pl +59 -0
  1538. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Arab.pl +31 -0
  1539. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Armi.pl +14 -0
  1540. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Armn.pl +17 -0
  1541. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Avst.pl +14 -0
  1542. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Bali.pl +14 -0
  1543. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Bamu.pl +14 -0
  1544. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Batk.pl +14 -0
  1545. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Beng.pl +26 -0
  1546. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Bopo.pl +15 -0
  1547. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Brah.pl +14 -0
  1548. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Bugi.pl +14 -0
  1549. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Buhd.pl +13 -0
  1550. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Cans.pl +14 -0
  1551. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Cari.pl +13 -0
  1552. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Cham.pl +16 -0
  1553. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Cher.pl +13 -0
  1554. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Copt.pl +15 -0
  1555. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Cprt.pl +18 -0
  1556. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Cyrl.pl +19 -0
  1557. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Deva.pl +18 -0
  1558. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Egyp.pl +13 -0
  1559. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Ethi.pl +44 -0
  1560. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Geor.pl +16 -0
  1561. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Glag.pl +14 -0
  1562. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Goth.pl +13 -0
  1563. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Grek.pl +45 -0
  1564. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Gujr.pl +26 -0
  1565. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Guru.pl +28 -0
  1566. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Han.pl +28 -0
  1567. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Hang.pl +26 -0
  1568. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Hano.pl +13 -0
  1569. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Hebr.pl +21 -0
  1570. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Hira.pl +16 -0
  1571. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Ital.pl +14 -0
  1572. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Java.pl +15 -0
  1573. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Kana.pl +20 -0
  1574. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Khar.pl +20 -0
  1575. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Khmr.pl +16 -0
  1576. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Knda.pl +26 -0
  1577. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Kthi.pl +13 -0
  1578. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Lana.pl +17 -0
  1579. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Lao.pl +30 -0
  1580. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Latn.pl +42 -0
  1581. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Lepc.pl +15 -0
  1582. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Limb.pl +17 -0
  1583. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Linb.pl +19 -0
  1584. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Lyci.pl +13 -0
  1585. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Lydi.pl +14 -0
  1586. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Mand.pl +14 -0
  1587. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Mlym.pl +23 -0
  1588. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Mong.pl +18 -0
  1589. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Mtei.pl +14 -0
  1590. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Mymr.pl +14 -0
  1591. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Nko.pl +13 -0
  1592. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Ogam.pl +13 -0
  1593. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Orkh.pl +13 -0
  1594. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Orya.pl +26 -0
  1595. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Osma.pl +14 -0
  1596. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Phag.pl +13 -0
  1597. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Phli.pl +14 -0
  1598. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Phnx.pl +14 -0
  1599. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Prti.pl +14 -0
  1600. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Rjng.pl +14 -0
  1601. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Runr.pl +14 -0
  1602. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Samr.pl +14 -0
  1603. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Saur.pl +14 -0
  1604. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Sinh.pl +23 -0
  1605. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Sund.pl +14 -0
  1606. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Sylo.pl +13 -0
  1607. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Syrc.pl +15 -0
  1608. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Tagb.pl +15 -0
  1609. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Tale.pl +14 -0
  1610. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Talu.pl +16 -0
  1611. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Taml.pl +28 -0
  1612. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Tavt.pl +14 -0
  1613. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Telu.pl +26 -0
  1614. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Tfng.pl +15 -0
  1615. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Tglg.pl +14 -0
  1616. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Thaa.pl +13 -0
  1617. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Thai.pl +14 -0
  1618. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Tibt.pl +19 -0
  1619. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Ugar.pl +14 -0
  1620. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Vai.pl +13 -0
  1621. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Xpeo.pl +14 -0
  1622. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Xsux.pl +15 -0
  1623. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Yi.pl +14 -0
  1624. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Zinh.pl +36 -0
  1625. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Zyyy.pl +181 -0
  1626. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Zzzz.pl +511 -0
  1627. data/Slic3r/Linux/lib/std/unicore/lib/Space/N.pl +24 -0
  1628. data/Slic3r/Linux/lib/std/unicore/lib/Space/Y.pl +23 -0
  1629. data/Slic3r/Linux/lib/std/unicore/lib/Term/N.pl +80 -0
  1630. data/Slic3r/Linux/lib/std/unicore/lib/Term/Y.pl +79 -0
  1631. data/Slic3r/Linux/lib/std/unicore/lib/UIdeo/N.pl +25 -0
  1632. data/Slic3r/Linux/lib/std/unicore/lib/UIdeo/Y.pl +24 -0
  1633. data/Slic3r/Linux/lib/std/unicore/lib/Upper/N.pl +618 -0
  1634. data/Slic3r/Linux/lib/std/unicore/lib/Upper/Y.pl +617 -0
  1635. data/Slic3r/Linux/lib/std/unicore/lib/VS/N.pl +16 -0
  1636. data/Slic3r/Linux/lib/std/unicore/lib/VS/Y.pl +15 -0
  1637. data/Slic3r/Linux/lib/std/unicore/lib/WB/EX.pl +18 -0
  1638. data/Slic3r/Linux/lib/std/unicore/lib/WB/FO.pl +27 -0
  1639. data/Slic3r/Linux/lib/std/unicore/lib/WB/KA.pl +21 -0
  1640. data/Slic3r/Linux/lib/std/unicore/lib/WB/LE.pl +388 -0
  1641. data/Slic3r/Linux/lib/std/unicore/lib/WB/MB.pl +19 -0
  1642. data/Slic3r/Linux/lib/std/unicore/lib/WB/ML.pl +20 -0
  1643. data/Slic3r/Linux/lib/std/unicore/lib/WB/MN.pl +26 -0
  1644. data/Slic3r/Linux/lib/std/unicore/lib/WB/NL.pl +15 -0
  1645. data/Slic3r/Linux/lib/std/unicore/lib/WB/NU.pl +50 -0
  1646. data/Slic3r/Linux/lib/std/unicore/lib/WB/XX.pl +539 -0
  1647. data/Slic3r/Linux/lib/std/unicore/lib/XIDC/N.pl +534 -0
  1648. data/Slic3r/Linux/lib/std/unicore/lib/XIDC/Y.pl +533 -0
  1649. data/Slic3r/Linux/lib/std/unicore/lib/XIDS/N.pl +457 -0
  1650. data/Slic3r/Linux/lib/std/unicore/lib/XIDS/Y.pl +456 -0
  1651. data/Slic3r/Linux/lib/std/utf8.pm +214 -0
  1652. data/Slic3r/Linux/lib/std/utf8_heavy.pl +550 -0
  1653. data/Slic3r/Linux/lib/vrt/528ccea98cad02a5f453a7135f9ca183/package.lib +0 -0
  1654. data/Slic3r/Linux/lib/vrt/804f15d0b003b04c3feb68e47adacf8d/package.lib +1 -0
  1655. data/Slic3r/Linux/lib/vrt/fa119178d164dcf97f19aecc876231c0/package.lib +0 -0
  1656. data/Slic3r/Linux/res/Slic3r.icns +0 -0
  1657. data/Slic3r/Linux/res/Slic3r.ico +0 -0
  1658. data/Slic3r/Linux/res/Slic3r.png +0 -0
  1659. data/Slic3r/Linux/res/Slic3r_128px.png +0 -0
  1660. data/Slic3r/Linux/res/Slic3r_192px.png +0 -0
  1661. data/Slic3r/Linux/res/Slic3r_192px_transparent.png +0 -0
  1662. data/Slic3r/Linux/res/add.png +0 -0
  1663. data/Slic3r/Linux/res/arrow_out.png +0 -0
  1664. data/Slic3r/Linux/res/arrow_rotate_anticlockwise.png +0 -0
  1665. data/Slic3r/Linux/res/arrow_rotate_clockwise.png +0 -0
  1666. data/Slic3r/Linux/res/arrow_up.png +0 -0
  1667. data/Slic3r/Linux/res/box.png +0 -0
  1668. data/Slic3r/Linux/res/brick.png +0 -0
  1669. data/Slic3r/Linux/res/brick_add.png +0 -0
  1670. data/Slic3r/Linux/res/brick_delete.png +0 -0
  1671. data/Slic3r/Linux/res/brick_go.png +0 -0
  1672. data/Slic3r/Linux/res/bricks.png +0 -0
  1673. data/Slic3r/Linux/res/building.png +0 -0
  1674. data/Slic3r/Linux/res/bullet_black.png +0 -0
  1675. data/Slic3r/Linux/res/bullet_blue.png +0 -0
  1676. data/Slic3r/Linux/res/bullet_white.png +0 -0
  1677. data/Slic3r/Linux/res/cog.png +0 -0
  1678. data/Slic3r/Linux/res/cog_go.png +0 -0
  1679. data/Slic3r/Linux/res/cross.png +0 -0
  1680. data/Slic3r/Linux/res/delete.png +0 -0
  1681. data/Slic3r/Linux/res/disk.png +0 -0
  1682. data/Slic3r/Linux/res/error.png +0 -0
  1683. data/Slic3r/Linux/res/funnel.png +0 -0
  1684. data/Slic3r/Linux/res/hourglass.png +0 -0
  1685. data/Slic3r/Linux/res/layers.png +0 -0
  1686. data/Slic3r/Linux/res/note.png +0 -0
  1687. data/Slic3r/Linux/res/package.png +0 -0
  1688. data/Slic3r/Linux/res/package_green.png +0 -0
  1689. data/Slic3r/Linux/res/page_white_go.png +0 -0
  1690. data/Slic3r/Linux/res/plugin.png +0 -0
  1691. data/Slic3r/Linux/res/printer_empty.png +0 -0
  1692. data/Slic3r/Linux/res/shading.png +0 -0
  1693. data/Slic3r/Linux/res/shape_ungroup.png +0 -0
  1694. data/Slic3r/Linux/res/spool.png +0 -0
  1695. data/Slic3r/Linux/res/tag_blue.png +0 -0
  1696. data/Slic3r/Linux/res/time.png +0 -0
  1697. data/Slic3r/Linux/res/wrench.png +0 -0
  1698. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libperl.dylib +0 -0
  1699. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_baseu-2.9.3.0.0.dylib +0 -0
  1700. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_baseu-2.9.3.dylib +1 -0
  1701. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_baseu-2.9.dylib +1 -0
  1702. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_baseu_net-2.9.3.0.0.dylib +0 -0
  1703. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_baseu_net-2.9.3.dylib +1 -0
  1704. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_baseu_net-2.9.dylib +1 -0
  1705. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_osx_cocoau_adv-2.9.3.0.0.dylib +0 -0
  1706. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_osx_cocoau_adv-2.9.3.dylib +1 -0
  1707. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_osx_cocoau_adv-2.9.dylib +1 -0
  1708. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_osx_cocoau_core-2.9.3.0.0.dylib +0 -0
  1709. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_osx_cocoau_core-2.9.3.dylib +1 -0
  1710. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_osx_cocoau_core-2.9.dylib +1 -0
  1711. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_osx_cocoau_gl-2.9.3.0.0.dylib +0 -0
  1712. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_osx_cocoau_gl-2.9.3.dylib +1 -0
  1713. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_osx_cocoau_gl-2.9.dylib +1 -0
  1714. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_osx_cocoau_html-2.9.3.0.0.dylib +0 -0
  1715. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_osx_cocoau_html-2.9.3.dylib +1 -0
  1716. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_osx_cocoau_html-2.9.dylib +1 -0
  1717. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_osx_cocoau_media-2.9.3.0.0.dylib +0 -0
  1718. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_osx_cocoau_media-2.9.3.dylib +1 -0
  1719. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_osx_cocoau_media-2.9.dylib +1 -0
  1720. data/Slic3r/Mac/Slic3r.app/Contents/Info.plist +27 -0
  1721. data/Slic3r/Mac/Slic3r.app/Contents/MacOS/slic3r +0 -0
  1722. data/Slic3r/Mac/Slic3r.app/Contents/PkgInfo +1 -0
  1723. data/Slic3r/Mac/Slic3r.app/Contents/Resources/Slic3r.icns +0 -0
  1724. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/std/Mozilla/CA.pm +99 -0
  1725. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/std/Mozilla/CA/cacert.pem +3366 -0
  1726. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/std/XML/SAX/ParserDetails.ini +16 -0
  1727. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/00fe171e54eaa45f327269069a84261c/SHA.bundle +0 -0
  1728. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/01641a74022c3bbdcd3a4cd5ffa26f07/ExpatXS.bundle +0 -0
  1729. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/02275a9ba60dd2657ec564332cc8c8a6/mro.bundle +0 -0
  1730. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/0599c4249af65dd82091e4b41e75dcac/GLCanvas.bundle +0 -0
  1731. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/0b007f4858c19ac489b6482dc8d8e973/Base64.bundle +0 -0
  1732. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/11897113663a72e0cf3a40f86569d0d3/package.lib +437 -0
  1733. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/181b750c50b989ea215e0c9788700590/scalar.bundle +0 -0
  1734. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/18e56ac547628015c934d8e62b2e59fb/shared.bundle +0 -0
  1735. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/193e996343c27253990f34ec93d7ae14/XS.bundle +0 -0
  1736. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/1e7eafa7ded7f14757bba03f9721336f/MD5.bundle +0 -0
  1737. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/2203e7a3df69c390965a2aa240378b54/FastCalc.bundle +0 -0
  1738. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/3b0e1864ce168232981b0e0b6e4ba639/Zlib.bundle +0 -0
  1739. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/4219a41428dfbeccc0004f15dc4778d8/Unicode.bundle +0 -0
  1740. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/42c3d19347a691f255d231da3d91f1ab/package.lib +332 -0
  1741. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/446150103e8711b6887777b796b96e92/Storable.bundle +0 -0
  1742. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/471029ae61c0427e58f24ac9e5a0cca5/package.lib +41 -0
  1743. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/4b2be1b5f4e6e6643e35d2fcdd27000d/Fcntl.bundle +0 -0
  1744. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/4c8cb4098e6eacc0dda716777c02e08e/Print.bundle +0 -0
  1745. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/51a64b55f893bfcb317be27527adb1c6/XSAccessor.bundle +0 -0
  1746. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/528ccea98cad02a5f453a7135f9ca183/package.lib +0 -0
  1747. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/5abe14a55ea43955299905c968f6b868/NamedCapture.bundle +0 -0
  1748. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/5da723b19d0784844a5d9228c25b1022/IO.bundle +0 -0
  1749. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/5efcd6c8c536b3b2d25ffece18e6cc7f/Byte.bundle +0 -0
  1750. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/62d4f6d2fa13586d2f8d48e80fcaad8d/re.bundle +0 -0
  1751. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/65951cec1d16610098f09e209050a4e5/encoding.bundle +0 -0
  1752. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/72315e121508feb38a782d3bd60cf0e1/Encode.bundle +0 -0
  1753. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/72f45450977a0f098e76b5b1270fb1fa/TW.bundle +0 -0
  1754. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/74f1151ea68af8b93e28a8d7b59bc6f1/Util.bundle +0 -0
  1755. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/7a1d45f404be604381d8b95f374ecae2/POSIX.bundle +0 -0
  1756. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/7a9108dfb82f49ad15e339776671a0c9/KR.bundle +0 -0
  1757. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/7e549424075365bb7bac11a08b208145/XS.bundle +0 -0
  1758. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/7e7926fce7d528168853b8dab2c9ccd2/Socket.bundle +0 -0
  1759. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/804f15d0b003b04c3feb68e47adacf8d/package.lib +1 -0
  1760. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/826014915c535a7285f886166a778440/Cwd.bundle +0 -0
  1761. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/83e7bddbda22f4666134d95e35b3292e/Grid.bundle +0 -0
  1762. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/8efb4e8160ee47f9e953900fd189e72c/Symbol.bundle +0 -0
  1763. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/9077b3800b946e19da99a53a92321f77/JP.bundle +0 -0
  1764. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/9425135f44548a4e211eabfbba86fdf7/B.bundle +0 -0
  1765. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/94c9b361d23d6847d023b9e82acbc595/UUID.bundle +0 -0
  1766. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/953dbc6f080a921c10f4fb4adf0a6ea7/SealRequireHints.bundle +0 -0
  1767. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/9f303c03e9bb3b3307210ed1399034f4/Dumper.bundle +0 -0
  1768. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/a3809d03e71342d25daf495917654688/indirect.bundle +0 -0
  1769. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/a499207f115577de989dae697bccf1f7/via.bundle +0 -0
  1770. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/a4ff00c6243840a7c5a181800d0a0e9f/Glob.bundle +0 -0
  1771. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/a8a5488c950b4ae4ab726834ab1f4629/Parser.bundle +0 -0
  1772. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/a927c16eae43f6d2d1fcbca4288c2613/Bzip2.bundle +0 -0
  1773. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/b2467e1e23f7295c8b0e819807403777/Check.bundle +0 -0
  1774. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/b75af51104891e1861cf27a85a06248f/SSLeay.bundle +0 -0
  1775. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/c04409d610134c279178eaab1c0cd45e/multidimensional.bundle +0 -0
  1776. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/c37c19e69c64f01f83616050a4290081/filehandles.bundle +0 -0
  1777. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/c63ee2950efe3f9517034e269406a6f1/Call.bundle +0 -0
  1778. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/c8b43a9fa99c2589e0af3851636037ae/threads.bundle +0 -0
  1779. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/c9bc0bb4eaabb8b3b85268094134ae30/SSLeay.bundle +0 -0
  1780. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/cb9c4ab6b50a6ba6e9a1c58866acb842/HiRes.bundle +0 -0
  1781. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/d73dc34729c26340077a511c9aeae54c/Langinfo.bundle +0 -0
  1782. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/e0833c18d9957e5ef93fd12ea63dc88c/Libm.bundle +0 -0
  1783. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/e4596f5a53563fc95d87c9738c6ed3f1/attributes.bundle +0 -0
  1784. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/e69ac1437c1fe7ba8a391d4a6e017895/DND.bundle +0 -0
  1785. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/f0daa614fb85c8dc08ddd86ef81f8546/EBCDIC.bundle +0 -0
  1786. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/f3d865c9882d669a56d9890365558ef3/Wx.bundle +0 -0
  1787. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/f77494368a2754d99fc9ae63725241b9/CN.bundle +0 -0
  1788. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/f7b6e5c51850d9c5b8f9f118bf8c79e5/OpenGL.bundle +0 -0
  1789. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/fa119178d164dcf97f19aecc876231c0/package.lib +0 -0
  1790. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/ff1c32bbf4efed322b40618fa6cc887f/Html.bundle +0 -0
  1791. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/Slic3r.icns +0 -0
  1792. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/Slic3r.ico +0 -0
  1793. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/Slic3r.png +0 -0
  1794. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/Slic3r_128px.png +0 -0
  1795. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/Slic3r_192px.png +0 -0
  1796. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/Slic3r_192px_transparent.png +0 -0
  1797. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/add.png +0 -0
  1798. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/arrow_out.png +0 -0
  1799. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/arrow_rotate_anticlockwise.png +0 -0
  1800. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/arrow_rotate_clockwise.png +0 -0
  1801. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/arrow_up.png +0 -0
  1802. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/box.png +0 -0
  1803. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/brick.png +0 -0
  1804. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/brick_add.png +0 -0
  1805. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/brick_delete.png +0 -0
  1806. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/brick_go.png +0 -0
  1807. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/bricks.png +0 -0
  1808. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/building.png +0 -0
  1809. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/bullet_black.png +0 -0
  1810. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/bullet_blue.png +0 -0
  1811. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/bullet_white.png +0 -0
  1812. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/cog.png +0 -0
  1813. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/cog_go.png +0 -0
  1814. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/cross.png +0 -0
  1815. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/delete.png +0 -0
  1816. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/disk.png +0 -0
  1817. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/error.png +0 -0
  1818. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/funnel.png +0 -0
  1819. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/hourglass.png +0 -0
  1820. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/layers.png +0 -0
  1821. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/note.png +0 -0
  1822. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/package.png +0 -0
  1823. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/package_green.png +0 -0
  1824. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/page_white_go.png +0 -0
  1825. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/plugin.png +0 -0
  1826. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/printer_empty.png +0 -0
  1827. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/shading.png +0 -0
  1828. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/shape_ungroup.png +0 -0
  1829. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/spool.png +0 -0
  1830. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/tag_blue.png +0 -0
  1831. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/time.png +0 -0
  1832. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/wrench.png +0 -0
  1833. data/Slic3r/Win/bin/cpfworkrt/cpfworkrt.manifest +8 -0
  1834. data/Slic3r/Win/bin/cpfworkrt/libgcc_s_sjlj-1.dll +0 -0
  1835. data/Slic3r/Win/bin/cpfworkrt/libstdc++-6.dll +0 -0
  1836. data/Slic3r/Win/bin/cpfworkrt/perl514.dll +0 -0
  1837. data/Slic3r/Win/cpfworkrt/cpfworkrt.manifest +8 -0
  1838. data/Slic3r/Win/cpfworkrt/libgcc_s_sjlj-1.dll +0 -0
  1839. data/Slic3r/Win/cpfworkrt/libstdc++-6.dll +0 -0
  1840. data/Slic3r/Win/cpfworkrt/perl514.dll +0 -0
  1841. data/Slic3r/Win/dll/cpwgui.exe +0 -0
  1842. data/Slic3r/Win/dll/wxbase293u_gcc_citrusperl.dll +0 -0
  1843. data/Slic3r/Win/dll/wxbase293u_net_gcc_citrusperl.dll +0 -0
  1844. data/Slic3r/Win/dll/wxmsw293u_adv_gcc_citrusperl.dll +0 -0
  1845. data/Slic3r/Win/dll/wxmsw293u_core_gcc_citrusperl.dll +0 -0
  1846. data/Slic3r/Win/dll/wxmsw293u_gl_gcc_citrusperl.dll +0 -0
  1847. data/Slic3r/Win/dll/wxmsw293u_html_gcc_citrusperl.dll +0 -0
  1848. data/Slic3r/Win/lib/std/Mozilla/CA.pm +99 -0
  1849. data/Slic3r/Win/lib/std/Mozilla/CA/cacert.pem +3366 -0
  1850. data/Slic3r/Win/lib/std/XML/SAX/ParserDetails.ini +16 -0
  1851. data/Slic3r/Win/lib/vrt/00065b3cc7c31741588c51da0ebf7cfc/Storable.dll +0 -0
  1852. data/Slic3r/Win/lib/vrt/0e211ef5300e42b7129e72ce6934dd03/File.dll +0 -0
  1853. data/Slic3r/Win/lib/vrt/11897113663a72e0cf3a40f86569d0d3/package.lib +437 -0
  1854. data/Slic3r/Win/lib/vrt/13887bf5057dfc645e73f9cbc2107b0b/shared.dll +0 -0
  1855. data/Slic3r/Win/lib/vrt/13b74231834b96c1b29d9bb7ff9fc803/XSAccessor.dll +0 -0
  1856. data/Slic3r/Win/lib/vrt/17a8fd354d07706b1d8e07133653aefe/Unicode.dll +0 -0
  1857. data/Slic3r/Win/lib/vrt/1ff31eb32e672b10095dc07142eda94e/Byte.dll +0 -0
  1858. data/Slic3r/Win/lib/vrt/212acdb3b0d578c6c31b6f5b102aaf9f/OpenGL.dll +0 -0
  1859. data/Slic3r/Win/lib/vrt/212acdb3b0d578c6c31b6f5b102aaf9f/freeglut.dll +0 -0
  1860. data/Slic3r/Win/lib/vrt/2b09d17ec43a6c01f265254b54d60739/Dumper.dll +0 -0
  1861. data/Slic3r/Win/lib/vrt/2ce0a6f8648060f015cf6b795bedf11d/SHA.dll +0 -0
  1862. data/Slic3r/Win/lib/vrt/3545b2d83c9d9a29194f9ab80ec5474b/Fcntl.dll +0 -0
  1863. data/Slic3r/Win/lib/vrt/38786f297f552b7038b60152ad9b90fc/ExpatXS.dll +0 -0
  1864. data/Slic3r/Win/lib/vrt/3d306f1634430f34d0521f8ea684e9ec/SSLeay.dll +0 -0
  1865. data/Slic3r/Win/lib/vrt/3ea9b1cd80f790518c416324dd069ebd/encoding.dll +0 -0
  1866. data/Slic3r/Win/lib/vrt/41c42900fc0d462e9a31e174ac8a654c/Html.dll +0 -0
  1867. data/Slic3r/Win/lib/vrt/42c3d19347a691f255d231da3d91f1ab/package.lib +332 -0
  1868. data/Slic3r/Win/lib/vrt/4699e2a2c6a572106b4070861d78c22a/Parser.dll +0 -0
  1869. data/Slic3r/Win/lib/vrt/46c688003f4a63abb5816f68b951f727/MD5.dll +0 -0
  1870. data/Slic3r/Win/lib/vrt/471029ae61c0427e58f24ac9e5a0cca5/package.lib +41 -0
  1871. data/Slic3r/Win/lib/vrt/49bdccea41102e6d90906b74653d30ab/HiRes.dll +0 -0
  1872. data/Slic3r/Win/lib/vrt/4c9065158b425703c56336bd7fd5bbf2/SSLeay.dll +0 -0
  1873. data/Slic3r/Win/lib/vrt/50e0982503943dcf3f001fc2d17d4075/JP.dll +0 -0
  1874. data/Slic3r/Win/lib/vrt/528ccea98cad02a5f453a7135f9ca183/package.lib +0 -0
  1875. data/Slic3r/Win/lib/vrt/6419170f57dff2f058fefa3f8f37c897/EBCDIC.dll +0 -0
  1876. data/Slic3r/Win/lib/vrt/655af4e236089eadb910a60a39fbe815/attributes.dll +0 -0
  1877. data/Slic3r/Win/lib/vrt/6c123a3a5b411759cc21a293df5bed0e/SealRequireHints.dll +0 -0
  1878. data/Slic3r/Win/lib/vrt/7ba0890aa8ff0eed7abb9f76181bd637/Console.dll +0 -0
  1879. data/Slic3r/Win/lib/vrt/7ef678fd3db32983bdf488c788a3a763/IO.dll +0 -0
  1880. data/Slic3r/Win/lib/vrt/804f15d0b003b04c3feb68e47adacf8d/package.lib +1 -0
  1881. data/Slic3r/Win/lib/vrt/8f7c428c727a7d81643b50b598197734/API.dll +0 -0
  1882. data/Slic3r/Win/lib/vrt/8fa3f50b03f9cb0203031cf516aa3973/B.dll +0 -0
  1883. data/Slic3r/Win/lib/vrt/9573d0f8956394a9448b7cb70a24fed3/CN.dll +0 -0
  1884. data/Slic3r/Win/lib/vrt/9a02fe0b6c8a35ffbf56e88f9910abeb/Base64.dll +0 -0
  1885. data/Slic3r/Win/lib/vrt/9cc90b876890f13970933c948cbb4b2e/Print.dll +0 -0
  1886. data/Slic3r/Win/lib/vrt/9d4869e43aaebbcbfc9baec70819f444/indirect.dll +0 -0
  1887. data/Slic3r/Win/lib/vrt/a3600f18eb88b7c4835e2438eeda19b1/Symbol.dll +0 -0
  1888. data/Slic3r/Win/lib/vrt/a3719ad0fa76c06423d0397090ec4ed9/Libm.dll +0 -0
  1889. data/Slic3r/Win/lib/vrt/a40249e26296df558fcddd2c8cbfb2f6/UUID.dll +0 -0
  1890. data/Slic3r/Win/lib/vrt/aa455d4af51625c2acacb6716c0a6e01/scalar.dll +0 -0
  1891. data/Slic3r/Win/lib/vrt/aa976c80169f479f0613ff5283377098/Win32.dll +0 -0
  1892. data/Slic3r/Win/lib/vrt/ad648dbf31179700b4efd00b04f50dab/multidimensional.dll +0 -0
  1893. data/Slic3r/Win/lib/vrt/b48cd6cc5170110b04444736f8ca1a04/mro.dll +0 -0
  1894. data/Slic3r/Win/lib/vrt/b6a5c6ef2abf4a7046bb88d7a8b220ff/GLCanvas.dll +0 -0
  1895. data/Slic3r/Win/lib/vrt/bd26fbb8f6447c2e98cf359976a3c1a7/POSIX.dll +0 -0
  1896. data/Slic3r/Win/lib/vrt/c23df991c561704a8913289bdfea9462/Zlib.dll +0 -0
  1897. data/Slic3r/Win/lib/vrt/c8786c44f0a905ffe6d5d8a4068a75c2/Call.dll +0 -0
  1898. data/Slic3r/Win/lib/vrt/cbbb6d80da8c62ee893a65195943b803/re.dll +0 -0
  1899. data/Slic3r/Win/lib/vrt/cbfee14465f0627fbadfcc84b97d402b/KR.dll +0 -0
  1900. data/Slic3r/Win/lib/vrt/cd0b5b2fa854963191ca9718e26a0abc/Grid.dll +0 -0
  1901. data/Slic3r/Win/lib/vrt/ceb3487499a2d7f0edbcc6aa0c0536c1/NamedCapture.dll +0 -0
  1902. data/Slic3r/Win/lib/vrt/cfbd454ca865af139a419af806f1d4c7/DND.dll +0 -0
  1903. data/Slic3r/Win/lib/vrt/cfcde55111d441748de61cc95acb240e/Check.dll +0 -0
  1904. data/Slic3r/Win/lib/vrt/d0b4c3dceefb5d08dbe60f0e68d0da76/filehandles.dll +0 -0
  1905. data/Slic3r/Win/lib/vrt/d9c3e3943b3f28bc1f09e2f713cc6afb/Glob.dll +0 -0
  1906. data/Slic3r/Win/lib/vrt/da3813f7e06d5ace75632aaf1738303a/Cwd.dll +0 -0
  1907. data/Slic3r/Win/lib/vrt/e29b9764cd99fd442815834972733f63/Encode.dll +0 -0
  1908. data/Slic3r/Win/lib/vrt/e51409fbea61e7f44156de0a7d61ce6e/FastCalc.dll +0 -0
  1909. data/Slic3r/Win/lib/vrt/eaa3f41565bf2fe58068d68f47a06165/Bzip2.dll +0 -0
  1910. data/Slic3r/Win/lib/vrt/eb8576fa2c159886e7f37945c9fb302c/Util.dll +0 -0
  1911. data/Slic3r/Win/lib/vrt/ef0a1b3a50dcc9984703f576320986af/Socket.dll +0 -0
  1912. data/Slic3r/Win/lib/vrt/efa78e66d1d123d9a6f5890b6ca9167a/TW.dll +0 -0
  1913. data/Slic3r/Win/lib/vrt/f490c3f60de8989339da70e91e2faf32/threads.dll +0 -0
  1914. data/Slic3r/Win/lib/vrt/f6025e058c0367c56e8eed568e60077b/Clone.dll +0 -0
  1915. data/Slic3r/Win/lib/vrt/f8d8299b70fb38b8f4ba594e6f23c91f/XS.dll +0 -0
  1916. data/Slic3r/Win/lib/vrt/fa119178d164dcf97f19aecc876231c0/package.lib +0 -0
  1917. data/Slic3r/Win/lib/vrt/fadbe2ebaf950eb9e5e3c3d65739aa92/via.dll +0 -0
  1918. data/Slic3r/Win/lib/vrt/fb078e7d1a272046eb7bd617bd3ed5c4/Wx.dll +0 -0
  1919. data/Slic3r/Win/lib/vrt/ffa8ccc0f7f886ba695e841a491bce9a/XS.dll +0 -0
  1920. data/Slic3r/Win/res/Slic3r.icns +0 -0
  1921. data/Slic3r/Win/res/Slic3r.ico +0 -0
  1922. data/Slic3r/Win/res/Slic3r.png +0 -0
  1923. data/Slic3r/Win/res/Slic3r_128px.png +0 -0
  1924. data/Slic3r/Win/res/Slic3r_192px.png +0 -0
  1925. data/Slic3r/Win/res/Slic3r_192px_transparent.png +0 -0
  1926. data/Slic3r/Win/res/add.png +0 -0
  1927. data/Slic3r/Win/res/arrow_out.png +0 -0
  1928. data/Slic3r/Win/res/arrow_rotate_anticlockwise.png +0 -0
  1929. data/Slic3r/Win/res/arrow_rotate_clockwise.png +0 -0
  1930. data/Slic3r/Win/res/arrow_up.png +0 -0
  1931. data/Slic3r/Win/res/box.png +0 -0
  1932. data/Slic3r/Win/res/brick.png +0 -0
  1933. data/Slic3r/Win/res/brick_add.png +0 -0
  1934. data/Slic3r/Win/res/brick_delete.png +0 -0
  1935. data/Slic3r/Win/res/brick_go.png +0 -0
  1936. data/Slic3r/Win/res/bricks.png +0 -0
  1937. data/Slic3r/Win/res/building.png +0 -0
  1938. data/Slic3r/Win/res/bullet_black.png +0 -0
  1939. data/Slic3r/Win/res/bullet_blue.png +0 -0
  1940. data/Slic3r/Win/res/bullet_white.png +0 -0
  1941. data/Slic3r/Win/res/cog.png +0 -0
  1942. data/Slic3r/Win/res/cog_go.png +0 -0
  1943. data/Slic3r/Win/res/cross.png +0 -0
  1944. data/Slic3r/Win/res/delete.png +0 -0
  1945. data/Slic3r/Win/res/disk.png +0 -0
  1946. data/Slic3r/Win/res/error.png +0 -0
  1947. data/Slic3r/Win/res/funnel.png +0 -0
  1948. data/Slic3r/Win/res/hourglass.png +0 -0
  1949. data/Slic3r/Win/res/layers.png +0 -0
  1950. data/Slic3r/Win/res/note.png +0 -0
  1951. data/Slic3r/Win/res/package.png +0 -0
  1952. data/Slic3r/Win/res/package_green.png +0 -0
  1953. data/Slic3r/Win/res/page_white_go.png +0 -0
  1954. data/Slic3r/Win/res/plugin.png +0 -0
  1955. data/Slic3r/Win/res/printer_empty.png +0 -0
  1956. data/Slic3r/Win/res/shading.png +0 -0
  1957. data/Slic3r/Win/res/shape_ungroup.png +0 -0
  1958. data/Slic3r/Win/res/spool.png +0 -0
  1959. data/Slic3r/Win/res/tag_blue.png +0 -0
  1960. data/Slic3r/Win/res/time.png +0 -0
  1961. data/Slic3r/Win/res/wrench.png +0 -0
  1962. data/Slic3r/Win/slic3r-console.exe +0 -0
  1963. data/Slic3r/Win/slic3r.exe +0 -0
  1964. data/Slic3r/Win/temp.txt +278 -0
  1965. data/lib/STLExtract.rb +155 -0
  1966. data/lib/STLExtract/version.rb +3 -0
  1967. metadata +2044 -0
@@ -0,0 +1,209 @@
1
+ # FindBin.pm
2
+ #
3
+ # Copyright (c) 1995 Graham Barr & Nick Ing-Simmons. All rights reserved.
4
+ # This program is free software; you can redistribute it and/or modify it
5
+ # under the same terms as Perl itself.
6
+
7
+ =head1 NAME
8
+
9
+ FindBin - Locate directory of original perl script
10
+
11
+ =head1 SYNOPSIS
12
+
13
+ use FindBin;
14
+ use lib "$FindBin::Bin/../lib";
15
+
16
+ or
17
+
18
+ use FindBin qw($Bin);
19
+ use lib "$Bin/../lib";
20
+
21
+ =head1 DESCRIPTION
22
+
23
+ Locates the full path to the script bin directory to allow the use
24
+ of paths relative to the bin directory.
25
+
26
+ This allows a user to setup a directory tree for some software with
27
+ directories C<< <root>/bin >> and C<< <root>/lib >>, and then the above
28
+ example will allow the use of modules in the lib directory without knowing
29
+ where the software tree is installed.
30
+
31
+ If perl is invoked using the B<-e> option or the perl script is read from
32
+ C<STDIN> then FindBin sets both C<$Bin> and C<$RealBin> to the current
33
+ directory.
34
+
35
+ =head1 EXPORTABLE VARIABLES
36
+
37
+ $Bin - path to bin directory from where script was invoked
38
+ $Script - basename of script from which perl was invoked
39
+ $RealBin - $Bin with all links resolved
40
+ $RealScript - $Script with all links resolved
41
+
42
+ =head1 KNOWN ISSUES
43
+
44
+ If there are two modules using C<FindBin> from different directories
45
+ under the same interpreter, this won't work. Since C<FindBin> uses a
46
+ C<BEGIN> block, it'll be executed only once, and only the first caller
47
+ will get it right. This is a problem under mod_perl and other persistent
48
+ Perl environments, where you shouldn't use this module. Which also means
49
+ that you should avoid using C<FindBin> in modules that you plan to put
50
+ on CPAN. To make sure that C<FindBin> will work is to call the C<again>
51
+ function:
52
+
53
+ use FindBin;
54
+ FindBin::again(); # or FindBin->again;
55
+
56
+ In former versions of FindBin there was no C<again> function. The
57
+ workaround was to force the C<BEGIN> block to be executed again:
58
+
59
+ delete $INC{'FindBin.pm'};
60
+ require FindBin;
61
+
62
+ =head1 KNOWN BUGS
63
+
64
+ If perl is invoked as
65
+
66
+ perl filename
67
+
68
+ and I<filename> does not have executable rights and a program called
69
+ I<filename> exists in the users C<$ENV{PATH}> which satisfies both B<-x>
70
+ and B<-T> then FindBin assumes that it was invoked via the
71
+ C<$ENV{PATH}>.
72
+
73
+ Workaround is to invoke perl as
74
+
75
+ perl ./filename
76
+
77
+ =head1 AUTHORS
78
+
79
+ FindBin is supported as part of the core perl distribution. Please send bug
80
+ reports to E<lt>F<perlbug@perl.org>E<gt> using the perlbug program
81
+ included with perl.
82
+
83
+ Graham Barr E<lt>F<gbarr@pobox.com>E<gt>
84
+ Nick Ing-Simmons E<lt>F<nik@tiuk.ti.com>E<gt>
85
+
86
+ =head1 COPYRIGHT
87
+
88
+ Copyright (c) 1995 Graham Barr & Nick Ing-Simmons. All rights reserved.
89
+ This program is free software; you can redistribute it and/or modify it
90
+ under the same terms as Perl itself.
91
+
92
+ =cut
93
+
94
+ package FindBin;
95
+ use Carp;
96
+ require 5.000;
97
+ require Exporter;
98
+ use Cwd qw(getcwd cwd abs_path);
99
+ use File::Basename;
100
+ use File::Spec;
101
+
102
+ @EXPORT_OK = qw($Bin $Script $RealBin $RealScript $Dir $RealDir);
103
+ %EXPORT_TAGS = (ALL => [qw($Bin $Script $RealBin $RealScript $Dir $RealDir)]);
104
+ @ISA = qw(Exporter);
105
+
106
+ $VERSION = "1.50";
107
+
108
+
109
+ # needed for VMS-specific filename translation
110
+ if( $^O eq 'VMS' ) {
111
+ require VMS::Filespec;
112
+ VMS::Filespec->import;
113
+ }
114
+
115
+ sub cwd2 {
116
+ my $cwd = getcwd();
117
+ # getcwd might fail if it hasn't access to the current directory.
118
+ # try harder.
119
+ defined $cwd or $cwd = cwd();
120
+ $cwd;
121
+ }
122
+
123
+ sub init
124
+ {
125
+ *Dir = \$Bin;
126
+ *RealDir = \$RealBin;
127
+
128
+ if($0 eq '-e' || $0 eq '-')
129
+ {
130
+ # perl invoked with -e or script is on C<STDIN>
131
+ $Script = $RealScript = $0;
132
+ $Bin = $RealBin = cwd2();
133
+ $Bin = VMS::Filespec::unixify($Bin) if $^O eq 'VMS';
134
+ }
135
+ else
136
+ {
137
+ my $script = $0;
138
+
139
+ if ($^O eq 'VMS')
140
+ {
141
+ ($Bin,$Script) = VMS::Filespec::rmsexpand($0) =~ /(.*[\]>\/]+)(.*)/s;
142
+ # C<use disk:[dev]/lib> isn't going to work, so unixify first
143
+ ($Bin = VMS::Filespec::unixify($Bin)) =~ s/\/\z//;
144
+ ($RealBin,$RealScript) = ($Bin,$Script);
145
+ }
146
+ else
147
+ {
148
+ my $dosish = ($^O eq 'MSWin32' or $^O eq 'os2');
149
+ unless(($script =~ m#/# || ($dosish && $script =~ m#\\#))
150
+ && -f $script)
151
+ {
152
+ my $dir;
153
+ foreach $dir (File::Spec->path)
154
+ {
155
+ my $scr = File::Spec->catfile($dir, $script);
156
+
157
+ # $script can been found via PATH but perl could have
158
+ # been invoked as 'perl file'. Do a dumb check to see
159
+ # if $script is a perl program, if not then keep $script = $0
160
+ #
161
+ # well we actually only check that it is an ASCII file
162
+ # we know its executable so it is probably a script
163
+ # of some sort.
164
+ if(-f $scr && -r _ && ($dosish || -x _) && -s _ && -T _)
165
+ {
166
+ $script = $scr;
167
+ last;
168
+ }
169
+ }
170
+ }
171
+
172
+ croak("Cannot find current script '$0'") unless(-f $script);
173
+
174
+ # Ensure $script contains the complete path in case we C<chdir>
175
+
176
+ $script = File::Spec->catfile(cwd2(), $script)
177
+ unless File::Spec->file_name_is_absolute($script);
178
+
179
+ ($Script,$Bin) = fileparse($script);
180
+
181
+ # Resolve $script if it is a link
182
+ while(1)
183
+ {
184
+ my $linktext = readlink($script);
185
+
186
+ ($RealScript,$RealBin) = fileparse($script);
187
+ last unless defined $linktext;
188
+
189
+ $script = (File::Spec->file_name_is_absolute($linktext))
190
+ ? $linktext
191
+ : File::Spec->catfile($RealBin, $linktext);
192
+ }
193
+
194
+ # Get absolute paths to directories
195
+ if ($Bin) {
196
+ my $BinOld = $Bin;
197
+ $Bin = abs_path($Bin);
198
+ defined $Bin or $Bin = File::Spec->canonpath($BinOld);
199
+ }
200
+ $RealBin = abs_path($RealBin) if($RealBin);
201
+ }
202
+ }
203
+ }
204
+
205
+ BEGIN { init }
206
+
207
+ *again = \&init;
208
+
209
+ 1; # Keep require happy
@@ -0,0 +1,2693 @@
1
+ #! perl
2
+
3
+ # Getopt::Long.pm -- Universal options parsing
4
+ # Author : Johan Vromans
5
+ # Created On : Tue Sep 11 15:00:12 1990
6
+ # Last Modified By: Johan Vromans
7
+ # Last Modified On: Tue Oct 1 08:25:52 2013
8
+ # Update Count : 1651
9
+ # Status : Released
10
+
11
+ ################ Module Preamble ################
12
+
13
+ package Getopt::Long;
14
+
15
+ use 5.004;
16
+
17
+ use strict;
18
+
19
+ use vars qw($VERSION);
20
+ $VERSION = 2.42;
21
+ # For testing versions only.
22
+ use vars qw($VERSION_STRING);
23
+ $VERSION_STRING = "2.42";
24
+
25
+ use Exporter;
26
+ use vars qw(@ISA @EXPORT @EXPORT_OK);
27
+ @ISA = qw(Exporter);
28
+
29
+ # Exported subroutines.
30
+ sub GetOptions(@); # always
31
+ sub GetOptionsFromArray(@); # on demand
32
+ sub GetOptionsFromString(@); # on demand
33
+ sub Configure(@); # on demand
34
+ sub HelpMessage(@); # on demand
35
+ sub VersionMessage(@); # in demand
36
+
37
+ BEGIN {
38
+ # Init immediately so their contents can be used in the 'use vars' below.
39
+ @EXPORT = qw(&GetOptions $REQUIRE_ORDER $PERMUTE $RETURN_IN_ORDER);
40
+ @EXPORT_OK = qw(&HelpMessage &VersionMessage &Configure
41
+ &GetOptionsFromArray &GetOptionsFromString);
42
+ }
43
+
44
+ # User visible variables.
45
+ use vars @EXPORT, @EXPORT_OK;
46
+ use vars qw($error $debug $major_version $minor_version);
47
+ # Deprecated visible variables.
48
+ use vars qw($autoabbrev $getopt_compat $ignorecase $bundling $order
49
+ $passthrough);
50
+ # Official invisible variables.
51
+ use vars qw($genprefix $caller $gnu_compat $auto_help $auto_version $longprefix);
52
+
53
+ # Public subroutines.
54
+ sub config(@); # deprecated name
55
+
56
+ # Private subroutines.
57
+ sub ConfigDefaults();
58
+ sub ParseOptionSpec($$);
59
+ sub OptCtl($);
60
+ sub FindOption($$$$$);
61
+ sub ValidValue ($$$$$);
62
+
63
+ ################ Local Variables ################
64
+
65
+ # $requested_version holds the version that was mentioned in the 'use'
66
+ # or 'require', if any. It can be used to enable or disable specific
67
+ # features.
68
+ my $requested_version = 0;
69
+
70
+ ################ Resident subroutines ################
71
+
72
+ sub ConfigDefaults() {
73
+ # Handle POSIX compliancy.
74
+ if ( defined $ENV{"POSIXLY_CORRECT"} ) {
75
+ $genprefix = "(--|-)";
76
+ $autoabbrev = 0; # no automatic abbrev of options
77
+ $bundling = 0; # no bundling of single letter switches
78
+ $getopt_compat = 0; # disallow '+' to start options
79
+ $order = $REQUIRE_ORDER;
80
+ }
81
+ else {
82
+ $genprefix = "(--|-|\\+)";
83
+ $autoabbrev = 1; # automatic abbrev of options
84
+ $bundling = 0; # bundling off by default
85
+ $getopt_compat = 1; # allow '+' to start options
86
+ $order = $PERMUTE;
87
+ }
88
+ # Other configurable settings.
89
+ $debug = 0; # for debugging
90
+ $error = 0; # error tally
91
+ $ignorecase = 1; # ignore case when matching options
92
+ $passthrough = 0; # leave unrecognized options alone
93
+ $gnu_compat = 0; # require --opt=val if value is optional
94
+ $longprefix = "(--)"; # what does a long prefix look like
95
+ }
96
+
97
+ # Override import.
98
+ sub import {
99
+ my $pkg = shift; # package
100
+ my @syms = (); # symbols to import
101
+ my @config = (); # configuration
102
+ my $dest = \@syms; # symbols first
103
+ for ( @_ ) {
104
+ if ( $_ eq ':config' ) {
105
+ $dest = \@config; # config next
106
+ next;
107
+ }
108
+ push(@$dest, $_); # push
109
+ }
110
+ # Hide one level and call super.
111
+ local $Exporter::ExportLevel = 1;
112
+ push(@syms, qw(&GetOptions)) if @syms; # always export GetOptions
113
+ $requested_version = 0;
114
+ $pkg->SUPER::import(@syms);
115
+ # And configure.
116
+ Configure(@config) if @config;
117
+ }
118
+
119
+ ################ Initialization ################
120
+
121
+ # Values for $order. See GNU getopt.c for details.
122
+ ($REQUIRE_ORDER, $PERMUTE, $RETURN_IN_ORDER) = (0..2);
123
+ # Version major/minor numbers.
124
+ ($major_version, $minor_version) = $VERSION =~ /^(\d+)\.(\d+)/;
125
+
126
+ ConfigDefaults();
127
+
128
+ ################ OO Interface ################
129
+
130
+ package Getopt::Long::Parser;
131
+
132
+ # Store a copy of the default configuration. Since ConfigDefaults has
133
+ # just been called, what we get from Configure is the default.
134
+ my $default_config = do {
135
+ Getopt::Long::Configure ()
136
+ };
137
+
138
+ sub new {
139
+ my $that = shift;
140
+ my $class = ref($that) || $that;
141
+ my %atts = @_;
142
+
143
+ # Register the callers package.
144
+ my $self = { caller_pkg => (caller)[0] };
145
+
146
+ bless ($self, $class);
147
+
148
+ # Process config attributes.
149
+ if ( defined $atts{config} ) {
150
+ my $save = Getopt::Long::Configure ($default_config, @{$atts{config}});
151
+ $self->{settings} = Getopt::Long::Configure ($save);
152
+ delete ($atts{config});
153
+ }
154
+ # Else use default config.
155
+ else {
156
+ $self->{settings} = $default_config;
157
+ }
158
+
159
+ if ( %atts ) { # Oops
160
+ die(__PACKAGE__.": unhandled attributes: ".
161
+ join(" ", sort(keys(%atts)))."\n");
162
+ }
163
+
164
+ $self;
165
+ }
166
+
167
+ sub configure {
168
+ my ($self) = shift;
169
+
170
+ # Restore settings, merge new settings in.
171
+ my $save = Getopt::Long::Configure ($self->{settings}, @_);
172
+
173
+ # Restore orig config and save the new config.
174
+ $self->{settings} = Getopt::Long::Configure ($save);
175
+ }
176
+
177
+ sub getoptions {
178
+ my ($self) = shift;
179
+
180
+ return $self->getoptionsfromarray(\@ARGV, @_);
181
+ }
182
+
183
+ sub getoptionsfromarray {
184
+ my ($self) = shift;
185
+
186
+ # Restore config settings.
187
+ my $save = Getopt::Long::Configure ($self->{settings});
188
+
189
+ # Call main routine.
190
+ my $ret = 0;
191
+ $Getopt::Long::caller = $self->{caller_pkg};
192
+
193
+ eval {
194
+ # Locally set exception handler to default, otherwise it will
195
+ # be called implicitly here, and again explicitly when we try
196
+ # to deliver the messages.
197
+ local ($SIG{__DIE__}) = 'DEFAULT';
198
+ $ret = Getopt::Long::GetOptionsFromArray (@_);
199
+ };
200
+
201
+ # Restore saved settings.
202
+ Getopt::Long::Configure ($save);
203
+
204
+ # Handle errors and return value.
205
+ die ($@) if $@;
206
+ return $ret;
207
+ }
208
+
209
+ package Getopt::Long;
210
+
211
+ ################ Back to Normal ################
212
+
213
+ # Indices in option control info.
214
+ # Note that ParseOptions uses the fields directly. Search for 'hard-wired'.
215
+ use constant CTL_TYPE => 0;
216
+ #use constant CTL_TYPE_FLAG => '';
217
+ #use constant CTL_TYPE_NEG => '!';
218
+ #use constant CTL_TYPE_INCR => '+';
219
+ #use constant CTL_TYPE_INT => 'i';
220
+ #use constant CTL_TYPE_INTINC => 'I';
221
+ #use constant CTL_TYPE_XINT => 'o';
222
+ #use constant CTL_TYPE_FLOAT => 'f';
223
+ #use constant CTL_TYPE_STRING => 's';
224
+
225
+ use constant CTL_CNAME => 1;
226
+
227
+ use constant CTL_DEFAULT => 2;
228
+
229
+ use constant CTL_DEST => 3;
230
+ use constant CTL_DEST_SCALAR => 0;
231
+ use constant CTL_DEST_ARRAY => 1;
232
+ use constant CTL_DEST_HASH => 2;
233
+ use constant CTL_DEST_CODE => 3;
234
+
235
+ use constant CTL_AMIN => 4;
236
+ use constant CTL_AMAX => 5;
237
+
238
+ # FFU.
239
+ #use constant CTL_RANGE => ;
240
+ #use constant CTL_REPEAT => ;
241
+
242
+ # Rather liberal patterns to match numbers.
243
+ use constant PAT_INT => "[-+]?_*[0-9][0-9_]*";
244
+ use constant PAT_XINT =>
245
+ "(?:".
246
+ "[-+]?_*[1-9][0-9_]*".
247
+ "|".
248
+ "0x_*[0-9a-f][0-9a-f_]*".
249
+ "|".
250
+ "0b_*[01][01_]*".
251
+ "|".
252
+ "0[0-7_]*".
253
+ ")";
254
+ use constant PAT_FLOAT => "[-+]?[0-9_]+(\.[0-9_]+)?([eE][-+]?[0-9_]+)?";
255
+
256
+ sub GetOptions(@) {
257
+ # Shift in default array.
258
+ unshift(@_, \@ARGV);
259
+ # Try to keep caller() and Carp consistent.
260
+ goto &GetOptionsFromArray;
261
+ }
262
+
263
+ sub GetOptionsFromString(@) {
264
+ my ($string) = shift;
265
+ require Text::ParseWords;
266
+ my $args = [ Text::ParseWords::shellwords($string) ];
267
+ $caller ||= (caller)[0]; # current context
268
+ my $ret = GetOptionsFromArray($args, @_);
269
+ return ( $ret, $args ) if wantarray;
270
+ if ( @$args ) {
271
+ $ret = 0;
272
+ warn("GetOptionsFromString: Excess data \"@$args\" in string \"$string\"\n");
273
+ }
274
+ $ret;
275
+ }
276
+
277
+ sub GetOptionsFromArray(@) {
278
+
279
+ my ($argv, @optionlist) = @_; # local copy of the option descriptions
280
+ my $argend = '--'; # option list terminator
281
+ my %opctl = (); # table of option specs
282
+ my $pkg = $caller || (caller)[0]; # current context
283
+ # Needed if linkage is omitted.
284
+ my @ret = (); # accum for non-options
285
+ my %linkage; # linkage
286
+ my $userlinkage; # user supplied HASH
287
+ my $opt; # current option
288
+ my $prefix = $genprefix; # current prefix
289
+
290
+ $error = '';
291
+
292
+ if ( $debug ) {
293
+ # Avoid some warnings if debugging.
294
+ local ($^W) = 0;
295
+ print STDERR
296
+ ("Getopt::Long $Getopt::Long::VERSION ",
297
+ "called from package \"$pkg\".",
298
+ "\n ",
299
+ "argv: (@$argv)",
300
+ "\n ",
301
+ "autoabbrev=$autoabbrev,".
302
+ "bundling=$bundling,",
303
+ "getopt_compat=$getopt_compat,",
304
+ "gnu_compat=$gnu_compat,",
305
+ "order=$order,",
306
+ "\n ",
307
+ "ignorecase=$ignorecase,",
308
+ "requested_version=$requested_version,",
309
+ "passthrough=$passthrough,",
310
+ "genprefix=\"$genprefix\",",
311
+ "longprefix=\"$longprefix\".",
312
+ "\n");
313
+ }
314
+
315
+ # Check for ref HASH as first argument.
316
+ # First argument may be an object. It's OK to use this as long
317
+ # as it is really a hash underneath.
318
+ $userlinkage = undef;
319
+ if ( @optionlist && ref($optionlist[0]) and
320
+ UNIVERSAL::isa($optionlist[0],'HASH') ) {
321
+ $userlinkage = shift (@optionlist);
322
+ print STDERR ("=> user linkage: $userlinkage\n") if $debug;
323
+ }
324
+
325
+ # See if the first element of the optionlist contains option
326
+ # starter characters.
327
+ # Be careful not to interpret '<>' as option starters.
328
+ if ( @optionlist && $optionlist[0] =~ /^\W+$/
329
+ && !($optionlist[0] eq '<>'
330
+ && @optionlist > 0
331
+ && ref($optionlist[1])) ) {
332
+ $prefix = shift (@optionlist);
333
+ # Turn into regexp. Needs to be parenthesized!
334
+ $prefix =~ s/(\W)/\\$1/g;
335
+ $prefix = "([" . $prefix . "])";
336
+ print STDERR ("=> prefix=\"$prefix\"\n") if $debug;
337
+ }
338
+
339
+ # Verify correctness of optionlist.
340
+ %opctl = ();
341
+ while ( @optionlist ) {
342
+ my $opt = shift (@optionlist);
343
+
344
+ unless ( defined($opt) ) {
345
+ $error .= "Undefined argument in option spec\n";
346
+ next;
347
+ }
348
+
349
+ # Strip leading prefix so people can specify "--foo=i" if they like.
350
+ $opt = $+ if $opt =~ /^$prefix+(.*)$/s;
351
+
352
+ if ( $opt eq '<>' ) {
353
+ if ( (defined $userlinkage)
354
+ && !(@optionlist > 0 && ref($optionlist[0]))
355
+ && (exists $userlinkage->{$opt})
356
+ && ref($userlinkage->{$opt}) ) {
357
+ unshift (@optionlist, $userlinkage->{$opt});
358
+ }
359
+ unless ( @optionlist > 0
360
+ && ref($optionlist[0]) && ref($optionlist[0]) eq 'CODE' ) {
361
+ $error .= "Option spec <> requires a reference to a subroutine\n";
362
+ # Kill the linkage (to avoid another error).
363
+ shift (@optionlist)
364
+ if @optionlist && ref($optionlist[0]);
365
+ next;
366
+ }
367
+ $linkage{'<>'} = shift (@optionlist);
368
+ next;
369
+ }
370
+
371
+ # Parse option spec.
372
+ my ($name, $orig) = ParseOptionSpec ($opt, \%opctl);
373
+ unless ( defined $name ) {
374
+ # Failed. $orig contains the error message. Sorry for the abuse.
375
+ $error .= $orig;
376
+ # Kill the linkage (to avoid another error).
377
+ shift (@optionlist)
378
+ if @optionlist && ref($optionlist[0]);
379
+ next;
380
+ }
381
+
382
+ # If no linkage is supplied in the @optionlist, copy it from
383
+ # the userlinkage if available.
384
+ if ( defined $userlinkage ) {
385
+ unless ( @optionlist > 0 && ref($optionlist[0]) ) {
386
+ if ( exists $userlinkage->{$orig} &&
387
+ ref($userlinkage->{$orig}) ) {
388
+ print STDERR ("=> found userlinkage for \"$orig\": ",
389
+ "$userlinkage->{$orig}\n")
390
+ if $debug;
391
+ unshift (@optionlist, $userlinkage->{$orig});
392
+ }
393
+ else {
394
+ # Do nothing. Being undefined will be handled later.
395
+ next;
396
+ }
397
+ }
398
+ }
399
+
400
+ # Copy the linkage. If omitted, link to global variable.
401
+ if ( @optionlist > 0 && ref($optionlist[0]) ) {
402
+ print STDERR ("=> link \"$orig\" to $optionlist[0]\n")
403
+ if $debug;
404
+ my $rl = ref($linkage{$orig} = shift (@optionlist));
405
+
406
+ if ( $rl eq "ARRAY" ) {
407
+ $opctl{$name}[CTL_DEST] = CTL_DEST_ARRAY;
408
+ }
409
+ elsif ( $rl eq "HASH" ) {
410
+ $opctl{$name}[CTL_DEST] = CTL_DEST_HASH;
411
+ }
412
+ elsif ( $rl eq "SCALAR" || $rl eq "REF" ) {
413
+ # if ( $opctl{$name}[CTL_DEST] == CTL_DEST_ARRAY ) {
414
+ # my $t = $linkage{$orig};
415
+ # $$t = $linkage{$orig} = [];
416
+ # }
417
+ # elsif ( $opctl{$name}[CTL_DEST] == CTL_DEST_HASH ) {
418
+ # }
419
+ # else {
420
+ # Ok.
421
+ # }
422
+ }
423
+ elsif ( $rl eq "CODE" ) {
424
+ # Ok.
425
+ }
426
+ else {
427
+ $error .= "Invalid option linkage for \"$opt\"\n";
428
+ }
429
+ }
430
+ else {
431
+ # Link to global $opt_XXX variable.
432
+ # Make sure a valid perl identifier results.
433
+ my $ov = $orig;
434
+ $ov =~ s/\W/_/g;
435
+ if ( $opctl{$name}[CTL_DEST] == CTL_DEST_ARRAY ) {
436
+ print STDERR ("=> link \"$orig\" to \@$pkg","::opt_$ov\n")
437
+ if $debug;
438
+ eval ("\$linkage{\$orig} = \\\@".$pkg."::opt_$ov;");
439
+ }
440
+ elsif ( $opctl{$name}[CTL_DEST] == CTL_DEST_HASH ) {
441
+ print STDERR ("=> link \"$orig\" to \%$pkg","::opt_$ov\n")
442
+ if $debug;
443
+ eval ("\$linkage{\$orig} = \\\%".$pkg."::opt_$ov;");
444
+ }
445
+ else {
446
+ print STDERR ("=> link \"$orig\" to \$$pkg","::opt_$ov\n")
447
+ if $debug;
448
+ eval ("\$linkage{\$orig} = \\\$".$pkg."::opt_$ov;");
449
+ }
450
+ }
451
+
452
+ if ( $opctl{$name}[CTL_TYPE] eq 'I'
453
+ && ( $opctl{$name}[CTL_DEST] == CTL_DEST_ARRAY
454
+ || $opctl{$name}[CTL_DEST] == CTL_DEST_HASH )
455
+ ) {
456
+ $error .= "Invalid option linkage for \"$opt\"\n";
457
+ }
458
+
459
+ }
460
+
461
+ # Bail out if errors found.
462
+ die ($error) if $error;
463
+ $error = 0;
464
+
465
+ # Supply --version and --help support, if needed and allowed.
466
+ if ( defined($auto_version) ? $auto_version : ($requested_version >= 2.3203) ) {
467
+ if ( !defined($opctl{version}) ) {
468
+ $opctl{version} = ['','version',0,CTL_DEST_CODE,undef];
469
+ $linkage{version} = \&VersionMessage;
470
+ }
471
+ $auto_version = 1;
472
+ }
473
+ if ( defined($auto_help) ? $auto_help : ($requested_version >= 2.3203) ) {
474
+ if ( !defined($opctl{help}) && !defined($opctl{'?'}) ) {
475
+ $opctl{help} = $opctl{'?'} = ['','help',0,CTL_DEST_CODE,undef];
476
+ $linkage{help} = \&HelpMessage;
477
+ }
478
+ $auto_help = 1;
479
+ }
480
+
481
+ # Show the options tables if debugging.
482
+ if ( $debug ) {
483
+ my ($arrow, $k, $v);
484
+ $arrow = "=> ";
485
+ while ( ($k,$v) = each(%opctl) ) {
486
+ print STDERR ($arrow, "\$opctl{$k} = $v ", OptCtl($v), "\n");
487
+ $arrow = " ";
488
+ }
489
+ }
490
+
491
+ # Process argument list
492
+ my $goon = 1;
493
+ while ( $goon && @$argv > 0 ) {
494
+
495
+ # Get next argument.
496
+ $opt = shift (@$argv);
497
+ print STDERR ("=> arg \"", $opt, "\"\n") if $debug;
498
+
499
+ # Double dash is option list terminator.
500
+ if ( defined($opt) && $opt eq $argend ) {
501
+ push (@ret, $argend) if $passthrough;
502
+ last;
503
+ }
504
+
505
+ # Look it up.
506
+ my $tryopt = $opt;
507
+ my $found; # success status
508
+ my $key; # key (if hash type)
509
+ my $arg; # option argument
510
+ my $ctl; # the opctl entry
511
+
512
+ ($found, $opt, $ctl, $arg, $key) =
513
+ FindOption ($argv, $prefix, $argend, $opt, \%opctl);
514
+
515
+ if ( $found ) {
516
+
517
+ # FindOption undefines $opt in case of errors.
518
+ next unless defined $opt;
519
+
520
+ my $argcnt = 0;
521
+ while ( defined $arg ) {
522
+
523
+ # Get the canonical name.
524
+ print STDERR ("=> cname for \"$opt\" is ") if $debug;
525
+ $opt = $ctl->[CTL_CNAME];
526
+ print STDERR ("\"$ctl->[CTL_CNAME]\"\n") if $debug;
527
+
528
+ if ( defined $linkage{$opt} ) {
529
+ print STDERR ("=> ref(\$L{$opt}) -> ",
530
+ ref($linkage{$opt}), "\n") if $debug;
531
+
532
+ if ( ref($linkage{$opt}) eq 'SCALAR'
533
+ || ref($linkage{$opt}) eq 'REF' ) {
534
+ if ( $ctl->[CTL_TYPE] eq '+' ) {
535
+ print STDERR ("=> \$\$L{$opt} += \"$arg\"\n")
536
+ if $debug;
537
+ if ( defined ${$linkage{$opt}} ) {
538
+ ${$linkage{$opt}} += $arg;
539
+ }
540
+ else {
541
+ ${$linkage{$opt}} = $arg;
542
+ }
543
+ }
544
+ elsif ( $ctl->[CTL_DEST] == CTL_DEST_ARRAY ) {
545
+ print STDERR ("=> ref(\$L{$opt}) auto-vivified",
546
+ " to ARRAY\n")
547
+ if $debug;
548
+ my $t = $linkage{$opt};
549
+ $$t = $linkage{$opt} = [];
550
+ print STDERR ("=> push(\@{\$L{$opt}, \"$arg\")\n")
551
+ if $debug;
552
+ push (@{$linkage{$opt}}, $arg);
553
+ }
554
+ elsif ( $ctl->[CTL_DEST] == CTL_DEST_HASH ) {
555
+ print STDERR ("=> ref(\$L{$opt}) auto-vivified",
556
+ " to HASH\n")
557
+ if $debug;
558
+ my $t = $linkage{$opt};
559
+ $$t = $linkage{$opt} = {};
560
+ print STDERR ("=> \$\$L{$opt}->{$key} = \"$arg\"\n")
561
+ if $debug;
562
+ $linkage{$opt}->{$key} = $arg;
563
+ }
564
+ else {
565
+ print STDERR ("=> \$\$L{$opt} = \"$arg\"\n")
566
+ if $debug;
567
+ ${$linkage{$opt}} = $arg;
568
+ }
569
+ }
570
+ elsif ( ref($linkage{$opt}) eq 'ARRAY' ) {
571
+ print STDERR ("=> push(\@{\$L{$opt}, \"$arg\")\n")
572
+ if $debug;
573
+ push (@{$linkage{$opt}}, $arg);
574
+ }
575
+ elsif ( ref($linkage{$opt}) eq 'HASH' ) {
576
+ print STDERR ("=> \$\$L{$opt}->{$key} = \"$arg\"\n")
577
+ if $debug;
578
+ $linkage{$opt}->{$key} = $arg;
579
+ }
580
+ elsif ( ref($linkage{$opt}) eq 'CODE' ) {
581
+ print STDERR ("=> &L{$opt}(\"$opt\"",
582
+ $ctl->[CTL_DEST] == CTL_DEST_HASH ? ", \"$key\"" : "",
583
+ ", \"$arg\")\n")
584
+ if $debug;
585
+ my $eval_error = do {
586
+ local $@;
587
+ local $SIG{__DIE__} = 'DEFAULT';
588
+ eval {
589
+ &{$linkage{$opt}}
590
+ (Getopt::Long::CallBack->new
591
+ (name => $opt,
592
+ ctl => $ctl,
593
+ opctl => \%opctl,
594
+ linkage => \%linkage,
595
+ prefix => $prefix,
596
+ ),
597
+ $ctl->[CTL_DEST] == CTL_DEST_HASH ? ($key) : (),
598
+ $arg);
599
+ };
600
+ $@;
601
+ };
602
+ print STDERR ("=> die($eval_error)\n")
603
+ if $debug && $eval_error ne '';
604
+ if ( $eval_error =~ /^!/ ) {
605
+ if ( $eval_error =~ /^!FINISH\b/ ) {
606
+ $goon = 0;
607
+ }
608
+ }
609
+ elsif ( $eval_error ne '' ) {
610
+ warn ($eval_error);
611
+ $error++;
612
+ }
613
+ }
614
+ else {
615
+ print STDERR ("Invalid REF type \"", ref($linkage{$opt}),
616
+ "\" in linkage\n");
617
+ die("Getopt::Long -- internal error!\n");
618
+ }
619
+ }
620
+ # No entry in linkage means entry in userlinkage.
621
+ elsif ( $ctl->[CTL_DEST] == CTL_DEST_ARRAY ) {
622
+ if ( defined $userlinkage->{$opt} ) {
623
+ print STDERR ("=> push(\@{\$L{$opt}}, \"$arg\")\n")
624
+ if $debug;
625
+ push (@{$userlinkage->{$opt}}, $arg);
626
+ }
627
+ else {
628
+ print STDERR ("=>\$L{$opt} = [\"$arg\"]\n")
629
+ if $debug;
630
+ $userlinkage->{$opt} = [$arg];
631
+ }
632
+ }
633
+ elsif ( $ctl->[CTL_DEST] == CTL_DEST_HASH ) {
634
+ if ( defined $userlinkage->{$opt} ) {
635
+ print STDERR ("=> \$L{$opt}->{$key} = \"$arg\"\n")
636
+ if $debug;
637
+ $userlinkage->{$opt}->{$key} = $arg;
638
+ }
639
+ else {
640
+ print STDERR ("=>\$L{$opt} = {$key => \"$arg\"}\n")
641
+ if $debug;
642
+ $userlinkage->{$opt} = {$key => $arg};
643
+ }
644
+ }
645
+ else {
646
+ if ( $ctl->[CTL_TYPE] eq '+' ) {
647
+ print STDERR ("=> \$L{$opt} += \"$arg\"\n")
648
+ if $debug;
649
+ if ( defined $userlinkage->{$opt} ) {
650
+ $userlinkage->{$opt} += $arg;
651
+ }
652
+ else {
653
+ $userlinkage->{$opt} = $arg;
654
+ }
655
+ }
656
+ else {
657
+ print STDERR ("=>\$L{$opt} = \"$arg\"\n") if $debug;
658
+ $userlinkage->{$opt} = $arg;
659
+ }
660
+ }
661
+
662
+ $argcnt++;
663
+ last if $argcnt >= $ctl->[CTL_AMAX] && $ctl->[CTL_AMAX] != -1;
664
+ undef($arg);
665
+
666
+ # Need more args?
667
+ if ( $argcnt < $ctl->[CTL_AMIN] ) {
668
+ if ( @$argv ) {
669
+ if ( ValidValue($ctl, $argv->[0], 1, $argend, $prefix) ) {
670
+ $arg = shift(@$argv);
671
+ if ( $ctl->[CTL_TYPE] =~ /^[iIo]$/ ) {
672
+ $arg =~ tr/_//d;
673
+ $arg = $ctl->[CTL_TYPE] eq 'o' && $arg =~ /^0/
674
+ ? oct($arg)
675
+ : 0+$arg
676
+ }
677
+ ($key,$arg) = $arg =~ /^([^=]+)=(.*)/
678
+ if $ctl->[CTL_DEST] == CTL_DEST_HASH;
679
+ next;
680
+ }
681
+ warn("Value \"$$argv[0]\" invalid for option $opt\n");
682
+ $error++;
683
+ }
684
+ else {
685
+ warn("Insufficient arguments for option $opt\n");
686
+ $error++;
687
+ }
688
+ }
689
+
690
+ # Any more args?
691
+ if ( @$argv && ValidValue($ctl, $argv->[0], 0, $argend, $prefix) ) {
692
+ $arg = shift(@$argv);
693
+ if ( $ctl->[CTL_TYPE] =~ /^[iIo]$/ ) {
694
+ $arg =~ tr/_//d;
695
+ $arg = $ctl->[CTL_TYPE] eq 'o' && $arg =~ /^0/
696
+ ? oct($arg)
697
+ : 0+$arg
698
+ }
699
+ ($key,$arg) = $arg =~ /^([^=]+)=(.*)/
700
+ if $ctl->[CTL_DEST] == CTL_DEST_HASH;
701
+ next;
702
+ }
703
+ }
704
+ }
705
+
706
+ # Not an option. Save it if we $PERMUTE and don't have a <>.
707
+ elsif ( $order == $PERMUTE ) {
708
+ # Try non-options call-back.
709
+ my $cb;
710
+ if ( (defined ($cb = $linkage{'<>'})) ) {
711
+ print STDERR ("=> &L{$tryopt}(\"$tryopt\")\n")
712
+ if $debug;
713
+ my $eval_error = do {
714
+ local $@;
715
+ local $SIG{__DIE__} = 'DEFAULT';
716
+ eval {
717
+ # The arg to <> cannot be the CallBack object
718
+ # since it may be passed to other modules that
719
+ # get confused (e.g., Archive::Tar). Well,
720
+ # it's not relevant for this callback anyway.
721
+ &$cb($tryopt);
722
+ };
723
+ $@;
724
+ };
725
+ print STDERR ("=> die($eval_error)\n")
726
+ if $debug && $eval_error ne '';
727
+ if ( $eval_error =~ /^!/ ) {
728
+ if ( $eval_error =~ /^!FINISH\b/ ) {
729
+ $goon = 0;
730
+ }
731
+ }
732
+ elsif ( $eval_error ne '' ) {
733
+ warn ($eval_error);
734
+ $error++;
735
+ }
736
+ }
737
+ else {
738
+ print STDERR ("=> saving \"$tryopt\" ",
739
+ "(not an option, may permute)\n") if $debug;
740
+ push (@ret, $tryopt);
741
+ }
742
+ next;
743
+ }
744
+
745
+ # ...otherwise, terminate.
746
+ else {
747
+ # Push this one back and exit.
748
+ unshift (@$argv, $tryopt);
749
+ return ($error == 0);
750
+ }
751
+
752
+ }
753
+
754
+ # Finish.
755
+ if ( @ret && $order == $PERMUTE ) {
756
+ # Push back accumulated arguments
757
+ print STDERR ("=> restoring \"", join('" "', @ret), "\"\n")
758
+ if $debug;
759
+ unshift (@$argv, @ret);
760
+ }
761
+
762
+ return ($error == 0);
763
+ }
764
+
765
+ # A readable representation of what's in an optbl.
766
+ sub OptCtl ($) {
767
+ my ($v) = @_;
768
+ my @v = map { defined($_) ? ($_) : ("<undef>") } @$v;
769
+ "[".
770
+ join(",",
771
+ "\"$v[CTL_TYPE]\"",
772
+ "\"$v[CTL_CNAME]\"",
773
+ "\"$v[CTL_DEFAULT]\"",
774
+ ("\$","\@","\%","\&")[$v[CTL_DEST] || 0],
775
+ $v[CTL_AMIN] || '',
776
+ $v[CTL_AMAX] || '',
777
+ # $v[CTL_RANGE] || '',
778
+ # $v[CTL_REPEAT] || '',
779
+ ). "]";
780
+ }
781
+
782
+ # Parse an option specification and fill the tables.
783
+ sub ParseOptionSpec ($$) {
784
+ my ($opt, $opctl) = @_;
785
+
786
+ # Match option spec.
787
+ if ( $opt !~ m;^
788
+ (
789
+ # Option name
790
+ (?: \w+[-\w]* )
791
+ # Alias names, or "?"
792
+ (?: \| (?: \? | \w[-\w]* ) )*
793
+ # Aliases
794
+ (?: \| (?: [^-|!+=:][^|!+=:]* )? )*
795
+ )?
796
+ (
797
+ # Either modifiers ...
798
+ [!+]
799
+ |
800
+ # ... or a value/dest/repeat specification
801
+ [=:] [ionfs] [@%]? (?: \{\d*,?\d*\} )?
802
+ |
803
+ # ... or an optional-with-default spec
804
+ : (?: -?\d+ | \+ ) [@%]?
805
+ )?
806
+ $;x ) {
807
+ return (undef, "Error in option spec: \"$opt\"\n");
808
+ }
809
+
810
+ my ($names, $spec) = ($1, $2);
811
+ $spec = '' unless defined $spec;
812
+
813
+ # $orig keeps track of the primary name the user specified.
814
+ # This name will be used for the internal or external linkage.
815
+ # In other words, if the user specifies "FoO|BaR", it will
816
+ # match any case combinations of 'foo' and 'bar', but if a global
817
+ # variable needs to be set, it will be $opt_FoO in the exact case
818
+ # as specified.
819
+ my $orig;
820
+
821
+ my @names;
822
+ if ( defined $names ) {
823
+ @names = split (/\|/, $names);
824
+ $orig = $names[0];
825
+ }
826
+ else {
827
+ @names = ('');
828
+ $orig = '';
829
+ }
830
+
831
+ # Construct the opctl entries.
832
+ my $entry;
833
+ if ( $spec eq '' || $spec eq '+' || $spec eq '!' ) {
834
+ # Fields are hard-wired here.
835
+ $entry = [$spec,$orig,undef,CTL_DEST_SCALAR,0,0];
836
+ }
837
+ elsif ( $spec =~ /^:(-?\d+|\+)([@%])?$/ ) {
838
+ my $def = $1;
839
+ my $dest = $2;
840
+ my $type = $def eq '+' ? 'I' : 'i';
841
+ $dest ||= '$';
842
+ $dest = $dest eq '@' ? CTL_DEST_ARRAY
843
+ : $dest eq '%' ? CTL_DEST_HASH : CTL_DEST_SCALAR;
844
+ # Fields are hard-wired here.
845
+ $entry = [$type,$orig,$def eq '+' ? undef : $def,
846
+ $dest,0,1];
847
+ }
848
+ else {
849
+ my ($mand, $type, $dest) =
850
+ $spec =~ /^([=:])([ionfs])([@%])?(\{(\d+)?(,)?(\d+)?\})?$/;
851
+ return (undef, "Cannot repeat while bundling: \"$opt\"\n")
852
+ if $bundling && defined($4);
853
+ my ($mi, $cm, $ma) = ($5, $6, $7);
854
+ return (undef, "{0} is useless in option spec: \"$opt\"\n")
855
+ if defined($mi) && !$mi && !defined($ma) && !defined($cm);
856
+
857
+ $type = 'i' if $type eq 'n';
858
+ $dest ||= '$';
859
+ $dest = $dest eq '@' ? CTL_DEST_ARRAY
860
+ : $dest eq '%' ? CTL_DEST_HASH : CTL_DEST_SCALAR;
861
+ # Default minargs to 1/0 depending on mand status.
862
+ $mi = $mand eq '=' ? 1 : 0 unless defined $mi;
863
+ # Adjust mand status according to minargs.
864
+ $mand = $mi ? '=' : ':';
865
+ # Adjust maxargs.
866
+ $ma = $mi ? $mi : 1 unless defined $ma || defined $cm;
867
+ return (undef, "Max must be greater than zero in option spec: \"$opt\"\n")
868
+ if defined($ma) && !$ma;
869
+ return (undef, "Max less than min in option spec: \"$opt\"\n")
870
+ if defined($ma) && $ma < $mi;
871
+
872
+ # Fields are hard-wired here.
873
+ $entry = [$type,$orig,undef,$dest,$mi,$ma||-1];
874
+ }
875
+
876
+ # Process all names. First is canonical, the rest are aliases.
877
+ my $dups = '';
878
+ foreach ( @names ) {
879
+
880
+ $_ = lc ($_)
881
+ if $ignorecase > (($bundling && length($_) == 1) ? 1 : 0);
882
+
883
+ if ( exists $opctl->{$_} ) {
884
+ $dups .= "Duplicate specification \"$opt\" for option \"$_\"\n";
885
+ }
886
+
887
+ if ( $spec eq '!' ) {
888
+ $opctl->{"no$_"} = $entry;
889
+ $opctl->{"no-$_"} = $entry;
890
+ $opctl->{$_} = [@$entry];
891
+ $opctl->{$_}->[CTL_TYPE] = '';
892
+ }
893
+ else {
894
+ $opctl->{$_} = $entry;
895
+ }
896
+ }
897
+
898
+ if ( $dups && $^W ) {
899
+ foreach ( split(/\n+/, $dups) ) {
900
+ warn($_."\n");
901
+ }
902
+ }
903
+ ($names[0], $orig);
904
+ }
905
+
906
+ # Option lookup.
907
+ sub FindOption ($$$$$) {
908
+
909
+ # returns (1, $opt, $ctl, $arg, $key) if okay,
910
+ # returns (1, undef) if option in error,
911
+ # returns (0) otherwise.
912
+
913
+ my ($argv, $prefix, $argend, $opt, $opctl) = @_;
914
+
915
+ print STDERR ("=> find \"$opt\"\n") if $debug;
916
+
917
+ return (0) unless defined($opt);
918
+ return (0) unless $opt =~ /^($prefix)(.*)$/s;
919
+ return (0) if $opt eq "-" && !defined $opctl->{''};
920
+
921
+ $opt = substr( $opt, length($1) ); # retain taintedness
922
+ my $starter = $1;
923
+
924
+ print STDERR ("=> split \"$starter\"+\"$opt\"\n") if $debug;
925
+
926
+ my $optarg; # value supplied with --opt=value
927
+ my $rest; # remainder from unbundling
928
+
929
+ # If it is a long option, it may include the value.
930
+ # With getopt_compat, only if not bundling.
931
+ if ( ($starter=~/^$longprefix$/
932
+ || ($getopt_compat && ($bundling == 0 || $bundling == 2)))
933
+ && (my $oppos = index($opt, '=', 1)) > 0) {
934
+ my $optorg = $opt;
935
+ $opt = substr($optorg, 0, $oppos);
936
+ $optarg = substr($optorg, $oppos + 1); # retain tainedness
937
+ print STDERR ("=> option \"", $opt,
938
+ "\", optarg = \"$optarg\"\n") if $debug;
939
+ }
940
+
941
+ #### Look it up ###
942
+
943
+ my $tryopt = $opt; # option to try
944
+
945
+ if ( $bundling && $starter eq '-' ) {
946
+
947
+ # To try overrides, obey case ignore.
948
+ $tryopt = $ignorecase ? lc($opt) : $opt;
949
+
950
+ # If bundling == 2, long options can override bundles.
951
+ if ( $bundling == 2 && length($tryopt) > 1
952
+ && defined ($opctl->{$tryopt}) ) {
953
+ print STDERR ("=> $starter$tryopt overrides unbundling\n")
954
+ if $debug;
955
+ }
956
+ else {
957
+ $tryopt = $opt;
958
+ # Unbundle single letter option.
959
+ $rest = length ($tryopt) > 0 ? substr ($tryopt, 1) : '';
960
+ $tryopt = substr ($tryopt, 0, 1);
961
+ $tryopt = lc ($tryopt) if $ignorecase > 1;
962
+ print STDERR ("=> $starter$tryopt unbundled from ",
963
+ "$starter$tryopt$rest\n") if $debug;
964
+ $rest = undef unless $rest ne '';
965
+ }
966
+ }
967
+
968
+ # Try auto-abbreviation.
969
+ elsif ( $autoabbrev && $opt ne "" ) {
970
+ # Sort the possible long option names.
971
+ my @names = sort(keys (%$opctl));
972
+ # Downcase if allowed.
973
+ $opt = lc ($opt) if $ignorecase;
974
+ $tryopt = $opt;
975
+ # Turn option name into pattern.
976
+ my $pat = quotemeta ($opt);
977
+ # Look up in option names.
978
+ my @hits = grep (/^$pat/, @names);
979
+ print STDERR ("=> ", scalar(@hits), " hits (@hits) with \"$pat\" ",
980
+ "out of ", scalar(@names), "\n") if $debug;
981
+
982
+ # Check for ambiguous results.
983
+ unless ( (@hits <= 1) || (grep ($_ eq $opt, @hits) == 1) ) {
984
+ # See if all matches are for the same option.
985
+ my %hit;
986
+ foreach ( @hits ) {
987
+ my $hit = $opctl->{$_}->[CTL_CNAME]
988
+ if defined $opctl->{$_}->[CTL_CNAME];
989
+ $hit = "no" . $hit if $opctl->{$_}->[CTL_TYPE] eq '!';
990
+ $hit{$hit} = 1;
991
+ }
992
+ # Remove auto-supplied options (version, help).
993
+ if ( keys(%hit) == 2 ) {
994
+ if ( $auto_version && exists($hit{version}) ) {
995
+ delete $hit{version};
996
+ }
997
+ elsif ( $auto_help && exists($hit{help}) ) {
998
+ delete $hit{help};
999
+ }
1000
+ }
1001
+ # Now see if it really is ambiguous.
1002
+ unless ( keys(%hit) == 1 ) {
1003
+ return (0) if $passthrough;
1004
+ warn ("Option ", $opt, " is ambiguous (",
1005
+ join(", ", @hits), ")\n");
1006
+ $error++;
1007
+ return (1, undef);
1008
+ }
1009
+ @hits = keys(%hit);
1010
+ }
1011
+
1012
+ # Complete the option name, if appropriate.
1013
+ if ( @hits == 1 && $hits[0] ne $opt ) {
1014
+ $tryopt = $hits[0];
1015
+ $tryopt = lc ($tryopt) if $ignorecase;
1016
+ print STDERR ("=> option \"$opt\" -> \"$tryopt\"\n")
1017
+ if $debug;
1018
+ }
1019
+ }
1020
+
1021
+ # Map to all lowercase if ignoring case.
1022
+ elsif ( $ignorecase ) {
1023
+ $tryopt = lc ($opt);
1024
+ }
1025
+
1026
+ # Check validity by fetching the info.
1027
+ my $ctl = $opctl->{$tryopt};
1028
+ unless ( defined $ctl ) {
1029
+ return (0) if $passthrough;
1030
+ # Pretend one char when bundling.
1031
+ if ( $bundling == 1 && length($starter) == 1 ) {
1032
+ $opt = substr($opt,0,1);
1033
+ unshift (@$argv, $starter.$rest) if defined $rest;
1034
+ }
1035
+ if ( $opt eq "" ) {
1036
+ warn ("Missing option after ", $starter, "\n");
1037
+ }
1038
+ else {
1039
+ warn ("Unknown option: ", $opt, "\n");
1040
+ }
1041
+ $error++;
1042
+ return (1, undef);
1043
+ }
1044
+ # Apparently valid.
1045
+ $opt = $tryopt;
1046
+ print STDERR ("=> found ", OptCtl($ctl),
1047
+ " for \"", $opt, "\"\n") if $debug;
1048
+
1049
+ #### Determine argument status ####
1050
+
1051
+ # If it is an option w/o argument, we're almost finished with it.
1052
+ my $type = $ctl->[CTL_TYPE];
1053
+ my $arg;
1054
+
1055
+ if ( $type eq '' || $type eq '!' || $type eq '+' ) {
1056
+ if ( defined $optarg ) {
1057
+ return (0) if $passthrough;
1058
+ warn ("Option ", $opt, " does not take an argument\n");
1059
+ $error++;
1060
+ undef $opt;
1061
+ }
1062
+ elsif ( $type eq '' || $type eq '+' ) {
1063
+ # Supply explicit value.
1064
+ $arg = 1;
1065
+ }
1066
+ else {
1067
+ $opt =~ s/^no-?//i; # strip NO prefix
1068
+ $arg = 0; # supply explicit value
1069
+ }
1070
+ unshift (@$argv, $starter.$rest) if defined $rest;
1071
+ return (1, $opt, $ctl, $arg);
1072
+ }
1073
+
1074
+ # Get mandatory status and type info.
1075
+ my $mand = $ctl->[CTL_AMIN];
1076
+
1077
+ # Check if there is an option argument available.
1078
+ if ( $gnu_compat && defined $optarg && $optarg eq '' ) {
1079
+ return (1, $opt, $ctl, $type eq 's' ? '' : 0) ;#unless $mand;
1080
+ $optarg = 0 unless $type eq 's';
1081
+ }
1082
+
1083
+ # Check if there is an option argument available.
1084
+ if ( defined $optarg
1085
+ ? ($optarg eq '')
1086
+ : !(defined $rest || @$argv > 0) ) {
1087
+ # Complain if this option needs an argument.
1088
+ # if ( $mand && !($type eq 's' ? defined($optarg) : 0) ) {
1089
+ if ( $mand ) {
1090
+ return (0) if $passthrough;
1091
+ warn ("Option ", $opt, " requires an argument\n");
1092
+ $error++;
1093
+ return (1, undef);
1094
+ }
1095
+ if ( $type eq 'I' ) {
1096
+ # Fake incremental type.
1097
+ my @c = @$ctl;
1098
+ $c[CTL_TYPE] = '+';
1099
+ return (1, $opt, \@c, 1);
1100
+ }
1101
+ return (1, $opt, $ctl,
1102
+ defined($ctl->[CTL_DEFAULT]) ? $ctl->[CTL_DEFAULT] :
1103
+ $type eq 's' ? '' : 0);
1104
+ }
1105
+
1106
+ # Get (possibly optional) argument.
1107
+ $arg = (defined $rest ? $rest
1108
+ : (defined $optarg ? $optarg : shift (@$argv)));
1109
+
1110
+ # Get key if this is a "name=value" pair for a hash option.
1111
+ my $key;
1112
+ if ($ctl->[CTL_DEST] == CTL_DEST_HASH && defined $arg) {
1113
+ ($key, $arg) = ($arg =~ /^([^=]*)=(.*)$/s) ? ($1, $2)
1114
+ : ($arg, defined($ctl->[CTL_DEFAULT]) ? $ctl->[CTL_DEFAULT] :
1115
+ ($mand ? undef : ($type eq 's' ? "" : 1)));
1116
+ if (! defined $arg) {
1117
+ warn ("Option $opt, key \"$key\", requires a value\n");
1118
+ $error++;
1119
+ # Push back.
1120
+ unshift (@$argv, $starter.$rest) if defined $rest;
1121
+ return (1, undef);
1122
+ }
1123
+ }
1124
+
1125
+ #### Check if the argument is valid for this option ####
1126
+
1127
+ my $key_valid = $ctl->[CTL_DEST] == CTL_DEST_HASH ? "[^=]+=" : "";
1128
+
1129
+ if ( $type eq 's' ) { # string
1130
+ # A mandatory string takes anything.
1131
+ return (1, $opt, $ctl, $arg, $key) if $mand;
1132
+
1133
+ # Same for optional string as a hash value
1134
+ return (1, $opt, $ctl, $arg, $key)
1135
+ if $ctl->[CTL_DEST] == CTL_DEST_HASH;
1136
+
1137
+ # An optional string takes almost anything.
1138
+ return (1, $opt, $ctl, $arg, $key)
1139
+ if defined $optarg || defined $rest;
1140
+ return (1, $opt, $ctl, $arg, $key) if $arg eq "-"; # ??
1141
+
1142
+ # Check for option or option list terminator.
1143
+ if ($arg eq $argend ||
1144
+ $arg =~ /^$prefix.+/) {
1145
+ # Push back.
1146
+ unshift (@$argv, $arg);
1147
+ # Supply empty value.
1148
+ $arg = '';
1149
+ }
1150
+ }
1151
+
1152
+ elsif ( $type eq 'i' # numeric/integer
1153
+ || $type eq 'I' # numeric/integer w/ incr default
1154
+ || $type eq 'o' ) { # dec/oct/hex/bin value
1155
+
1156
+ my $o_valid = $type eq 'o' ? PAT_XINT : PAT_INT;
1157
+
1158
+ if ( $bundling && defined $rest
1159
+ && $rest =~ /^($key_valid)($o_valid)(.*)$/si ) {
1160
+ ($key, $arg, $rest) = ($1, $2, $+);
1161
+ chop($key) if $key;
1162
+ $arg = ($type eq 'o' && $arg =~ /^0/) ? oct($arg) : 0+$arg;
1163
+ unshift (@$argv, $starter.$rest) if defined $rest && $rest ne '';
1164
+ }
1165
+ elsif ( $arg =~ /^$o_valid$/si ) {
1166
+ $arg =~ tr/_//d;
1167
+ $arg = ($type eq 'o' && $arg =~ /^0/) ? oct($arg) : 0+$arg;
1168
+ }
1169
+ else {
1170
+ if ( defined $optarg || $mand ) {
1171
+ if ( $passthrough ) {
1172
+ unshift (@$argv, defined $rest ? $starter.$rest : $arg)
1173
+ unless defined $optarg;
1174
+ return (0);
1175
+ }
1176
+ warn ("Value \"", $arg, "\" invalid for option ",
1177
+ $opt, " (",
1178
+ $type eq 'o' ? "extended " : '',
1179
+ "number expected)\n");
1180
+ $error++;
1181
+ # Push back.
1182
+ unshift (@$argv, $starter.$rest) if defined $rest;
1183
+ return (1, undef);
1184
+ }
1185
+ else {
1186
+ # Push back.
1187
+ unshift (@$argv, defined $rest ? $starter.$rest : $arg);
1188
+ if ( $type eq 'I' ) {
1189
+ # Fake incremental type.
1190
+ my @c = @$ctl;
1191
+ $c[CTL_TYPE] = '+';
1192
+ return (1, $opt, \@c, 1);
1193
+ }
1194
+ # Supply default value.
1195
+ $arg = defined($ctl->[CTL_DEFAULT]) ? $ctl->[CTL_DEFAULT] : 0;
1196
+ }
1197
+ }
1198
+ }
1199
+
1200
+ elsif ( $type eq 'f' ) { # real number, int is also ok
1201
+ # We require at least one digit before a point or 'e',
1202
+ # and at least one digit following the point and 'e'.
1203
+ my $o_valid = PAT_FLOAT;
1204
+ if ( $bundling && defined $rest &&
1205
+ $rest =~ /^($key_valid)($o_valid)(.*)$/s ) {
1206
+ $arg =~ tr/_//d;
1207
+ ($key, $arg, $rest) = ($1, $2, $+);
1208
+ chop($key) if $key;
1209
+ unshift (@$argv, $starter.$rest) if defined $rest && $rest ne '';
1210
+ }
1211
+ elsif ( $arg =~ /^$o_valid$/ ) {
1212
+ $arg =~ tr/_//d;
1213
+ }
1214
+ else {
1215
+ if ( defined $optarg || $mand ) {
1216
+ if ( $passthrough ) {
1217
+ unshift (@$argv, defined $rest ? $starter.$rest : $arg)
1218
+ unless defined $optarg;
1219
+ return (0);
1220
+ }
1221
+ warn ("Value \"", $arg, "\" invalid for option ",
1222
+ $opt, " (real number expected)\n");
1223
+ $error++;
1224
+ # Push back.
1225
+ unshift (@$argv, $starter.$rest) if defined $rest;
1226
+ return (1, undef);
1227
+ }
1228
+ else {
1229
+ # Push back.
1230
+ unshift (@$argv, defined $rest ? $starter.$rest : $arg);
1231
+ # Supply default value.
1232
+ $arg = 0.0;
1233
+ }
1234
+ }
1235
+ }
1236
+ else {
1237
+ die("Getopt::Long internal error (Can't happen)\n");
1238
+ }
1239
+ return (1, $opt, $ctl, $arg, $key);
1240
+ }
1241
+
1242
+ sub ValidValue ($$$$$) {
1243
+ my ($ctl, $arg, $mand, $argend, $prefix) = @_;
1244
+
1245
+ if ( $ctl->[CTL_DEST] == CTL_DEST_HASH ) {
1246
+ return 0 unless $arg =~ /[^=]+=(.*)/;
1247
+ $arg = $1;
1248
+ }
1249
+
1250
+ my $type = $ctl->[CTL_TYPE];
1251
+
1252
+ if ( $type eq 's' ) { # string
1253
+ # A mandatory string takes anything.
1254
+ return (1) if $mand;
1255
+
1256
+ return (1) if $arg eq "-";
1257
+
1258
+ # Check for option or option list terminator.
1259
+ return 0 if $arg eq $argend || $arg =~ /^$prefix.+/;
1260
+ return 1;
1261
+ }
1262
+
1263
+ elsif ( $type eq 'i' # numeric/integer
1264
+ || $type eq 'I' # numeric/integer w/ incr default
1265
+ || $type eq 'o' ) { # dec/oct/hex/bin value
1266
+
1267
+ my $o_valid = $type eq 'o' ? PAT_XINT : PAT_INT;
1268
+ return $arg =~ /^$o_valid$/si;
1269
+ }
1270
+
1271
+ elsif ( $type eq 'f' ) { # real number, int is also ok
1272
+ # We require at least one digit before a point or 'e',
1273
+ # and at least one digit following the point and 'e'.
1274
+ # [-]NN[.NN][eNN]
1275
+ my $o_valid = PAT_FLOAT;
1276
+ return $arg =~ /^$o_valid$/;
1277
+ }
1278
+ die("ValidValue: Cannot happen\n");
1279
+ }
1280
+
1281
+ # Getopt::Long Configuration.
1282
+ sub Configure (@) {
1283
+ my (@options) = @_;
1284
+
1285
+ my $prevconfig =
1286
+ [ $error, $debug, $major_version, $minor_version,
1287
+ $autoabbrev, $getopt_compat, $ignorecase, $bundling, $order,
1288
+ $gnu_compat, $passthrough, $genprefix, $auto_version, $auto_help,
1289
+ $longprefix ];
1290
+
1291
+ if ( ref($options[0]) eq 'ARRAY' ) {
1292
+ ( $error, $debug, $major_version, $minor_version,
1293
+ $autoabbrev, $getopt_compat, $ignorecase, $bundling, $order,
1294
+ $gnu_compat, $passthrough, $genprefix, $auto_version, $auto_help,
1295
+ $longprefix ) = @{shift(@options)};
1296
+ }
1297
+
1298
+ my $opt;
1299
+ foreach $opt ( @options ) {
1300
+ my $try = lc ($opt);
1301
+ my $action = 1;
1302
+ if ( $try =~ /^no_?(.*)$/s ) {
1303
+ $action = 0;
1304
+ $try = $+;
1305
+ }
1306
+ if ( ($try eq 'default' or $try eq 'defaults') && $action ) {
1307
+ ConfigDefaults ();
1308
+ }
1309
+ elsif ( ($try eq 'posix_default' or $try eq 'posix_defaults') ) {
1310
+ local $ENV{POSIXLY_CORRECT};
1311
+ $ENV{POSIXLY_CORRECT} = 1 if $action;
1312
+ ConfigDefaults ();
1313
+ }
1314
+ elsif ( $try eq 'auto_abbrev' or $try eq 'autoabbrev' ) {
1315
+ $autoabbrev = $action;
1316
+ }
1317
+ elsif ( $try eq 'getopt_compat' ) {
1318
+ $getopt_compat = $action;
1319
+ $genprefix = $action ? "(--|-|\\+)" : "(--|-)";
1320
+ }
1321
+ elsif ( $try eq 'gnu_getopt' ) {
1322
+ if ( $action ) {
1323
+ $gnu_compat = 1;
1324
+ $bundling = 1;
1325
+ $getopt_compat = 0;
1326
+ $genprefix = "(--|-)";
1327
+ $order = $PERMUTE;
1328
+ }
1329
+ }
1330
+ elsif ( $try eq 'gnu_compat' ) {
1331
+ $gnu_compat = $action;
1332
+ }
1333
+ elsif ( $try =~ /^(auto_?)?version$/ ) {
1334
+ $auto_version = $action;
1335
+ }
1336
+ elsif ( $try =~ /^(auto_?)?help$/ ) {
1337
+ $auto_help = $action;
1338
+ }
1339
+ elsif ( $try eq 'ignorecase' or $try eq 'ignore_case' ) {
1340
+ $ignorecase = $action;
1341
+ }
1342
+ elsif ( $try eq 'ignorecase_always' or $try eq 'ignore_case_always' ) {
1343
+ $ignorecase = $action ? 2 : 0;
1344
+ }
1345
+ elsif ( $try eq 'bundling' ) {
1346
+ $bundling = $action;
1347
+ }
1348
+ elsif ( $try eq 'bundling_override' ) {
1349
+ $bundling = $action ? 2 : 0;
1350
+ }
1351
+ elsif ( $try eq 'require_order' ) {
1352
+ $order = $action ? $REQUIRE_ORDER : $PERMUTE;
1353
+ }
1354
+ elsif ( $try eq 'permute' ) {
1355
+ $order = $action ? $PERMUTE : $REQUIRE_ORDER;
1356
+ }
1357
+ elsif ( $try eq 'pass_through' or $try eq 'passthrough' ) {
1358
+ $passthrough = $action;
1359
+ }
1360
+ elsif ( $try =~ /^prefix=(.+)$/ && $action ) {
1361
+ $genprefix = $1;
1362
+ # Turn into regexp. Needs to be parenthesized!
1363
+ $genprefix = "(" . quotemeta($genprefix) . ")";
1364
+ eval { '' =~ /$genprefix/; };
1365
+ die("Getopt::Long: invalid pattern \"$genprefix\"\n") if $@;
1366
+ }
1367
+ elsif ( $try =~ /^prefix_pattern=(.+)$/ && $action ) {
1368
+ $genprefix = $1;
1369
+ # Parenthesize if needed.
1370
+ $genprefix = "(" . $genprefix . ")"
1371
+ unless $genprefix =~ /^\(.*\)$/;
1372
+ eval { '' =~ m"$genprefix"; };
1373
+ die("Getopt::Long: invalid pattern \"$genprefix\"\n") if $@;
1374
+ }
1375
+ elsif ( $try =~ /^long_prefix_pattern=(.+)$/ && $action ) {
1376
+ $longprefix = $1;
1377
+ # Parenthesize if needed.
1378
+ $longprefix = "(" . $longprefix . ")"
1379
+ unless $longprefix =~ /^\(.*\)$/;
1380
+ eval { '' =~ m"$longprefix"; };
1381
+ die("Getopt::Long: invalid long prefix pattern \"$longprefix\"\n") if $@;
1382
+ }
1383
+ elsif ( $try eq 'debug' ) {
1384
+ $debug = $action;
1385
+ }
1386
+ else {
1387
+ die("Getopt::Long: unknown or erroneous config parameter \"$opt\"\n")
1388
+ }
1389
+ }
1390
+ $prevconfig;
1391
+ }
1392
+
1393
+ # Deprecated name.
1394
+ sub config (@) {
1395
+ Configure (@_);
1396
+ }
1397
+
1398
+ # Issue a standard message for --version.
1399
+ #
1400
+ # The arguments are mostly the same as for Pod::Usage::pod2usage:
1401
+ #
1402
+ # - a number (exit value)
1403
+ # - a string (lead in message)
1404
+ # - a hash with options. See Pod::Usage for details.
1405
+ #
1406
+ sub VersionMessage(@) {
1407
+ # Massage args.
1408
+ my $pa = setup_pa_args("version", @_);
1409
+
1410
+ my $v = $main::VERSION;
1411
+ my $fh = $pa->{-output} ||
1412
+ ($pa->{-exitval} eq "NOEXIT" || $pa->{-exitval} < 2) ? \*STDOUT : \*STDERR;
1413
+
1414
+ print $fh (defined($pa->{-message}) ? $pa->{-message} : (),
1415
+ $0, defined $v ? " version $v" : (),
1416
+ "\n",
1417
+ "(", __PACKAGE__, "::", "GetOptions",
1418
+ " version ",
1419
+ defined($Getopt::Long::VERSION_STRING)
1420
+ ? $Getopt::Long::VERSION_STRING : $VERSION, ";",
1421
+ " Perl version ",
1422
+ $] >= 5.006 ? sprintf("%vd", $^V) : $],
1423
+ ")\n");
1424
+ exit($pa->{-exitval}) unless $pa->{-exitval} eq "NOEXIT";
1425
+ }
1426
+
1427
+ # Issue a standard message for --help.
1428
+ #
1429
+ # The arguments are the same as for Pod::Usage::pod2usage:
1430
+ #
1431
+ # - a number (exit value)
1432
+ # - a string (lead in message)
1433
+ # - a hash with options. See Pod::Usage for details.
1434
+ #
1435
+ sub HelpMessage(@) {
1436
+ eval {
1437
+ require Pod::Usage;
1438
+ import Pod::Usage;
1439
+ 1;
1440
+ } || die("Cannot provide help: cannot load Pod::Usage\n");
1441
+
1442
+ # Note that pod2usage will issue a warning if -exitval => NOEXIT.
1443
+ pod2usage(setup_pa_args("help", @_));
1444
+
1445
+ }
1446
+
1447
+ # Helper routine to set up a normalized hash ref to be used as
1448
+ # argument to pod2usage.
1449
+ sub setup_pa_args($@) {
1450
+ my $tag = shift; # who's calling
1451
+
1452
+ # If called by direct binding to an option, it will get the option
1453
+ # name and value as arguments. Remove these, if so.
1454
+ @_ = () if @_ == 2 && $_[0] eq $tag;
1455
+
1456
+ my $pa;
1457
+ if ( @_ > 1 ) {
1458
+ $pa = { @_ };
1459
+ }
1460
+ else {
1461
+ $pa = shift || {};
1462
+ }
1463
+
1464
+ # At this point, $pa can be a number (exit value), string
1465
+ # (message) or hash with options.
1466
+
1467
+ if ( UNIVERSAL::isa($pa, 'HASH') ) {
1468
+ # Get rid of -msg vs. -message ambiguity.
1469
+ $pa->{-message} = $pa->{-msg};
1470
+ delete($pa->{-msg});
1471
+ }
1472
+ elsif ( $pa =~ /^-?\d+$/ ) {
1473
+ $pa = { -exitval => $pa };
1474
+ }
1475
+ else {
1476
+ $pa = { -message => $pa };
1477
+ }
1478
+
1479
+ # These are _our_ defaults.
1480
+ $pa->{-verbose} = 0 unless exists($pa->{-verbose});
1481
+ $pa->{-exitval} = 0 unless exists($pa->{-exitval});
1482
+ $pa;
1483
+ }
1484
+
1485
+ # Sneak way to know what version the user requested.
1486
+ sub VERSION {
1487
+ $requested_version = $_[1];
1488
+ shift->SUPER::VERSION(@_);
1489
+ }
1490
+
1491
+ package Getopt::Long::CallBack;
1492
+
1493
+ sub new {
1494
+ my ($pkg, %atts) = @_;
1495
+ bless { %atts }, $pkg;
1496
+ }
1497
+
1498
+ sub name {
1499
+ my $self = shift;
1500
+ ''.$self->{name};
1501
+ }
1502
+
1503
+ use overload
1504
+ # Treat this object as an ordinary string for legacy API.
1505
+ '""' => \&name,
1506
+ fallback => 1;
1507
+
1508
+ 1;
1509
+
1510
+ ################ Documentation ################
1511
+
1512
+ =head1 NAME
1513
+
1514
+ Getopt::Long - Extended processing of command line options
1515
+
1516
+ =head1 SYNOPSIS
1517
+
1518
+ use Getopt::Long;
1519
+ my $data = "file.dat";
1520
+ my $length = 24;
1521
+ my $verbose;
1522
+ GetOptions ("length=i" => \$length, # numeric
1523
+ "file=s" => \$data, # string
1524
+ "verbose" => \$verbose) # flag
1525
+ or die("Error in command line arguments\n");
1526
+
1527
+ =head1 DESCRIPTION
1528
+
1529
+ The Getopt::Long module implements an extended getopt function called
1530
+ GetOptions(). It parses the command line from C<@ARGV>, recognizing
1531
+ and removing specified options and their possible values.
1532
+
1533
+ This function adheres to the POSIX syntax for command
1534
+ line options, with GNU extensions. In general, this means that options
1535
+ have long names instead of single letters, and are introduced with a
1536
+ double dash "--". Support for bundling of command line options, as was
1537
+ the case with the more traditional single-letter approach, is provided
1538
+ but not enabled by default.
1539
+
1540
+ =head1 Command Line Options, an Introduction
1541
+
1542
+ Command line operated programs traditionally take their arguments from
1543
+ the command line, for example filenames or other information that the
1544
+ program needs to know. Besides arguments, these programs often take
1545
+ command line I<options> as well. Options are not necessary for the
1546
+ program to work, hence the name 'option', but are used to modify its
1547
+ default behaviour. For example, a program could do its job quietly,
1548
+ but with a suitable option it could provide verbose information about
1549
+ what it did.
1550
+
1551
+ Command line options come in several flavours. Historically, they are
1552
+ preceded by a single dash C<->, and consist of a single letter.
1553
+
1554
+ -l -a -c
1555
+
1556
+ Usually, these single-character options can be bundled:
1557
+
1558
+ -lac
1559
+
1560
+ Options can have values, the value is placed after the option
1561
+ character. Sometimes with whitespace in between, sometimes not:
1562
+
1563
+ -s 24 -s24
1564
+
1565
+ Due to the very cryptic nature of these options, another style was
1566
+ developed that used long names. So instead of a cryptic C<-l> one
1567
+ could use the more descriptive C<--long>. To distinguish between a
1568
+ bundle of single-character options and a long one, two dashes are used
1569
+ to precede the option name. Early implementations of long options used
1570
+ a plus C<+> instead. Also, option values could be specified either
1571
+ like
1572
+
1573
+ --size=24
1574
+
1575
+ or
1576
+
1577
+ --size 24
1578
+
1579
+ The C<+> form is now obsolete and strongly deprecated.
1580
+
1581
+ =head1 Getting Started with Getopt::Long
1582
+
1583
+ Getopt::Long is the Perl5 successor of C<newgetopt.pl>. This was the
1584
+ first Perl module that provided support for handling the new style of
1585
+ command line options, in particular long option names, hence the Perl5
1586
+ name Getopt::Long. This module also supports single-character options
1587
+ and bundling.
1588
+
1589
+ To use Getopt::Long from a Perl program, you must include the
1590
+ following line in your Perl program:
1591
+
1592
+ use Getopt::Long;
1593
+
1594
+ This will load the core of the Getopt::Long module and prepare your
1595
+ program for using it. Most of the actual Getopt::Long code is not
1596
+ loaded until you really call one of its functions.
1597
+
1598
+ In the default configuration, options names may be abbreviated to
1599
+ uniqueness, case does not matter, and a single dash is sufficient,
1600
+ even for long option names. Also, options may be placed between
1601
+ non-option arguments. See L<Configuring Getopt::Long> for more
1602
+ details on how to configure Getopt::Long.
1603
+
1604
+ =head2 Simple options
1605
+
1606
+ The most simple options are the ones that take no values. Their mere
1607
+ presence on the command line enables the option. Popular examples are:
1608
+
1609
+ --all --verbose --quiet --debug
1610
+
1611
+ Handling simple options is straightforward:
1612
+
1613
+ my $verbose = ''; # option variable with default value (false)
1614
+ my $all = ''; # option variable with default value (false)
1615
+ GetOptions ('verbose' => \$verbose, 'all' => \$all);
1616
+
1617
+ The call to GetOptions() parses the command line arguments that are
1618
+ present in C<@ARGV> and sets the option variable to the value C<1> if
1619
+ the option did occur on the command line. Otherwise, the option
1620
+ variable is not touched. Setting the option value to true is often
1621
+ called I<enabling> the option.
1622
+
1623
+ The option name as specified to the GetOptions() function is called
1624
+ the option I<specification>. Later we'll see that this specification
1625
+ can contain more than just the option name. The reference to the
1626
+ variable is called the option I<destination>.
1627
+
1628
+ GetOptions() will return a true value if the command line could be
1629
+ processed successfully. Otherwise, it will write error messages using
1630
+ die() and warn(), and return a false result.
1631
+
1632
+ =head2 A little bit less simple options
1633
+
1634
+ Getopt::Long supports two useful variants of simple options:
1635
+ I<negatable> options and I<incremental> options.
1636
+
1637
+ A negatable option is specified with an exclamation mark C<!> after the
1638
+ option name:
1639
+
1640
+ my $verbose = ''; # option variable with default value (false)
1641
+ GetOptions ('verbose!' => \$verbose);
1642
+
1643
+ Now, using C<--verbose> on the command line will enable C<$verbose>,
1644
+ as expected. But it is also allowed to use C<--noverbose>, which will
1645
+ disable C<$verbose> by setting its value to C<0>. Using a suitable
1646
+ default value, the program can find out whether C<$verbose> is false
1647
+ by default, or disabled by using C<--noverbose>.
1648
+
1649
+ An incremental option is specified with a plus C<+> after the
1650
+ option name:
1651
+
1652
+ my $verbose = ''; # option variable with default value (false)
1653
+ GetOptions ('verbose+' => \$verbose);
1654
+
1655
+ Using C<--verbose> on the command line will increment the value of
1656
+ C<$verbose>. This way the program can keep track of how many times the
1657
+ option occurred on the command line. For example, each occurrence of
1658
+ C<--verbose> could increase the verbosity level of the program.
1659
+
1660
+ =head2 Mixing command line option with other arguments
1661
+
1662
+ Usually programs take command line options as well as other arguments,
1663
+ for example, file names. It is good practice to always specify the
1664
+ options first, and the other arguments last. Getopt::Long will,
1665
+ however, allow the options and arguments to be mixed and 'filter out'
1666
+ all the options before passing the rest of the arguments to the
1667
+ program. To stop Getopt::Long from processing further arguments,
1668
+ insert a double dash C<--> on the command line:
1669
+
1670
+ --size 24 -- --all
1671
+
1672
+ In this example, C<--all> will I<not> be treated as an option, but
1673
+ passed to the program unharmed, in C<@ARGV>.
1674
+
1675
+ =head2 Options with values
1676
+
1677
+ For options that take values it must be specified whether the option
1678
+ value is required or not, and what kind of value the option expects.
1679
+
1680
+ Three kinds of values are supported: integer numbers, floating point
1681
+ numbers, and strings.
1682
+
1683
+ If the option value is required, Getopt::Long will take the
1684
+ command line argument that follows the option and assign this to the
1685
+ option variable. If, however, the option value is specified as
1686
+ optional, this will only be done if that value does not look like a
1687
+ valid command line option itself.
1688
+
1689
+ my $tag = ''; # option variable with default value
1690
+ GetOptions ('tag=s' => \$tag);
1691
+
1692
+ In the option specification, the option name is followed by an equals
1693
+ sign C<=> and the letter C<s>. The equals sign indicates that this
1694
+ option requires a value. The letter C<s> indicates that this value is
1695
+ an arbitrary string. Other possible value types are C<i> for integer
1696
+ values, and C<f> for floating point values. Using a colon C<:> instead
1697
+ of the equals sign indicates that the option value is optional. In
1698
+ this case, if no suitable value is supplied, string valued options get
1699
+ an empty string C<''> assigned, while numeric options are set to C<0>.
1700
+
1701
+ =head2 Options with multiple values
1702
+
1703
+ Options sometimes take several values. For example, a program could
1704
+ use multiple directories to search for library files:
1705
+
1706
+ --library lib/stdlib --library lib/extlib
1707
+
1708
+ To accomplish this behaviour, simply specify an array reference as the
1709
+ destination for the option:
1710
+
1711
+ GetOptions ("library=s" => \@libfiles);
1712
+
1713
+ Alternatively, you can specify that the option can have multiple
1714
+ values by adding a "@", and pass a scalar reference as the
1715
+ destination:
1716
+
1717
+ GetOptions ("library=s@" => \$libfiles);
1718
+
1719
+ Used with the example above, C<@libfiles> (or C<@$libfiles>) would
1720
+ contain two strings upon completion: C<"lib/stdlib"> and
1721
+ C<"lib/extlib">, in that order. It is also possible to specify that
1722
+ only integer or floating point numbers are acceptable values.
1723
+
1724
+ Often it is useful to allow comma-separated lists of values as well as
1725
+ multiple occurrences of the options. This is easy using Perl's split()
1726
+ and join() operators:
1727
+
1728
+ GetOptions ("library=s" => \@libfiles);
1729
+ @libfiles = split(/,/,join(',',@libfiles));
1730
+
1731
+ Of course, it is important to choose the right separator string for
1732
+ each purpose.
1733
+
1734
+ Warning: What follows is an experimental feature.
1735
+
1736
+ Options can take multiple values at once, for example
1737
+
1738
+ --coordinates 52.2 16.4 --rgbcolor 255 255 149
1739
+
1740
+ This can be accomplished by adding a repeat specifier to the option
1741
+ specification. Repeat specifiers are very similar to the C<{...}>
1742
+ repeat specifiers that can be used with regular expression patterns.
1743
+ For example, the above command line would be handled as follows:
1744
+
1745
+ GetOptions('coordinates=f{2}' => \@coor, 'rgbcolor=i{3}' => \@color);
1746
+
1747
+ The destination for the option must be an array or array reference.
1748
+
1749
+ It is also possible to specify the minimal and maximal number of
1750
+ arguments an option takes. C<foo=s{2,4}> indicates an option that
1751
+ takes at least two and at most 4 arguments. C<foo=s{1,}> indicates one
1752
+ or more values; C<foo:s{,}> indicates zero or more option values.
1753
+
1754
+ =head2 Options with hash values
1755
+
1756
+ If the option destination is a reference to a hash, the option will
1757
+ take, as value, strings of the form I<key>C<=>I<value>. The value will
1758
+ be stored with the specified key in the hash.
1759
+
1760
+ GetOptions ("define=s" => \%defines);
1761
+
1762
+ Alternatively you can use:
1763
+
1764
+ GetOptions ("define=s%" => \$defines);
1765
+
1766
+ When used with command line options:
1767
+
1768
+ --define os=linux --define vendor=redhat
1769
+
1770
+ the hash C<%defines> (or C<%$defines>) will contain two keys, C<"os">
1771
+ with value C<"linux"> and C<"vendor"> with value C<"redhat">. It is
1772
+ also possible to specify that only integer or floating point numbers
1773
+ are acceptable values. The keys are always taken to be strings.
1774
+
1775
+ =head2 User-defined subroutines to handle options
1776
+
1777
+ Ultimate control over what should be done when (actually: each time)
1778
+ an option is encountered on the command line can be achieved by
1779
+ designating a reference to a subroutine (or an anonymous subroutine)
1780
+ as the option destination. When GetOptions() encounters the option, it
1781
+ will call the subroutine with two or three arguments. The first
1782
+ argument is the name of the option. (Actually, it is an object that
1783
+ stringifies to the name of the option.) For a scalar or array destination,
1784
+ the second argument is the value to be stored. For a hash destination,
1785
+ the second argument is the key to the hash, and the third argument
1786
+ the value to be stored. It is up to the subroutine to store the value,
1787
+ or do whatever it thinks is appropriate.
1788
+
1789
+ A trivial application of this mechanism is to implement options that
1790
+ are related to each other. For example:
1791
+
1792
+ my $verbose = ''; # option variable with default value (false)
1793
+ GetOptions ('verbose' => \$verbose,
1794
+ 'quiet' => sub { $verbose = 0 });
1795
+
1796
+ Here C<--verbose> and C<--quiet> control the same variable
1797
+ C<$verbose>, but with opposite values.
1798
+
1799
+ If the subroutine needs to signal an error, it should call die() with
1800
+ the desired error message as its argument. GetOptions() will catch the
1801
+ die(), issue the error message, and record that an error result must
1802
+ be returned upon completion.
1803
+
1804
+ If the text of the error message starts with an exclamation mark C<!>
1805
+ it is interpreted specially by GetOptions(). There is currently one
1806
+ special command implemented: C<die("!FINISH")> will cause GetOptions()
1807
+ to stop processing options, as if it encountered a double dash C<-->.
1808
+
1809
+ In version 2.37 the first argument to the callback function was
1810
+ changed from string to object. This was done to make room for
1811
+ extensions and more detailed control. The object stringifies to the
1812
+ option name so this change should not introduce compatibility
1813
+ problems.
1814
+
1815
+ Here is an example of how to access the option name and value from within
1816
+ a subroutine:
1817
+
1818
+ GetOptions ('opt=i' => \&handler);
1819
+ sub handler {
1820
+ my ($opt_name, $opt_value) = @_;
1821
+ print("Option name is $opt_name and value is $opt_value\n");
1822
+ }
1823
+
1824
+ =head2 Options with multiple names
1825
+
1826
+ Often it is user friendly to supply alternate mnemonic names for
1827
+ options. For example C<--height> could be an alternate name for
1828
+ C<--length>. Alternate names can be included in the option
1829
+ specification, separated by vertical bar C<|> characters. To implement
1830
+ the above example:
1831
+
1832
+ GetOptions ('length|height=f' => \$length);
1833
+
1834
+ The first name is called the I<primary> name, the other names are
1835
+ called I<aliases>. When using a hash to store options, the key will
1836
+ always be the primary name.
1837
+
1838
+ Multiple alternate names are possible.
1839
+
1840
+ =head2 Case and abbreviations
1841
+
1842
+ Without additional configuration, GetOptions() will ignore the case of
1843
+ option names, and allow the options to be abbreviated to uniqueness.
1844
+
1845
+ GetOptions ('length|height=f' => \$length, "head" => \$head);
1846
+
1847
+ This call will allow C<--l> and C<--L> for the length option, but
1848
+ requires a least C<--hea> and C<--hei> for the head and height options.
1849
+
1850
+ =head2 Summary of Option Specifications
1851
+
1852
+ Each option specifier consists of two parts: the name specification
1853
+ and the argument specification.
1854
+
1855
+ The name specification contains the name of the option, optionally
1856
+ followed by a list of alternative names separated by vertical bar
1857
+ characters.
1858
+
1859
+ length option name is "length"
1860
+ length|size|l name is "length", aliases are "size" and "l"
1861
+
1862
+ The argument specification is optional. If omitted, the option is
1863
+ considered boolean, a value of 1 will be assigned when the option is
1864
+ used on the command line.
1865
+
1866
+ The argument specification can be
1867
+
1868
+ =over 4
1869
+
1870
+ =item !
1871
+
1872
+ The option does not take an argument and may be negated by prefixing
1873
+ it with "no" or "no-". E.g. C<"foo!"> will allow C<--foo> (a value of
1874
+ 1 will be assigned) as well as C<--nofoo> and C<--no-foo> (a value of
1875
+ 0 will be assigned). If the option has aliases, this applies to the
1876
+ aliases as well.
1877
+
1878
+ Using negation on a single letter option when bundling is in effect is
1879
+ pointless and will result in a warning.
1880
+
1881
+ =item +
1882
+
1883
+ The option does not take an argument and will be incremented by 1
1884
+ every time it appears on the command line. E.g. C<"more+">, when used
1885
+ with C<--more --more --more>, will increment the value three times,
1886
+ resulting in a value of 3 (provided it was 0 or undefined at first).
1887
+
1888
+ The C<+> specifier is ignored if the option destination is not a scalar.
1889
+
1890
+ =item = I<type> [ I<desttype> ] [ I<repeat> ]
1891
+
1892
+ The option requires an argument of the given type. Supported types
1893
+ are:
1894
+
1895
+ =over 4
1896
+
1897
+ =item s
1898
+
1899
+ String. An arbitrary sequence of characters. It is valid for the
1900
+ argument to start with C<-> or C<-->.
1901
+
1902
+ =item i
1903
+
1904
+ Integer. An optional leading plus or minus sign, followed by a
1905
+ sequence of digits.
1906
+
1907
+ =item o
1908
+
1909
+ Extended integer, Perl style. This can be either an optional leading
1910
+ plus or minus sign, followed by a sequence of digits, or an octal
1911
+ string (a zero, optionally followed by '0', '1', .. '7'), or a
1912
+ hexadecimal string (C<0x> followed by '0' .. '9', 'a' .. 'f', case
1913
+ insensitive), or a binary string (C<0b> followed by a series of '0'
1914
+ and '1').
1915
+
1916
+ =item f
1917
+
1918
+ Real number. For example C<3.14>, C<-6.23E24> and so on.
1919
+
1920
+ =back
1921
+
1922
+ The I<desttype> can be C<@> or C<%> to specify that the option is
1923
+ list or a hash valued. This is only needed when the destination for
1924
+ the option value is not otherwise specified. It should be omitted when
1925
+ not needed.
1926
+
1927
+ The I<repeat> specifies the number of values this option takes per
1928
+ occurrence on the command line. It has the format C<{> [ I<min> ] [ C<,> [ I<max> ] ] C<}>.
1929
+
1930
+ I<min> denotes the minimal number of arguments. It defaults to 1 for
1931
+ options with C<=> and to 0 for options with C<:>, see below. Note that
1932
+ I<min> overrules the C<=> / C<:> semantics.
1933
+
1934
+ I<max> denotes the maximum number of arguments. It must be at least
1935
+ I<min>. If I<max> is omitted, I<but the comma is not>, there is no
1936
+ upper bound to the number of argument values taken.
1937
+
1938
+ =item : I<type> [ I<desttype> ]
1939
+
1940
+ Like C<=>, but designates the argument as optional.
1941
+ If omitted, an empty string will be assigned to string values options,
1942
+ and the value zero to numeric options.
1943
+
1944
+ Note that if a string argument starts with C<-> or C<-->, it will be
1945
+ considered an option on itself.
1946
+
1947
+ =item : I<number> [ I<desttype> ]
1948
+
1949
+ Like C<:i>, but if the value is omitted, the I<number> will be assigned.
1950
+
1951
+ =item : + [ I<desttype> ]
1952
+
1953
+ Like C<:i>, but if the value is omitted, the current value for the
1954
+ option will be incremented.
1955
+
1956
+ =back
1957
+
1958
+ =head1 Advanced Possibilities
1959
+
1960
+ =head2 Object oriented interface
1961
+
1962
+ Getopt::Long can be used in an object oriented way as well:
1963
+
1964
+ use Getopt::Long;
1965
+ $p = Getopt::Long::Parser->new;
1966
+ $p->configure(...configuration options...);
1967
+ if ($p->getoptions(...options descriptions...)) ...
1968
+ if ($p->getoptionsfromarray( \@array, ...options descriptions...)) ...
1969
+
1970
+ Configuration options can be passed to the constructor:
1971
+
1972
+ $p = new Getopt::Long::Parser
1973
+ config => [...configuration options...];
1974
+
1975
+ =head2 Thread Safety
1976
+
1977
+ Getopt::Long is thread safe when using ithreads as of Perl 5.8. It is
1978
+ I<not> thread safe when using the older (experimental and now
1979
+ obsolete) threads implementation that was added to Perl 5.005.
1980
+
1981
+ =head2 Documentation and help texts
1982
+
1983
+ Getopt::Long encourages the use of Pod::Usage to produce help
1984
+ messages. For example:
1985
+
1986
+ use Getopt::Long;
1987
+ use Pod::Usage;
1988
+
1989
+ my $man = 0;
1990
+ my $help = 0;
1991
+
1992
+ GetOptions('help|?' => \$help, man => \$man) or pod2usage(2);
1993
+ pod2usage(1) if $help;
1994
+ pod2usage(-exitval => 0, -verbose => 2) if $man;
1995
+
1996
+ __END__
1997
+
1998
+ =head1 NAME
1999
+
2000
+ sample - Using Getopt::Long and Pod::Usage
2001
+
2002
+ =head1 SYNOPSIS
2003
+
2004
+ sample [options] [file ...]
2005
+
2006
+ Options:
2007
+ -help brief help message
2008
+ -man full documentation
2009
+
2010
+ =head1 OPTIONS
2011
+
2012
+ =over 8
2013
+
2014
+ =item B<-help>
2015
+
2016
+ Print a brief help message and exits.
2017
+
2018
+ =item B<-man>
2019
+
2020
+ Prints the manual page and exits.
2021
+
2022
+ =back
2023
+
2024
+ =head1 DESCRIPTION
2025
+
2026
+ B<This program> will read the given input file(s) and do something
2027
+ useful with the contents thereof.
2028
+
2029
+ =cut
2030
+
2031
+ See L<Pod::Usage> for details.
2032
+
2033
+ =head2 Parsing options from an arbitrary array
2034
+
2035
+ By default, GetOptions parses the options that are present in the
2036
+ global array C<@ARGV>. A special entry C<GetOptionsFromArray> can be
2037
+ used to parse options from an arbitrary array.
2038
+
2039
+ use Getopt::Long qw(GetOptionsFromArray);
2040
+ $ret = GetOptionsFromArray(\@myopts, ...);
2041
+
2042
+ When used like this, options and their possible values are removed
2043
+ from C<@myopts>, the global C<@ARGV> is not touched at all.
2044
+
2045
+ The following two calls behave identically:
2046
+
2047
+ $ret = GetOptions( ... );
2048
+ $ret = GetOptionsFromArray(\@ARGV, ... );
2049
+
2050
+ This also means that a first argument hash reference now becomes the
2051
+ second argument:
2052
+
2053
+ $ret = GetOptions(\%opts, ... );
2054
+ $ret = GetOptionsFromArray(\@ARGV, \%opts, ... );
2055
+
2056
+ =head2 Parsing options from an arbitrary string
2057
+
2058
+ A special entry C<GetOptionsFromString> can be used to parse options
2059
+ from an arbitrary string.
2060
+
2061
+ use Getopt::Long qw(GetOptionsFromString);
2062
+ $ret = GetOptionsFromString($string, ...);
2063
+
2064
+ The contents of the string are split into arguments using a call to
2065
+ C<Text::ParseWords::shellwords>. As with C<GetOptionsFromArray>, the
2066
+ global C<@ARGV> is not touched.
2067
+
2068
+ It is possible that, upon completion, not all arguments in the string
2069
+ have been processed. C<GetOptionsFromString> will, when called in list
2070
+ context, return both the return status and an array reference to any
2071
+ remaining arguments:
2072
+
2073
+ ($ret, $args) = GetOptionsFromString($string, ... );
2074
+
2075
+ If any arguments remain, and C<GetOptionsFromString> was not called in
2076
+ list context, a message will be given and C<GetOptionsFromString> will
2077
+ return failure.
2078
+
2079
+ As with GetOptionsFromArray, a first argument hash reference now
2080
+ becomes the second argument.
2081
+
2082
+ =head2 Storing options values in a hash
2083
+
2084
+ Sometimes, for example when there are a lot of options, having a
2085
+ separate variable for each of them can be cumbersome. GetOptions()
2086
+ supports, as an alternative mechanism, storing options values in a
2087
+ hash.
2088
+
2089
+ To obtain this, a reference to a hash must be passed I<as the first
2090
+ argument> to GetOptions(). For each option that is specified on the
2091
+ command line, the option value will be stored in the hash with the
2092
+ option name as key. Options that are not actually used on the command
2093
+ line will not be put in the hash, on other words,
2094
+ C<exists($h{option})> (or defined()) can be used to test if an option
2095
+ was used. The drawback is that warnings will be issued if the program
2096
+ runs under C<use strict> and uses C<$h{option}> without testing with
2097
+ exists() or defined() first.
2098
+
2099
+ my %h = ();
2100
+ GetOptions (\%h, 'length=i'); # will store in $h{length}
2101
+
2102
+ For options that take list or hash values, it is necessary to indicate
2103
+ this by appending an C<@> or C<%> sign after the type:
2104
+
2105
+ GetOptions (\%h, 'colours=s@'); # will push to @{$h{colours}}
2106
+
2107
+ To make things more complicated, the hash may contain references to
2108
+ the actual destinations, for example:
2109
+
2110
+ my $len = 0;
2111
+ my %h = ('length' => \$len);
2112
+ GetOptions (\%h, 'length=i'); # will store in $len
2113
+
2114
+ This example is fully equivalent with:
2115
+
2116
+ my $len = 0;
2117
+ GetOptions ('length=i' => \$len); # will store in $len
2118
+
2119
+ Any mixture is possible. For example, the most frequently used options
2120
+ could be stored in variables while all other options get stored in the
2121
+ hash:
2122
+
2123
+ my $verbose = 0; # frequently referred
2124
+ my $debug = 0; # frequently referred
2125
+ my %h = ('verbose' => \$verbose, 'debug' => \$debug);
2126
+ GetOptions (\%h, 'verbose', 'debug', 'filter', 'size=i');
2127
+ if ( $verbose ) { ... }
2128
+ if ( exists $h{filter} ) { ... option 'filter' was specified ... }
2129
+
2130
+ =head2 Bundling
2131
+
2132
+ With bundling it is possible to set several single-character options
2133
+ at once. For example if C<a>, C<v> and C<x> are all valid options,
2134
+
2135
+ -vax
2136
+
2137
+ would set all three.
2138
+
2139
+ Getopt::Long supports two levels of bundling. To enable bundling, a
2140
+ call to Getopt::Long::Configure is required.
2141
+
2142
+ The first level of bundling can be enabled with:
2143
+
2144
+ Getopt::Long::Configure ("bundling");
2145
+
2146
+ Configured this way, single-character options can be bundled but long
2147
+ options B<must> always start with a double dash C<--> to avoid
2148
+ ambiguity. For example, when C<vax>, C<a>, C<v> and C<x> are all valid
2149
+ options,
2150
+
2151
+ -vax
2152
+
2153
+ would set C<a>, C<v> and C<x>, but
2154
+
2155
+ --vax
2156
+
2157
+ would set C<vax>.
2158
+
2159
+ The second level of bundling lifts this restriction. It can be enabled
2160
+ with:
2161
+
2162
+ Getopt::Long::Configure ("bundling_override");
2163
+
2164
+ Now, C<-vax> would set the option C<vax>.
2165
+
2166
+ When any level of bundling is enabled, option values may be inserted
2167
+ in the bundle. For example:
2168
+
2169
+ -h24w80
2170
+
2171
+ is equivalent to
2172
+
2173
+ -h 24 -w 80
2174
+
2175
+ When configured for bundling, single-character options are matched
2176
+ case sensitive while long options are matched case insensitive. To
2177
+ have the single-character options matched case insensitive as well,
2178
+ use:
2179
+
2180
+ Getopt::Long::Configure ("bundling", "ignorecase_always");
2181
+
2182
+ It goes without saying that bundling can be quite confusing.
2183
+
2184
+ =head2 The lonesome dash
2185
+
2186
+ Normally, a lone dash C<-> on the command line will not be considered
2187
+ an option. Option processing will terminate (unless "permute" is
2188
+ configured) and the dash will be left in C<@ARGV>.
2189
+
2190
+ It is possible to get special treatment for a lone dash. This can be
2191
+ achieved by adding an option specification with an empty name, for
2192
+ example:
2193
+
2194
+ GetOptions ('' => \$stdio);
2195
+
2196
+ A lone dash on the command line will now be a legal option, and using
2197
+ it will set variable C<$stdio>.
2198
+
2199
+ =head2 Argument callback
2200
+
2201
+ A special option 'name' C<< <> >> can be used to designate a subroutine
2202
+ to handle non-option arguments. When GetOptions() encounters an
2203
+ argument that does not look like an option, it will immediately call this
2204
+ subroutine and passes it one parameter: the argument name. Well, actually
2205
+ it is an object that stringifies to the argument name.
2206
+
2207
+ For example:
2208
+
2209
+ my $width = 80;
2210
+ sub process { ... }
2211
+ GetOptions ('width=i' => \$width, '<>' => \&process);
2212
+
2213
+ When applied to the following command line:
2214
+
2215
+ arg1 --width=72 arg2 --width=60 arg3
2216
+
2217
+ This will call
2218
+ C<process("arg1")> while C<$width> is C<80>,
2219
+ C<process("arg2")> while C<$width> is C<72>, and
2220
+ C<process("arg3")> while C<$width> is C<60>.
2221
+
2222
+ This feature requires configuration option B<permute>, see section
2223
+ L<Configuring Getopt::Long>.
2224
+
2225
+ =head1 Configuring Getopt::Long
2226
+
2227
+ Getopt::Long can be configured by calling subroutine
2228
+ Getopt::Long::Configure(). This subroutine takes a list of quoted
2229
+ strings, each specifying a configuration option to be enabled, e.g.
2230
+ C<ignore_case>, or disabled, e.g. C<no_ignore_case>. Case does not
2231
+ matter. Multiple calls to Configure() are possible.
2232
+
2233
+ Alternatively, as of version 2.24, the configuration options may be
2234
+ passed together with the C<use> statement:
2235
+
2236
+ use Getopt::Long qw(:config no_ignore_case bundling);
2237
+
2238
+ The following options are available:
2239
+
2240
+ =over 12
2241
+
2242
+ =item default
2243
+
2244
+ This option causes all configuration options to be reset to their
2245
+ default values.
2246
+
2247
+ =item posix_default
2248
+
2249
+ This option causes all configuration options to be reset to their
2250
+ default values as if the environment variable POSIXLY_CORRECT had
2251
+ been set.
2252
+
2253
+ =item auto_abbrev
2254
+
2255
+ Allow option names to be abbreviated to uniqueness.
2256
+ Default is enabled unless environment variable
2257
+ POSIXLY_CORRECT has been set, in which case C<auto_abbrev> is disabled.
2258
+
2259
+ =item getopt_compat
2260
+
2261
+ Allow C<+> to start options.
2262
+ Default is enabled unless environment variable
2263
+ POSIXLY_CORRECT has been set, in which case C<getopt_compat> is disabled.
2264
+
2265
+ =item gnu_compat
2266
+
2267
+ C<gnu_compat> controls whether C<--opt=> is allowed, and what it should
2268
+ do. Without C<gnu_compat>, C<--opt=> gives an error. With C<gnu_compat>,
2269
+ C<--opt=> will give option C<opt> and empty value.
2270
+ This is the way GNU getopt_long() does it.
2271
+
2272
+ =item gnu_getopt
2273
+
2274
+ This is a short way of setting C<gnu_compat> C<bundling> C<permute>
2275
+ C<no_getopt_compat>. With C<gnu_getopt>, command line handling should be
2276
+ fully compatible with GNU getopt_long().
2277
+
2278
+ =item require_order
2279
+
2280
+ Whether command line arguments are allowed to be mixed with options.
2281
+ Default is disabled unless environment variable
2282
+ POSIXLY_CORRECT has been set, in which case C<require_order> is enabled.
2283
+
2284
+ See also C<permute>, which is the opposite of C<require_order>.
2285
+
2286
+ =item permute
2287
+
2288
+ Whether command line arguments are allowed to be mixed with options.
2289
+ Default is enabled unless environment variable
2290
+ POSIXLY_CORRECT has been set, in which case C<permute> is disabled.
2291
+ Note that C<permute> is the opposite of C<require_order>.
2292
+
2293
+ If C<permute> is enabled, this means that
2294
+
2295
+ --foo arg1 --bar arg2 arg3
2296
+
2297
+ is equivalent to
2298
+
2299
+ --foo --bar arg1 arg2 arg3
2300
+
2301
+ If an argument callback routine is specified, C<@ARGV> will always be
2302
+ empty upon successful return of GetOptions() since all options have been
2303
+ processed. The only exception is when C<--> is used:
2304
+
2305
+ --foo arg1 --bar arg2 -- arg3
2306
+
2307
+ This will call the callback routine for arg1 and arg2, and then
2308
+ terminate GetOptions() leaving C<"arg3"> in C<@ARGV>.
2309
+
2310
+ If C<require_order> is enabled, options processing
2311
+ terminates when the first non-option is encountered.
2312
+
2313
+ --foo arg1 --bar arg2 arg3
2314
+
2315
+ is equivalent to
2316
+
2317
+ --foo -- arg1 --bar arg2 arg3
2318
+
2319
+ If C<pass_through> is also enabled, options processing will terminate
2320
+ at the first unrecognized option, or non-option, whichever comes
2321
+ first.
2322
+
2323
+ =item bundling (default: disabled)
2324
+
2325
+ Enabling this option will allow single-character options to be
2326
+ bundled. To distinguish bundles from long option names, long options
2327
+ I<must> be introduced with C<--> and bundles with C<->.
2328
+
2329
+ Note that, if you have options C<a>, C<l> and C<all>, and
2330
+ auto_abbrev enabled, possible arguments and option settings are:
2331
+
2332
+ using argument sets option(s)
2333
+ ------------------------------------------
2334
+ -a, --a a
2335
+ -l, --l l
2336
+ -al, -la, -ala, -all,... a, l
2337
+ --al, --all all
2338
+
2339
+ The surprising part is that C<--a> sets option C<a> (due to auto
2340
+ completion), not C<all>.
2341
+
2342
+ Note: disabling C<bundling> also disables C<bundling_override>.
2343
+
2344
+ =item bundling_override (default: disabled)
2345
+
2346
+ If C<bundling_override> is enabled, bundling is enabled as with
2347
+ C<bundling> but now long option names override option bundles.
2348
+
2349
+ Note: disabling C<bundling_override> also disables C<bundling>.
2350
+
2351
+ B<Note:> Using option bundling can easily lead to unexpected results,
2352
+ especially when mixing long options and bundles. Caveat emptor.
2353
+
2354
+ =item ignore_case (default: enabled)
2355
+
2356
+ If enabled, case is ignored when matching option names. If, however,
2357
+ bundling is enabled as well, single character options will be treated
2358
+ case-sensitive.
2359
+
2360
+ With C<ignore_case>, option specifications for options that only
2361
+ differ in case, e.g., C<"foo"> and C<"Foo">, will be flagged as
2362
+ duplicates.
2363
+
2364
+ Note: disabling C<ignore_case> also disables C<ignore_case_always>.
2365
+
2366
+ =item ignore_case_always (default: disabled)
2367
+
2368
+ When bundling is in effect, case is ignored on single-character
2369
+ options also.
2370
+
2371
+ Note: disabling C<ignore_case_always> also disables C<ignore_case>.
2372
+
2373
+ =item auto_version (default:disabled)
2374
+
2375
+ Automatically provide support for the B<--version> option if
2376
+ the application did not specify a handler for this option itself.
2377
+
2378
+ Getopt::Long will provide a standard version message that includes the
2379
+ program name, its version (if $main::VERSION is defined), and the
2380
+ versions of Getopt::Long and Perl. The message will be written to
2381
+ standard output and processing will terminate.
2382
+
2383
+ C<auto_version> will be enabled if the calling program explicitly
2384
+ specified a version number higher than 2.32 in the C<use> or
2385
+ C<require> statement.
2386
+
2387
+ =item auto_help (default:disabled)
2388
+
2389
+ Automatically provide support for the B<--help> and B<-?> options if
2390
+ the application did not specify a handler for this option itself.
2391
+
2392
+ Getopt::Long will provide a help message using module L<Pod::Usage>. The
2393
+ message, derived from the SYNOPSIS POD section, will be written to
2394
+ standard output and processing will terminate.
2395
+
2396
+ C<auto_help> will be enabled if the calling program explicitly
2397
+ specified a version number higher than 2.32 in the C<use> or
2398
+ C<require> statement.
2399
+
2400
+ =item pass_through (default: disabled)
2401
+
2402
+ Options that are unknown, ambiguous or supplied with an invalid option
2403
+ value are passed through in C<@ARGV> instead of being flagged as
2404
+ errors. This makes it possible to write wrapper scripts that process
2405
+ only part of the user supplied command line arguments, and pass the
2406
+ remaining options to some other program.
2407
+
2408
+ If C<require_order> is enabled, options processing will terminate at
2409
+ the first unrecognized option, or non-option, whichever comes first.
2410
+ However, if C<permute> is enabled instead, results can become confusing.
2411
+
2412
+ Note that the options terminator (default C<-->), if present, will
2413
+ also be passed through in C<@ARGV>.
2414
+
2415
+ =item prefix
2416
+
2417
+ The string that starts options. If a constant string is not
2418
+ sufficient, see C<prefix_pattern>.
2419
+
2420
+ =item prefix_pattern
2421
+
2422
+ A Perl pattern that identifies the strings that introduce options.
2423
+ Default is C<--|-|\+> unless environment variable
2424
+ POSIXLY_CORRECT has been set, in which case it is C<--|->.
2425
+
2426
+ =item long_prefix_pattern
2427
+
2428
+ A Perl pattern that allows the disambiguation of long and short
2429
+ prefixes. Default is C<-->.
2430
+
2431
+ Typically you only need to set this if you are using nonstandard
2432
+ prefixes and want some or all of them to have the same semantics as
2433
+ '--' does under normal circumstances.
2434
+
2435
+ For example, setting prefix_pattern to C<--|-|\+|\/> and
2436
+ long_prefix_pattern to C<--|\/> would add Win32 style argument
2437
+ handling.
2438
+
2439
+ =item debug (default: disabled)
2440
+
2441
+ Enable debugging output.
2442
+
2443
+ =back
2444
+
2445
+ =head1 Exportable Methods
2446
+
2447
+ =over
2448
+
2449
+ =item VersionMessage
2450
+
2451
+ This subroutine provides a standard version message. Its argument can be:
2452
+
2453
+ =over 4
2454
+
2455
+ =item *
2456
+
2457
+ A string containing the text of a message to print I<before> printing
2458
+ the standard message.
2459
+
2460
+ =item *
2461
+
2462
+ A numeric value corresponding to the desired exit status.
2463
+
2464
+ =item *
2465
+
2466
+ A reference to a hash.
2467
+
2468
+ =back
2469
+
2470
+ If more than one argument is given then the entire argument list is
2471
+ assumed to be a hash. If a hash is supplied (either as a reference or
2472
+ as a list) it should contain one or more elements with the following
2473
+ keys:
2474
+
2475
+ =over 4
2476
+
2477
+ =item C<-message>
2478
+
2479
+ =item C<-msg>
2480
+
2481
+ The text of a message to print immediately prior to printing the
2482
+ program's usage message.
2483
+
2484
+ =item C<-exitval>
2485
+
2486
+ The desired exit status to pass to the B<exit()> function.
2487
+ This should be an integer, or else the string "NOEXIT" to
2488
+ indicate that control should simply be returned without
2489
+ terminating the invoking process.
2490
+
2491
+ =item C<-output>
2492
+
2493
+ A reference to a filehandle, or the pathname of a file to which the
2494
+ usage message should be written. The default is C<\*STDERR> unless the
2495
+ exit value is less than 2 (in which case the default is C<\*STDOUT>).
2496
+
2497
+ =back
2498
+
2499
+ You cannot tie this routine directly to an option, e.g.:
2500
+
2501
+ GetOptions("version" => \&VersionMessage);
2502
+
2503
+ Use this instead:
2504
+
2505
+ GetOptions("version" => sub { VersionMessage() });
2506
+
2507
+ =item HelpMessage
2508
+
2509
+ This subroutine produces a standard help message, derived from the
2510
+ program's POD section SYNOPSIS using L<Pod::Usage>. It takes the same
2511
+ arguments as VersionMessage(). In particular, you cannot tie it
2512
+ directly to an option, e.g.:
2513
+
2514
+ GetOptions("help" => \&HelpMessage);
2515
+
2516
+ Use this instead:
2517
+
2518
+ GetOptions("help" => sub { HelpMessage() });
2519
+
2520
+ =back
2521
+
2522
+ =head1 Return values and Errors
2523
+
2524
+ Configuration errors and errors in the option definitions are
2525
+ signalled using die() and will terminate the calling program unless
2526
+ the call to Getopt::Long::GetOptions() was embedded in C<eval { ...
2527
+ }>, or die() was trapped using C<$SIG{__DIE__}>.
2528
+
2529
+ GetOptions returns true to indicate success.
2530
+ It returns false when the function detected one or more errors during
2531
+ option parsing. These errors are signalled using warn() and can be
2532
+ trapped with C<$SIG{__WARN__}>.
2533
+
2534
+ =head1 Legacy
2535
+
2536
+ The earliest development of C<newgetopt.pl> started in 1990, with Perl
2537
+ version 4. As a result, its development, and the development of
2538
+ Getopt::Long, has gone through several stages. Since backward
2539
+ compatibility has always been extremely important, the current version
2540
+ of Getopt::Long still supports a lot of constructs that nowadays are
2541
+ no longer necessary or otherwise unwanted. This section describes
2542
+ briefly some of these 'features'.
2543
+
2544
+ =head2 Default destinations
2545
+
2546
+ When no destination is specified for an option, GetOptions will store
2547
+ the resultant value in a global variable named C<opt_>I<XXX>, where
2548
+ I<XXX> is the primary name of this option. When a program executes
2549
+ under C<use strict> (recommended), these variables must be
2550
+ pre-declared with our() or C<use vars>.
2551
+
2552
+ our $opt_length = 0;
2553
+ GetOptions ('length=i'); # will store in $opt_length
2554
+
2555
+ To yield a usable Perl variable, characters that are not part of the
2556
+ syntax for variables are translated to underscores. For example,
2557
+ C<--fpp-struct-return> will set the variable
2558
+ C<$opt_fpp_struct_return>. Note that this variable resides in the
2559
+ namespace of the calling program, not necessarily C<main>. For
2560
+ example:
2561
+
2562
+ GetOptions ("size=i", "sizes=i@");
2563
+
2564
+ with command line "-size 10 -sizes 24 -sizes 48" will perform the
2565
+ equivalent of the assignments
2566
+
2567
+ $opt_size = 10;
2568
+ @opt_sizes = (24, 48);
2569
+
2570
+ =head2 Alternative option starters
2571
+
2572
+ A string of alternative option starter characters may be passed as the
2573
+ first argument (or the first argument after a leading hash reference
2574
+ argument).
2575
+
2576
+ my $len = 0;
2577
+ GetOptions ('/', 'length=i' => $len);
2578
+
2579
+ Now the command line may look like:
2580
+
2581
+ /length 24 -- arg
2582
+
2583
+ Note that to terminate options processing still requires a double dash
2584
+ C<-->.
2585
+
2586
+ GetOptions() will not interpret a leading C<< "<>" >> as option starters
2587
+ if the next argument is a reference. To force C<< "<" >> and C<< ">" >> as
2588
+ option starters, use C<< "><" >>. Confusing? Well, B<using a starter
2589
+ argument is strongly deprecated> anyway.
2590
+
2591
+ =head2 Configuration variables
2592
+
2593
+ Previous versions of Getopt::Long used variables for the purpose of
2594
+ configuring. Although manipulating these variables still work, it is
2595
+ strongly encouraged to use the C<Configure> routine that was introduced
2596
+ in version 2.17. Besides, it is much easier.
2597
+
2598
+ =head1 Tips and Techniques
2599
+
2600
+ =head2 Pushing multiple values in a hash option
2601
+
2602
+ Sometimes you want to combine the best of hashes and arrays. For
2603
+ example, the command line:
2604
+
2605
+ --list add=first --list add=second --list add=third
2606
+
2607
+ where each successive 'list add' option will push the value of add
2608
+ into array ref $list->{'add'}. The result would be like
2609
+
2610
+ $list->{add} = [qw(first second third)];
2611
+
2612
+ This can be accomplished with a destination routine:
2613
+
2614
+ GetOptions('list=s%' =>
2615
+ sub { push(@{$list{$_[1]}}, $_[2]) });
2616
+
2617
+ =head1 Troubleshooting
2618
+
2619
+ =head2 GetOptions does not return a false result when an option is not supplied
2620
+
2621
+ That's why they're called 'options'.
2622
+
2623
+ =head2 GetOptions does not split the command line correctly
2624
+
2625
+ The command line is not split by GetOptions, but by the command line
2626
+ interpreter (CLI). On Unix, this is the shell. On Windows, it is
2627
+ COMMAND.COM or CMD.EXE. Other operating systems have other CLIs.
2628
+
2629
+ It is important to know that these CLIs may behave different when the
2630
+ command line contains special characters, in particular quotes or
2631
+ backslashes. For example, with Unix shells you can use single quotes
2632
+ (C<'>) and double quotes (C<">) to group words together. The following
2633
+ alternatives are equivalent on Unix:
2634
+
2635
+ "two words"
2636
+ 'two words'
2637
+ two\ words
2638
+
2639
+ In case of doubt, insert the following statement in front of your Perl
2640
+ program:
2641
+
2642
+ print STDERR (join("|",@ARGV),"\n");
2643
+
2644
+ to verify how your CLI passes the arguments to the program.
2645
+
2646
+ =head2 Undefined subroutine &main::GetOptions called
2647
+
2648
+ Are you running Windows, and did you write
2649
+
2650
+ use GetOpt::Long;
2651
+
2652
+ (note the capital 'O')?
2653
+
2654
+ =head2 How do I put a "-?" option into a Getopt::Long?
2655
+
2656
+ You can only obtain this using an alias, and Getopt::Long of at least
2657
+ version 2.13.
2658
+
2659
+ use Getopt::Long;
2660
+ GetOptions ("help|?"); # -help and -? will both set $opt_help
2661
+
2662
+ Other characters that can't appear in Perl identifiers are also supported
2663
+ as aliases with Getopt::Long of at least version 2.39.
2664
+
2665
+ As of version 2.32 Getopt::Long provides auto-help, a quick and easy way
2666
+ to add the options --help and -? to your program, and handle them.
2667
+
2668
+ See C<auto_help> in section L<Configuring Getopt::Long>.
2669
+
2670
+ =head1 AUTHOR
2671
+
2672
+ Johan Vromans <jvromans@squirrel.nl>
2673
+
2674
+ =head1 COPYRIGHT AND DISCLAIMER
2675
+
2676
+ This program is Copyright 1990,2013 by Johan Vromans.
2677
+ This program is free software; you can redistribute it and/or
2678
+ modify it under the terms of the Perl Artistic License or the
2679
+ GNU General Public License as published by the Free Software
2680
+ Foundation; either version 2 of the License, or (at your option) any
2681
+ later version.
2682
+
2683
+ This program is distributed in the hope that it will be useful,
2684
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
2685
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2686
+ GNU General Public License for more details.
2687
+
2688
+ If you do not have a copy of the GNU General Public License write to
2689
+ the Free Software Foundation, Inc., 675 Mass Ave, Cambridge,
2690
+ MA 02139, USA.
2691
+
2692
+ =cut
2693
+