rhodes 3.3.5 → 3.4.2

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 (1678) hide show
  1. data/CHANGELOG +3 -1
  2. data/CREDITS +5 -0
  3. data/Rakefile +173 -17
  4. data/doc/build.txt +71 -27
  5. data/doc/configuration.txt +2 -0
  6. data/doc/device-caps.txt +103 -27
  7. data/doc/extensions.txt +49 -33
  8. data/doc/install.txt +15 -12
  9. data/doc/introduction.txt +1 -1
  10. data/doc/nfc.txt +3 -2
  11. data/doc/rhom.txt +22 -1
  12. data/doc/{rhostudio-eclipse.txt → rhostudio-eclipse_outdated.txt} +0 -0
  13. data/doc/rhostudio-test-plan.txt +79 -22
  14. data/doc/simulator.txt +19 -52
  15. data/doc/standard-css.txt +1 -1
  16. data/doc/synchronization.txt +2 -0
  17. data/doc/test-log-debug.txt +149 -1
  18. data/doc/ui.txt +57 -0
  19. data/lib/build/jake.rb +33 -22
  20. data/lib/extensions/barcode/ext/barcode/platform/iphone/Barcode.xcodeproj/project.pbxproj +4 -10
  21. data/lib/extensions/debugger/debugger.rb +18 -5
  22. data/lib/extensions/digest-md5/digest/md5.rb +0 -0
  23. data/lib/extensions/digest-md5/ext/iphone/Dmd5.xcodeproj/project.pbxproj +4 -10
  24. data/lib/extensions/digest-sha1/digest/sha1.rb +0 -0
  25. data/lib/extensions/digest-sha1/ext/iphone/Dsha1.xcodeproj/project.pbxproj +4 -10
  26. data/lib/extensions/digest-sha2/digest/sha2.rb +0 -0
  27. data/lib/extensions/digest-sha2/ext.yml +2 -0
  28. data/lib/extensions/digest-sha2/ext/Rakefile +128 -0
  29. data/lib/extensions/digest-sha2/ext/build +12 -0
  30. data/lib/extensions/digest-sha2/ext/build.bat +1 -0
  31. data/lib/extensions/digest-sha2/ext/depend +6 -0
  32. data/lib/extensions/digest-sha2/ext/digest-sha2.sln +44 -0
  33. data/lib/extensions/digest-sha2/ext/digest-sha2.vcproj +666 -0
  34. data/lib/extensions/digest-sha2/ext/extconf.rb +27 -0
  35. data/lib/extensions/digest-sha2/ext/iphone/Dsha2.xcodeproj/project.pbxproj +272 -0
  36. data/lib/extensions/digest-sha2/ext/iphone/Dsha2_Prefix.pch +7 -0
  37. data/lib/extensions/digest-sha2/ext/iphone/Rakefile +79 -0
  38. data/lib/extensions/digest-sha2/ext/sha2.c +1070 -0
  39. data/lib/extensions/digest-sha2/ext/sha2.h +225 -0
  40. data/lib/extensions/digest-sha2/ext/sha2.rb +1 -0
  41. data/lib/extensions/digest-sha2/ext/sha2init.c +56 -0
  42. data/lib/extensions/digest-sha2/ext/sha2ossl.c +11 -0
  43. data/lib/extensions/digest-sha2/ext/sha2ossl.h +17 -0
  44. data/lib/extensions/digest-sha2/sha2/sha2.rb +74 -0
  45. data/lib/extensions/digest/digest.so.rb +0 -0
  46. data/lib/extensions/digest/ext/iphone/Digest.xcodeproj/project.pbxproj +4 -10
  47. data/lib/extensions/esri/ext/esri/platform/iphone/ESRI.xcodeproj/project.pbxproj +4 -10
  48. data/lib/extensions/ezcrypto/ext/CHANGELOG +85 -0
  49. data/lib/extensions/ezcrypto/ext/MIT-LICENSE +21 -0
  50. data/lib/extensions/ezcrypto/ext/README.rdoc +152 -0
  51. data/lib/extensions/ezcrypto/ext/README_ACTIVE_CRYPTO +122 -0
  52. data/lib/extensions/ezcrypto/ext/README_DIGITAL_SIGNATURES +55 -0
  53. data/lib/extensions/ezcrypto/ext/rakefile +200 -0
  54. data/lib/extensions/ezcrypto/ext/test/active_crypto_test.rb +211 -0
  55. data/lib/extensions/ezcrypto/ext/test/agree2.com.cert +31 -0
  56. data/lib/extensions/ezcrypto/ext/test/association_key_holder_test.rb +38 -0
  57. data/lib/extensions/ezcrypto/ext/test/database.yml +18 -0
  58. data/lib/extensions/ezcrypto/ext/test/digest_test.rb +51 -0
  59. data/lib/extensions/ezcrypto/ext/test/dsakey.pem +12 -0
  60. data/lib/extensions/ezcrypto/ext/test/dsapubkey.pem +12 -0
  61. data/lib/extensions/ezcrypto/ext/test/dsig_test.rb +288 -0
  62. data/lib/extensions/ezcrypto/ext/test/encrypt_test.rb +41 -0
  63. data/lib/extensions/ezcrypto/ext/test/ezcrypto_test.rb +212 -0
  64. data/lib/extensions/ezcrypto/ext/test/key_holder_test.rb +44 -0
  65. data/lib/extensions/ezcrypto/ext/test/protectedsigner.pem +12 -0
  66. data/lib/extensions/ezcrypto/ext/test/sf-class2-root.crt +24 -0
  67. data/lib/extensions/ezcrypto/ext/test/sf_intermediate.crt +29 -0
  68. data/lib/extensions/ezcrypto/ext/test/test_helper.rb +35 -0
  69. data/lib/extensions/ezcrypto/ext/test/testchild.pem +15 -0
  70. data/lib/extensions/ezcrypto/ext/test/testchild.req +12 -0
  71. data/lib/extensions/ezcrypto/ext/test/testpub.pem +4 -0
  72. data/lib/extensions/ezcrypto/ext/test/testsigner.cert +20 -0
  73. data/lib/extensions/ezcrypto/ext/test/testsigner.pem +9 -0
  74. data/lib/extensions/ezcrypto/ext/test/valicert_class2_root.crt +18 -0
  75. data/lib/extensions/ezcrypto/ezcrypto.rb +1 -0
  76. data/lib/extensions/ezcrypto/ezcrypto/ezcrypto.rb +612 -0
  77. data/lib/extensions/ezcrypto/ezcrypto/ezsig.rb +535 -0
  78. data/lib/extensions/ezcrypto/ezcrypto/trusted.pem +2363 -0
  79. data/lib/extensions/fcntl/ext/iphone/Fcntl.xcodeproj/project.pbxproj +4 -10
  80. data/lib/extensions/fcntl/fcntl.rb +0 -0
  81. data/lib/extensions/nfc/ext/nfc/platform/android/src/com/rhomobile/nfc/Nfc.java +9 -22
  82. data/lib/extensions/openssl.so.src/ext.yml +2 -0
  83. data/lib/extensions/openssl.so.src/ext/Rakefile +107 -0
  84. data/lib/extensions/openssl.so.src/ext/build +12 -0
  85. data/lib/extensions/openssl.so.src/ext/build.bat +1 -0
  86. data/lib/extensions/openssl.so/ext.yml +9 -0
  87. data/lib/extensions/openssl.so/ext/Rakefile +139 -0
  88. data/lib/extensions/openssl.so/ext/android/libopenssl.so.a +0 -0
  89. data/lib/extensions/openssl.so/ext/build +12 -0
  90. data/lib/extensions/openssl.so/ext/build.bat +1 -0
  91. data/lib/extensions/openssl.so/ext/iphone/Rakefile +79 -0
  92. data/lib/extensions/openssl.so/ext/iphone/Release-iphoneos/libopenssl.so.a +0 -0
  93. data/lib/extensions/openssl.so/ext/iphone/Release-iphonesimulator/libopenssl.so.a +0 -0
  94. data/lib/extensions/openssl.so/ext/iphone/openssl/openssl.xcodeproj/project.pbxproj +4300 -0
  95. data/lib/extensions/openssl.so/ext/iphone/openssl/openssl/openssl-Prefix.pch +7 -0
  96. data/lib/extensions/openssl.so/ext/sources/apps/apps.h +373 -0
  97. data/lib/extensions/openssl.so/ext/sources/apps/progs.h +366 -0
  98. data/lib/extensions/openssl.so/ext/sources/apps/s_apps.h +176 -0
  99. data/lib/extensions/openssl.so/ext/sources/apps/testdsa.h +217 -0
  100. data/lib/extensions/openssl.so/ext/sources/apps/testrsa.h +518 -0
  101. data/lib/extensions/openssl.so/ext/sources/crypto/LPdir_unix.c +127 -0
  102. data/lib/extensions/openssl.so/ext/sources/crypto/LPdir_win.c +153 -0
  103. data/lib/extensions/openssl.so/ext/sources/crypto/LPdir_win32.c +30 -0
  104. data/lib/extensions/openssl.so/ext/sources/crypto/aes/aes.h +147 -0
  105. data/lib/extensions/openssl.so/ext/sources/crypto/aes/aes_cbc.c +63 -0
  106. data/lib/extensions/openssl.so/ext/sources/crypto/aes/aes_cfb.c +81 -0
  107. data/lib/extensions/openssl.so/ext/sources/crypto/aes/aes_core.c +1358 -0
  108. data/lib/extensions/openssl.so/ext/sources/crypto/aes/aes_ctr.c +61 -0
  109. data/lib/extensions/openssl.so/ext/sources/crypto/aes/aes_ecb.c +73 -0
  110. data/lib/extensions/openssl.so/ext/sources/crypto/aes/aes_ige.c +323 -0
  111. data/lib/extensions/openssl.so/ext/sources/crypto/aes/aes_locl.h +89 -0
  112. data/lib/extensions/openssl.so/ext/sources/crypto/aes/aes_misc.c +85 -0
  113. data/lib/extensions/openssl.so/ext/sources/crypto/aes/aes_ofb.c +60 -0
  114. data/lib/extensions/openssl.so/ext/sources/crypto/aes/aes_wrap.c +259 -0
  115. data/lib/extensions/openssl.so/ext/sources/crypto/arm_arch.h +51 -0
  116. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/a_bitstr.c +248 -0
  117. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/a_bool.c +114 -0
  118. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/a_bytes.c +314 -0
  119. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/a_d2i_fp.c +286 -0
  120. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/a_digest.c +113 -0
  121. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/a_dup.c +109 -0
  122. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/a_enum.c +182 -0
  123. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/a_gentm.c +263 -0
  124. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/a_i2d_fp.c +163 -0
  125. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/a_int.c +458 -0
  126. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/a_mbstr.c +400 -0
  127. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/a_object.c +403 -0
  128. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/a_octet.c +71 -0
  129. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/a_print.c +127 -0
  130. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/a_set.c +241 -0
  131. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/a_sign.c +333 -0
  132. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/a_strex.c +574 -0
  133. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/a_strnid.c +290 -0
  134. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/a_time.c +198 -0
  135. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/a_type.c +159 -0
  136. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/a_utctm.c +318 -0
  137. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/a_utf8.c +211 -0
  138. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/a_verify.c +228 -0
  139. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/ameth_lib.c +460 -0
  140. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/asn1.h +1404 -0
  141. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/asn1_err.c +332 -0
  142. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/asn1_gen.c +854 -0
  143. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/asn1_lib.c +482 -0
  144. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/asn1_locl.h +145 -0
  145. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/asn1_mac.h +578 -0
  146. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/asn1_par.c +437 -0
  147. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/asn1t.h +960 -0
  148. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/asn_mime.c +951 -0
  149. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/asn_moid.c +160 -0
  150. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/asn_pack.c +191 -0
  151. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/bio_asn1.c +495 -0
  152. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/bio_ndef.c +243 -0
  153. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/charmap.h +15 -0
  154. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/d2i_pr.c +170 -0
  155. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/d2i_pu.c +139 -0
  156. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/evp_asn1.c +189 -0
  157. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/f_enum.c +207 -0
  158. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/f_int.c +219 -0
  159. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/f_string.c +212 -0
  160. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/i2d_pr.c +80 -0
  161. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/i2d_pu.c +95 -0
  162. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/n_pkey.c +357 -0
  163. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/nsseq.c +83 -0
  164. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/p5_pbe.c +148 -0
  165. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/p5_pbev2.c +280 -0
  166. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/p8_pkey.c +155 -0
  167. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/t_bitst.c +102 -0
  168. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/t_crl.c +132 -0
  169. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/t_pkey.c +114 -0
  170. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/t_req.c +266 -0
  171. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/t_spki.c +107 -0
  172. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/t_x509.c +528 -0
  173. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/t_x509a.c +110 -0
  174. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/tasn_dec.c +1347 -0
  175. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/tasn_enc.c +691 -0
  176. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/tasn_fre.c +266 -0
  177. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/tasn_new.c +396 -0
  178. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/tasn_prn.c +627 -0
  179. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/tasn_typ.c +148 -0
  180. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/tasn_utl.c +279 -0
  181. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/x_algor.c +144 -0
  182. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/x_attrib.c +118 -0
  183. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/x_bignum.c +139 -0
  184. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/x_crl.c +527 -0
  185. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/x_exten.c +76 -0
  186. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/x_info.c +114 -0
  187. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/x_long.c +179 -0
  188. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/x_name.c +519 -0
  189. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/x_nx509.c +72 -0
  190. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/x_pkey.c +151 -0
  191. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/x_pubkey.c +382 -0
  192. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/x_req.c +113 -0
  193. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/x_sig.c +69 -0
  194. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/x_spki.c +81 -0
  195. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/x_val.c +69 -0
  196. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/x_x509.c +194 -0
  197. data/lib/extensions/openssl.so/ext/sources/crypto/asn1/x_x509a.c +180 -0
  198. data/lib/extensions/openssl.so/ext/sources/crypto/bf/bf_cfb64.c +121 -0
  199. data/lib/extensions/openssl.so/ext/sources/crypto/bf/bf_ecb.c +96 -0
  200. data/lib/extensions/openssl.so/ext/sources/crypto/bf/bf_enc.c +306 -0
  201. data/lib/extensions/openssl.so/ext/sources/crypto/bf/bf_locl.h +219 -0
  202. data/lib/extensions/openssl.so/ext/sources/crypto/bf/bf_ofb64.c +110 -0
  203. data/lib/extensions/openssl.so/ext/sources/crypto/bf/bf_pi.h +325 -0
  204. data/lib/extensions/openssl.so/ext/sources/crypto/bf/bf_skey.c +124 -0
  205. data/lib/extensions/openssl.so/ext/sources/crypto/bf/blowfish.h +129 -0
  206. data/lib/extensions/openssl.so/ext/sources/crypto/bio/b_dump.c +187 -0
  207. data/lib/extensions/openssl.so/ext/sources/crypto/bio/b_print.c +842 -0
  208. data/lib/extensions/openssl.so/ext/sources/crypto/bio/b_sock.c +975 -0
  209. data/lib/extensions/openssl.so/ext/sources/crypto/bio/bf_buff.c +512 -0
  210. data/lib/extensions/openssl.so/ext/sources/crypto/bio/bf_nbio.c +253 -0
  211. data/lib/extensions/openssl.so/ext/sources/crypto/bio/bf_null.c +183 -0
  212. data/lib/extensions/openssl.so/ext/sources/crypto/bio/bio.h +847 -0
  213. data/lib/extensions/openssl.so/ext/sources/crypto/bio/bio_cb.c +143 -0
  214. data/lib/extensions/openssl.so/ext/sources/crypto/bio/bio_err.c +155 -0
  215. data/lib/extensions/openssl.so/ext/sources/crypto/bio/bio_lcl.h +36 -0
  216. data/lib/extensions/openssl.so/ext/sources/crypto/bio/bio_lib.c +602 -0
  217. data/lib/extensions/openssl.so/ext/sources/crypto/bio/bss_acpt.c +478 -0
  218. data/lib/extensions/openssl.so/ext/sources/crypto/bio/bss_bio.c +924 -0
  219. data/lib/extensions/openssl.so/ext/sources/crypto/bio/bss_conn.c +652 -0
  220. data/lib/extensions/openssl.so/ext/sources/crypto/bio/bss_dgram.c +1832 -0
  221. data/lib/extensions/openssl.so/ext/sources/crypto/bio/bss_fd.c +319 -0
  222. data/lib/extensions/openssl.so/ext/sources/crypto/bio/bss_file.c +477 -0
  223. data/lib/extensions/openssl.so/ext/sources/crypto/bio/bss_log.c +399 -0
  224. data/lib/extensions/openssl.so/ext/sources/crypto/bio/bss_mem.c +319 -0
  225. data/lib/extensions/openssl.so/ext/sources/crypto/bio/bss_null.c +150 -0
  226. data/lib/extensions/openssl.so/ext/sources/crypto/bio/bss_sock.c +294 -0
  227. data/lib/extensions/openssl.so/ext/sources/crypto/bn/bn.h +891 -0
  228. data/lib/extensions/openssl.so/ext/sources/crypto/bn/bn_add.c +313 -0
  229. data/lib/extensions/openssl.so/ext/sources/crypto/bn/bn_asm.c +1030 -0
  230. data/lib/extensions/openssl.so/ext/sources/crypto/bn/bn_blind.c +385 -0
  231. data/lib/extensions/openssl.so/ext/sources/crypto/bn/bn_const.c +402 -0
  232. data/lib/extensions/openssl.so/ext/sources/crypto/bn/bn_ctx.c +454 -0
  233. data/lib/extensions/openssl.so/ext/sources/crypto/bn/bn_depr.c +112 -0
  234. data/lib/extensions/openssl.so/ext/sources/crypto/bn/bn_div.c +446 -0
  235. data/lib/extensions/openssl.so/ext/sources/crypto/bn/bn_err.c +150 -0
  236. data/lib/extensions/openssl.so/ext/sources/crypto/bn/bn_exp.c +1097 -0
  237. data/lib/extensions/openssl.so/ext/sources/crypto/bn/bn_exp2.c +312 -0
  238. data/lib/extensions/openssl.so/ext/sources/crypto/bn/bn_gcd.c +654 -0
  239. data/lib/extensions/openssl.so/ext/sources/crypto/bn/bn_gf2m.c +1113 -0
  240. data/lib/extensions/openssl.so/ext/sources/crypto/bn/bn_kron.c +184 -0
  241. data/lib/extensions/openssl.so/ext/sources/crypto/bn/bn_lcl.h +508 -0
  242. data/lib/extensions/openssl.so/ext/sources/crypto/bn/bn_lib.c +826 -0
  243. data/lib/extensions/openssl.so/ext/sources/crypto/bn/bn_mod.c +301 -0
  244. data/lib/extensions/openssl.so/ext/sources/crypto/bn/bn_mont.c +509 -0
  245. data/lib/extensions/openssl.so/ext/sources/crypto/bn/bn_mpi.c +130 -0
  246. data/lib/extensions/openssl.so/ext/sources/crypto/bn/bn_mul.c +1166 -0
  247. data/lib/extensions/openssl.so/ext/sources/crypto/bn/bn_nist.c +1102 -0
  248. data/lib/extensions/openssl.so/ext/sources/crypto/bn/bn_prime.c +494 -0
  249. data/lib/extensions/openssl.so/ext/sources/crypto/bn/bn_prime.h +327 -0
  250. data/lib/extensions/openssl.so/ext/sources/crypto/bn/bn_print.c +378 -0
  251. data/lib/extensions/openssl.so/ext/sources/crypto/bn/bn_rand.c +305 -0
  252. data/lib/extensions/openssl.so/ext/sources/crypto/bn/bn_recp.c +234 -0
  253. data/lib/extensions/openssl.so/ext/sources/crypto/bn/bn_shift.c +223 -0
  254. data/lib/extensions/openssl.so/ext/sources/crypto/bn/bn_sqr.c +294 -0
  255. data/lib/extensions/openssl.so/ext/sources/crypto/bn/bn_sqrt.c +393 -0
  256. data/lib/extensions/openssl.so/ext/sources/crypto/bn/bn_word.c +247 -0
  257. data/lib/extensions/openssl.so/ext/sources/crypto/bn/bn_x931p.c +272 -0
  258. data/lib/extensions/openssl.so/ext/sources/crypto/buffer/buf_err.c +99 -0
  259. data/lib/extensions/openssl.so/ext/sources/crypto/buffer/buf_str.c +119 -0
  260. data/lib/extensions/openssl.so/ext/sources/crypto/buffer/buffer.c +203 -0
  261. data/lib/extensions/openssl.so/ext/sources/crypto/buffer/buffer.h +119 -0
  262. data/lib/extensions/openssl.so/ext/sources/crypto/buildinf.h +12 -0
  263. data/lib/extensions/openssl.so/ext/sources/crypto/camellia/camellia.c +582 -0
  264. data/lib/extensions/openssl.so/ext/sources/crypto/camellia/camellia.h +130 -0
  265. data/lib/extensions/openssl.so/ext/sources/crypto/camellia/cmll_cbc.c +64 -0
  266. data/lib/extensions/openssl.so/ext/sources/crypto/camellia/cmll_cfb.c +139 -0
  267. data/lib/extensions/openssl.so/ext/sources/crypto/camellia/cmll_ctr.c +64 -0
  268. data/lib/extensions/openssl.so/ext/sources/crypto/camellia/cmll_ecb.c +74 -0
  269. data/lib/extensions/openssl.so/ext/sources/crypto/camellia/cmll_locl.h +86 -0
  270. data/lib/extensions/openssl.so/ext/sources/crypto/camellia/cmll_misc.c +80 -0
  271. data/lib/extensions/openssl.so/ext/sources/crypto/camellia/cmll_ofb.c +119 -0
  272. data/lib/extensions/openssl.so/ext/sources/crypto/camellia/cmll_utl.c +64 -0
  273. data/lib/extensions/openssl.so/ext/sources/crypto/cast/c_cfb64.c +121 -0
  274. data/lib/extensions/openssl.so/ext/sources/crypto/cast/c_ecb.c +79 -0
  275. data/lib/extensions/openssl.so/ext/sources/crypto/cast/c_enc.c +208 -0
  276. data/lib/extensions/openssl.so/ext/sources/crypto/cast/c_ofb64.c +110 -0
  277. data/lib/extensions/openssl.so/ext/sources/crypto/cast/c_skey.c +173 -0
  278. data/lib/extensions/openssl.so/ext/sources/crypto/cast/cast.h +107 -0
  279. data/lib/extensions/openssl.so/ext/sources/crypto/cast/cast_lcl.h +227 -0
  280. data/lib/extensions/openssl.so/ext/sources/crypto/cast/cast_s.h +585 -0
  281. data/lib/extensions/openssl.so/ext/sources/crypto/cmac/cm_ameth.c +97 -0
  282. data/lib/extensions/openssl.so/ext/sources/crypto/cmac/cm_pmeth.c +224 -0
  283. data/lib/extensions/openssl.so/ext/sources/crypto/cmac/cmac.c +308 -0
  284. data/lib/extensions/openssl.so/ext/sources/crypto/cmac/cmac.h +82 -0
  285. data/lib/extensions/openssl.so/ext/sources/crypto/cms/cms.h +501 -0
  286. data/lib/extensions/openssl.so/ext/sources/crypto/cms/cms_asn1.c +389 -0
  287. data/lib/extensions/openssl.so/ext/sources/crypto/cms/cms_att.c +195 -0
  288. data/lib/extensions/openssl.so/ext/sources/crypto/cms/cms_cd.c +134 -0
  289. data/lib/extensions/openssl.so/ext/sources/crypto/cms/cms_dd.c +148 -0
  290. data/lib/extensions/openssl.so/ext/sources/crypto/cms/cms_enc.c +294 -0
  291. data/lib/extensions/openssl.so/ext/sources/crypto/cms/cms_env.c +876 -0
  292. data/lib/extensions/openssl.so/ext/sources/crypto/cms/cms_err.c +245 -0
  293. data/lib/extensions/openssl.so/ext/sources/crypto/cms/cms_ess.c +420 -0
  294. data/lib/extensions/openssl.so/ext/sources/crypto/cms/cms_io.c +133 -0
  295. data/lib/extensions/openssl.so/ext/sources/crypto/cms/cms_lcl.h +473 -0
  296. data/lib/extensions/openssl.so/ext/sources/crypto/cms/cms_lib.c +626 -0
  297. data/lib/extensions/openssl.so/ext/sources/crypto/cms/cms_pwri.c +454 -0
  298. data/lib/extensions/openssl.so/ext/sources/crypto/cms/cms_sd.c +985 -0
  299. data/lib/extensions/openssl.so/ext/sources/crypto/cms/cms_smime.c +850 -0
  300. data/lib/extensions/openssl.so/ext/sources/crypto/comp/c_rle.c +61 -0
  301. data/lib/extensions/openssl.so/ext/sources/crypto/comp/c_zlib.c +799 -0
  302. data/lib/extensions/openssl.so/ext/sources/crypto/comp/comp.h +80 -0
  303. data/lib/extensions/openssl.so/ext/sources/crypto/comp/comp_err.c +100 -0
  304. data/lib/extensions/openssl.so/ext/sources/crypto/comp/comp_lib.c +72 -0
  305. data/lib/extensions/openssl.so/ext/sources/crypto/conf/conf.h +263 -0
  306. data/lib/extensions/openssl.so/ext/sources/crypto/conf/conf_api.c +301 -0
  307. data/lib/extensions/openssl.so/ext/sources/crypto/conf/conf_api.h +89 -0
  308. data/lib/extensions/openssl.so/ext/sources/crypto/conf/conf_def.c +740 -0
  309. data/lib/extensions/openssl.so/ext/sources/crypto/conf/conf_def.h +180 -0
  310. data/lib/extensions/openssl.so/ext/sources/crypto/conf/conf_err.c +131 -0
  311. data/lib/extensions/openssl.so/ext/sources/crypto/conf/conf_lib.c +407 -0
  312. data/lib/extensions/openssl.so/ext/sources/crypto/conf/conf_mall.c +80 -0
  313. data/lib/extensions/openssl.so/ext/sources/crypto/conf/conf_mod.c +623 -0
  314. data/lib/extensions/openssl.so/ext/sources/crypto/conf/conf_sap.c +111 -0
  315. data/lib/extensions/openssl.so/ext/sources/crypto/cpt_err.c +105 -0
  316. data/lib/extensions/openssl.so/ext/sources/crypto/cryptlib.c +926 -0
  317. data/lib/extensions/openssl.so/ext/sources/crypto/cryptlib.h +111 -0
  318. data/lib/extensions/openssl.so/ext/sources/crypto/crypto.h +604 -0
  319. data/lib/extensions/openssl.so/ext/sources/crypto/cversion.c +117 -0
  320. data/lib/extensions/openssl.so/ext/sources/crypto/des/cbc_cksm.c +106 -0
  321. data/lib/extensions/openssl.so/ext/sources/crypto/des/cbc_enc.c +61 -0
  322. data/lib/extensions/openssl.so/ext/sources/crypto/des/cfb64ede.c +254 -0
  323. data/lib/extensions/openssl.so/ext/sources/crypto/des/cfb64enc.c +121 -0
  324. data/lib/extensions/openssl.so/ext/sources/crypto/des/cfb_enc.c +195 -0
  325. data/lib/extensions/openssl.so/ext/sources/crypto/des/des.h +248 -0
  326. data/lib/extensions/openssl.so/ext/sources/crypto/des/des_enc.c +400 -0
  327. data/lib/extensions/openssl.so/ext/sources/crypto/des/des_locl.h +432 -0
  328. data/lib/extensions/openssl.so/ext/sources/crypto/des/des_old.c +273 -0
  329. data/lib/extensions/openssl.so/ext/sources/crypto/des/des_old.h +446 -0
  330. data/lib/extensions/openssl.so/ext/sources/crypto/des/des_old2.c +82 -0
  331. data/lib/extensions/openssl.so/ext/sources/crypto/des/des_ver.h +71 -0
  332. data/lib/extensions/openssl.so/ext/sources/crypto/des/ecb3_enc.c +83 -0
  333. data/lib/extensions/openssl.so/ext/sources/crypto/des/ecb_enc.c +122 -0
  334. data/lib/extensions/openssl.so/ext/sources/crypto/des/ede_cbcm_enc.c +199 -0
  335. data/lib/extensions/openssl.so/ext/sources/crypto/des/enc_read.c +240 -0
  336. data/lib/extensions/openssl.so/ext/sources/crypto/des/enc_writ.c +179 -0
  337. data/lib/extensions/openssl.so/ext/sources/crypto/des/fcrypt.c +170 -0
  338. data/lib/extensions/openssl.so/ext/sources/crypto/des/fcrypt_b.c +143 -0
  339. data/lib/extensions/openssl.so/ext/sources/crypto/des/ncbc_enc.c +148 -0
  340. data/lib/extensions/openssl.so/ext/sources/crypto/des/ofb64ede.c +125 -0
  341. data/lib/extensions/openssl.so/ext/sources/crypto/des/ofb64enc.c +110 -0
  342. data/lib/extensions/openssl.so/ext/sources/crypto/des/ofb_enc.c +135 -0
  343. data/lib/extensions/openssl.so/ext/sources/crypto/des/pcbc_enc.c +123 -0
  344. data/lib/extensions/openssl.so/ext/sources/crypto/des/qud_cksm.c +139 -0
  345. data/lib/extensions/openssl.so/ext/sources/crypto/des/rand_key.c +68 -0
  346. data/lib/extensions/openssl.so/ext/sources/crypto/des/read2pwd.c +140 -0
  347. data/lib/extensions/openssl.so/ext/sources/crypto/des/rpc_des.h +131 -0
  348. data/lib/extensions/openssl.so/ext/sources/crypto/des/rpc_enc.c +98 -0
  349. data/lib/extensions/openssl.so/ext/sources/crypto/des/set_key.c +416 -0
  350. data/lib/extensions/openssl.so/ext/sources/crypto/des/spr.h +204 -0
  351. data/lib/extensions/openssl.so/ext/sources/crypto/des/str2key.c +174 -0
  352. data/lib/extensions/openssl.so/ext/sources/crypto/des/xcbc_enc.c +197 -0
  353. data/lib/extensions/openssl.so/ext/sources/crypto/dh/dh.h +280 -0
  354. data/lib/extensions/openssl.so/ext/sources/crypto/dh/dh_ameth.c +501 -0
  355. data/lib/extensions/openssl.so/ext/sources/crypto/dh/dh_asn1.c +93 -0
  356. data/lib/extensions/openssl.so/ext/sources/crypto/dh/dh_check.c +142 -0
  357. data/lib/extensions/openssl.so/ext/sources/crypto/dh/dh_depr.c +83 -0
  358. data/lib/extensions/openssl.so/ext/sources/crypto/dh/dh_err.c +122 -0
  359. data/lib/extensions/openssl.so/ext/sources/crypto/dh/dh_gen.c +192 -0
  360. data/lib/extensions/openssl.so/ext/sources/crypto/dh/dh_key.c +292 -0
  361. data/lib/extensions/openssl.so/ext/sources/crypto/dh/dh_lib.c +260 -0
  362. data/lib/extensions/openssl.so/ext/sources/crypto/dh/dh_pmeth.c +254 -0
  363. data/lib/extensions/openssl.so/ext/sources/crypto/dh/dh_prn.c +80 -0
  364. data/lib/extensions/openssl.so/ext/sources/crypto/dsa/dsa.h +327 -0
  365. data/lib/extensions/openssl.so/ext/sources/crypto/dsa/dsa_ameth.c +704 -0
  366. data/lib/extensions/openssl.so/ext/sources/crypto/dsa/dsa_asn1.c +188 -0
  367. data/lib/extensions/openssl.so/ext/sources/crypto/dsa/dsa_depr.c +106 -0
  368. data/lib/extensions/openssl.so/ext/sources/crypto/dsa/dsa_err.c +130 -0
  369. data/lib/extensions/openssl.so/ext/sources/crypto/dsa/dsa_gen.c +371 -0
  370. data/lib/extensions/openssl.so/ext/sources/crypto/dsa/dsa_key.c +144 -0
  371. data/lib/extensions/openssl.so/ext/sources/crypto/dsa/dsa_lib.c +329 -0
  372. data/lib/extensions/openssl.so/ext/sources/crypto/dsa/dsa_locl.h +60 -0
  373. data/lib/extensions/openssl.so/ext/sources/crypto/dsa/dsa_ossl.c +412 -0
  374. data/lib/extensions/openssl.so/ext/sources/crypto/dsa/dsa_pmeth.c +318 -0
  375. data/lib/extensions/openssl.so/ext/sources/crypto/dsa/dsa_prn.c +121 -0
  376. data/lib/extensions/openssl.so/ext/sources/crypto/dsa/dsa_sign.c +114 -0
  377. data/lib/extensions/openssl.so/ext/sources/crypto/dsa/dsa_vrf.c +76 -0
  378. data/lib/extensions/openssl.so/ext/sources/crypto/dso/dso.h +409 -0
  379. data/lib/extensions/openssl.so/ext/sources/crypto/dso/dso_beos.c +270 -0
  380. data/lib/extensions/openssl.so/ext/sources/crypto/dso/dso_dl.c +393 -0
  381. data/lib/extensions/openssl.so/ext/sources/crypto/dso/dso_dlfcn.c +484 -0
  382. data/lib/extensions/openssl.so/ext/sources/crypto/dso/dso_err.c +159 -0
  383. data/lib/extensions/openssl.so/ext/sources/crypto/dso/dso_lib.c +483 -0
  384. data/lib/extensions/openssl.so/ext/sources/crypto/dso/dso_null.c +90 -0
  385. data/lib/extensions/openssl.so/ext/sources/crypto/dso/dso_openssl.c +83 -0
  386. data/lib/extensions/openssl.so/ext/sources/crypto/dso/dso_vms.c +525 -0
  387. data/lib/extensions/openssl.so/ext/sources/crypto/dso/dso_win32.c +844 -0
  388. data/lib/extensions/openssl.so/ext/sources/crypto/ebcdic.c +221 -0
  389. data/lib/extensions/openssl.so/ext/sources/crypto/ebcdic.h +19 -0
  390. data/lib/extensions/openssl.so/ext/sources/crypto/ec/ec.h +1159 -0
  391. data/lib/extensions/openssl.so/ext/sources/crypto/ec/ec2_mult.c +390 -0
  392. data/lib/extensions/openssl.so/ext/sources/crypto/ec/ec2_oct.c +407 -0
  393. data/lib/extensions/openssl.so/ext/sources/crypto/ec/ec2_smpl.c +719 -0
  394. data/lib/extensions/openssl.so/ext/sources/crypto/ec/ec_ameth.c +660 -0
  395. data/lib/extensions/openssl.so/ext/sources/crypto/ec/ec_asn1.c +1447 -0
  396. data/lib/extensions/openssl.so/ext/sources/crypto/ec/ec_check.c +123 -0
  397. data/lib/extensions/openssl.so/ext/sources/crypto/ec/ec_curve.c +2100 -0
  398. data/lib/extensions/openssl.so/ext/sources/crypto/ec/ec_cvt.c +170 -0
  399. data/lib/extensions/openssl.so/ext/sources/crypto/ec/ec_err.c +276 -0
  400. data/lib/extensions/openssl.so/ext/sources/crypto/ec/ec_key.c +563 -0
  401. data/lib/extensions/openssl.so/ext/sources/crypto/ec/ec_lcl.h +446 -0
  402. data/lib/extensions/openssl.so/ext/sources/crypto/ec/ec_lib.c +1096 -0
  403. data/lib/extensions/openssl.so/ext/sources/crypto/ec/ec_mult.c +940 -0
  404. data/lib/extensions/openssl.so/ext/sources/crypto/ec/ec_oct.c +199 -0
  405. data/lib/extensions/openssl.so/ext/sources/crypto/ec/ec_pmeth.c +341 -0
  406. data/lib/extensions/openssl.so/ext/sources/crypto/ec/ec_print.c +195 -0
  407. data/lib/extensions/openssl.so/ext/sources/crypto/ec/eck_prn.c +392 -0
  408. data/lib/extensions/openssl.so/ext/sources/crypto/ec/ecp_mont.c +323 -0
  409. data/lib/extensions/openssl.so/ext/sources/crypto/ec/ecp_nist.c +217 -0
  410. data/lib/extensions/openssl.so/ext/sources/crypto/ec/ecp_nistp224.c +1658 -0
  411. data/lib/extensions/openssl.so/ext/sources/crypto/ec/ecp_nistp256.c +2171 -0
  412. data/lib/extensions/openssl.so/ext/sources/crypto/ec/ecp_nistp521.c +2025 -0
  413. data/lib/extensions/openssl.so/ext/sources/crypto/ec/ecp_nistputil.c +197 -0
  414. data/lib/extensions/openssl.so/ext/sources/crypto/ec/ecp_oct.c +433 -0
  415. data/lib/extensions/openssl.so/ext/sources/crypto/ec/ecp_smpl.c +1360 -0
  416. data/lib/extensions/openssl.so/ext/sources/crypto/ecdh/ecdh.h +125 -0
  417. data/lib/extensions/openssl.so/ext/sources/crypto/ecdh/ech_err.c +100 -0
  418. data/lib/extensions/openssl.so/ext/sources/crypto/ecdh/ech_key.c +83 -0
  419. data/lib/extensions/openssl.so/ext/sources/crypto/ecdh/ech_lib.c +266 -0
  420. data/lib/extensions/openssl.so/ext/sources/crypto/ecdh/ech_locl.h +102 -0
  421. data/lib/extensions/openssl.so/ext/sources/crypto/ecdh/ech_ossl.c +215 -0
  422. data/lib/extensions/openssl.so/ext/sources/crypto/ecdsa/ecdsa.h +260 -0
  423. data/lib/extensions/openssl.so/ext/sources/crypto/ecdsa/ecs_asn1.c +69 -0
  424. data/lib/extensions/openssl.so/ext/sources/crypto/ecdsa/ecs_err.c +106 -0
  425. data/lib/extensions/openssl.so/ext/sources/crypto/ecdsa/ecs_lib.c +278 -0
  426. data/lib/extensions/openssl.so/ext/sources/crypto/ecdsa/ecs_locl.h +115 -0
  427. data/lib/extensions/openssl.so/ext/sources/crypto/ecdsa/ecs_ossl.c +483 -0
  428. data/lib/extensions/openssl.so/ext/sources/crypto/ecdsa/ecs_sign.c +106 -0
  429. data/lib/extensions/openssl.so/ext/sources/crypto/ecdsa/ecs_vrf.c +96 -0
  430. data/lib/extensions/openssl.so/ext/sources/crypto/engine/eng_all.c +135 -0
  431. data/lib/extensions/openssl.so/ext/sources/crypto/engine/eng_cnf.c +259 -0
  432. data/lib/extensions/openssl.so/ext/sources/crypto/engine/eng_cryptodev.c +1450 -0
  433. data/lib/extensions/openssl.so/ext/sources/crypto/engine/eng_ctrl.c +389 -0
  434. data/lib/extensions/openssl.so/ext/sources/crypto/engine/eng_dyn.c +548 -0
  435. data/lib/extensions/openssl.so/ext/sources/crypto/engine/eng_err.c +173 -0
  436. data/lib/extensions/openssl.so/ext/sources/crypto/engine/eng_fat.c +182 -0
  437. data/lib/extensions/openssl.so/ext/sources/crypto/engine/eng_init.c +154 -0
  438. data/lib/extensions/openssl.so/ext/sources/crypto/engine/eng_int.h +206 -0
  439. data/lib/extensions/openssl.so/ext/sources/crypto/engine/eng_lib.c +332 -0
  440. data/lib/extensions/openssl.so/ext/sources/crypto/engine/eng_list.c +433 -0
  441. data/lib/extensions/openssl.so/ext/sources/crypto/engine/eng_openssl.c +384 -0
  442. data/lib/extensions/openssl.so/ext/sources/crypto/engine/eng_pkey.c +196 -0
  443. data/lib/extensions/openssl.so/ext/sources/crypto/engine/eng_rdrand.c +142 -0
  444. data/lib/extensions/openssl.so/ext/sources/crypto/engine/eng_rsax.c +668 -0
  445. data/lib/extensions/openssl.so/ext/sources/crypto/engine/eng_table.c +351 -0
  446. data/lib/extensions/openssl.so/ext/sources/crypto/engine/engine.h +842 -0
  447. data/lib/extensions/openssl.so/ext/sources/crypto/engine/tb_asnmth.c +246 -0
  448. data/lib/extensions/openssl.so/ext/sources/crypto/engine/tb_cipher.c +143 -0
  449. data/lib/extensions/openssl.so/ext/sources/crypto/engine/tb_dh.c +118 -0
  450. data/lib/extensions/openssl.so/ext/sources/crypto/engine/tb_digest.c +143 -0
  451. data/lib/extensions/openssl.so/ext/sources/crypto/engine/tb_dsa.c +118 -0
  452. data/lib/extensions/openssl.so/ext/sources/crypto/engine/tb_ecdh.c +133 -0
  453. data/lib/extensions/openssl.so/ext/sources/crypto/engine/tb_ecdsa.c +118 -0
  454. data/lib/extensions/openssl.so/ext/sources/crypto/engine/tb_pkmeth.c +167 -0
  455. data/lib/extensions/openssl.so/ext/sources/crypto/engine/tb_rand.c +118 -0
  456. data/lib/extensions/openssl.so/ext/sources/crypto/engine/tb_rsa.c +118 -0
  457. data/lib/extensions/openssl.so/ext/sources/crypto/engine/tb_store.c +123 -0
  458. data/lib/extensions/openssl.so/ext/sources/crypto/err/err.c +1138 -0
  459. data/lib/extensions/openssl.so/ext/sources/crypto/err/err.h +386 -0
  460. data/lib/extensions/openssl.so/ext/sources/crypto/err/err_all.c +167 -0
  461. data/lib/extensions/openssl.so/ext/sources/crypto/err/err_prn.c +114 -0
  462. data/lib/extensions/openssl.so/ext/sources/crypto/evp/bio_b64.c +598 -0
  463. data/lib/extensions/openssl.so/ext/sources/crypto/evp/bio_enc.c +428 -0
  464. data/lib/extensions/openssl.so/ext/sources/crypto/evp/bio_md.c +275 -0
  465. data/lib/extensions/openssl.so/ext/sources/crypto/evp/bio_ok.c +624 -0
  466. data/lib/extensions/openssl.so/ext/sources/crypto/evp/c_all.c +90 -0
  467. data/lib/extensions/openssl.so/ext/sources/crypto/evp/c_allc.c +230 -0
  468. data/lib/extensions/openssl.so/ext/sources/crypto/evp/c_alld.c +114 -0
  469. data/lib/extensions/openssl.so/ext/sources/crypto/evp/digest.c +403 -0
  470. data/lib/extensions/openssl.so/ext/sources/crypto/evp/e_aes.c +1313 -0
  471. data/lib/extensions/openssl.so/ext/sources/crypto/evp/e_aes_cbc_hmac_sha1.c +406 -0
  472. data/lib/extensions/openssl.so/ext/sources/crypto/evp/e_bf.c +88 -0
  473. data/lib/extensions/openssl.so/ext/sources/crypto/evp/e_camellia.c +131 -0
  474. data/lib/extensions/openssl.so/ext/sources/crypto/evp/e_cast.c +90 -0
  475. data/lib/extensions/openssl.so/ext/sources/crypto/evp/e_des.c +224 -0
  476. data/lib/extensions/openssl.so/ext/sources/crypto/evp/e_des3.c +316 -0
  477. data/lib/extensions/openssl.so/ext/sources/crypto/evp/e_idea.c +118 -0
  478. data/lib/extensions/openssl.so/ext/sources/crypto/evp/e_null.c +104 -0
  479. data/lib/extensions/openssl.so/ext/sources/crypto/evp/e_old.c +125 -0
  480. data/lib/extensions/openssl.so/ext/sources/crypto/evp/e_rc2.c +238 -0
  481. data/lib/extensions/openssl.so/ext/sources/crypto/evp/e_rc4.c +137 -0
  482. data/lib/extensions/openssl.so/ext/sources/crypto/evp/e_rc4_hmac_md5.c +298 -0
  483. data/lib/extensions/openssl.so/ext/sources/crypto/evp/e_rc5.c +126 -0
  484. data/lib/extensions/openssl.so/ext/sources/crypto/evp/e_seed.c +83 -0
  485. data/lib/extensions/openssl.so/ext/sources/crypto/evp/e_xcbc_d.c +138 -0
  486. data/lib/extensions/openssl.so/ext/sources/crypto/evp/encode.c +445 -0
  487. data/lib/extensions/openssl.so/ext/sources/crypto/evp/evp.h +1402 -0
  488. data/lib/extensions/openssl.so/ext/sources/crypto/evp/evp_acnf.c +73 -0
  489. data/lib/extensions/openssl.so/ext/sources/crypto/evp/evp_enc.c +681 -0
  490. data/lib/extensions/openssl.so/ext/sources/crypto/evp/evp_err.c +234 -0
  491. data/lib/extensions/openssl.so/ext/sources/crypto/evp/evp_fips.c +113 -0
  492. data/lib/extensions/openssl.so/ext/sources/crypto/evp/evp_key.c +189 -0
  493. data/lib/extensions/openssl.so/ext/sources/crypto/evp/evp_lib.c +316 -0
  494. data/lib/extensions/openssl.so/ext/sources/crypto/evp/evp_locl.h +385 -0
  495. data/lib/extensions/openssl.so/ext/sources/crypto/evp/evp_pbe.c +316 -0
  496. data/lib/extensions/openssl.so/ext/sources/crypto/evp/evp_pkey.c +242 -0
  497. data/lib/extensions/openssl.so/ext/sources/crypto/evp/m_dss.c +101 -0
  498. data/lib/extensions/openssl.so/ext/sources/crypto/evp/m_dss1.c +103 -0
  499. data/lib/extensions/openssl.so/ext/sources/crypto/evp/m_ecdsa.c +151 -0
  500. data/lib/extensions/openssl.so/ext/sources/crypto/evp/m_md4.c +103 -0
  501. data/lib/extensions/openssl.so/ext/sources/crypto/evp/m_md5.c +102 -0
  502. data/lib/extensions/openssl.so/ext/sources/crypto/evp/m_mdc2.c +103 -0
  503. data/lib/extensions/openssl.so/ext/sources/crypto/evp/m_null.c +95 -0
  504. data/lib/extensions/openssl.so/ext/sources/crypto/evp/m_ripemd.c +102 -0
  505. data/lib/extensions/openssl.so/ext/sources/crypto/evp/m_sha.c +101 -0
  506. data/lib/extensions/openssl.so/ext/sources/crypto/evp/m_sha1.c +209 -0
  507. data/lib/extensions/openssl.so/ext/sources/crypto/evp/m_sigver.c +200 -0
  508. data/lib/extensions/openssl.so/ext/sources/crypto/evp/m_wp.c +43 -0
  509. data/lib/extensions/openssl.so/ext/sources/crypto/evp/names.c +206 -0
  510. data/lib/extensions/openssl.so/ext/sources/crypto/evp/p5_crpt.c +143 -0
  511. data/lib/extensions/openssl.so/ext/sources/crypto/evp/p5_crpt2.c +322 -0
  512. data/lib/extensions/openssl.so/ext/sources/crypto/evp/p_dec.c +87 -0
  513. data/lib/extensions/openssl.so/ext/sources/crypto/evp/p_enc.c +86 -0
  514. data/lib/extensions/openssl.so/ext/sources/crypto/evp/p_lib.c +469 -0
  515. data/lib/extensions/openssl.so/ext/sources/crypto/evp/p_open.c +128 -0
  516. data/lib/extensions/openssl.so/ext/sources/crypto/evp/p_seal.c +116 -0
  517. data/lib/extensions/openssl.so/ext/sources/crypto/evp/p_sign.c +139 -0
  518. data/lib/extensions/openssl.so/ext/sources/crypto/evp/p_verify.c +121 -0
  519. data/lib/extensions/openssl.so/ext/sources/crypto/evp/pmeth_fn.c +368 -0
  520. data/lib/extensions/openssl.so/ext/sources/crypto/evp/pmeth_gn.c +221 -0
  521. data/lib/extensions/openssl.so/ext/sources/crypto/evp/pmeth_lib.c +593 -0
  522. data/lib/extensions/openssl.so/ext/sources/crypto/ex_data.c +636 -0
  523. data/lib/extensions/openssl.so/ext/sources/crypto/fips_err.h +209 -0
  524. data/lib/extensions/openssl.so/ext/sources/crypto/fips_ers.c +7 -0
  525. data/lib/extensions/openssl.so/ext/sources/crypto/hmac/hm_ameth.c +167 -0
  526. data/lib/extensions/openssl.so/ext/sources/crypto/hmac/hm_pmeth.c +271 -0
  527. data/lib/extensions/openssl.so/ext/sources/crypto/hmac/hmac.c +251 -0
  528. data/lib/extensions/openssl.so/ext/sources/crypto/hmac/hmac.h +110 -0
  529. data/lib/extensions/openssl.so/ext/sources/crypto/idea/i_cbc.c +168 -0
  530. data/lib/extensions/openssl.so/ext/sources/crypto/idea/i_cfb64.c +122 -0
  531. data/lib/extensions/openssl.so/ext/sources/crypto/idea/i_ecb.c +85 -0
  532. data/lib/extensions/openssl.so/ext/sources/crypto/idea/i_ofb64.c +111 -0
  533. data/lib/extensions/openssl.so/ext/sources/crypto/idea/i_skey.c +164 -0
  534. data/lib/extensions/openssl.so/ext/sources/crypto/idea/idea.h +103 -0
  535. data/lib/extensions/openssl.so/ext/sources/crypto/idea/idea_lcl.h +215 -0
  536. data/lib/extensions/openssl.so/ext/sources/crypto/krb5/krb5_asn.c +167 -0
  537. data/lib/extensions/openssl.so/ext/sources/crypto/krb5/krb5_asn.h +256 -0
  538. data/lib/extensions/openssl.so/ext/sources/crypto/lhash/lh_stats.c +248 -0
  539. data/lib/extensions/openssl.so/ext/sources/crypto/lhash/lhash.c +475 -0
  540. data/lib/extensions/openssl.so/ext/sources/crypto/lhash/lhash.h +241 -0
  541. data/lib/extensions/openssl.so/ext/sources/crypto/md32_common.h +415 -0
  542. data/lib/extensions/openssl.so/ext/sources/crypto/md4/md4.h +120 -0
  543. data/lib/extensions/openssl.so/ext/sources/crypto/md4/md4_dgst.c +168 -0
  544. data/lib/extensions/openssl.so/ext/sources/crypto/md4/md4_locl.h +112 -0
  545. data/lib/extensions/openssl.so/ext/sources/crypto/md4/md4_one.c +97 -0
  546. data/lib/extensions/openssl.so/ext/sources/crypto/md5/md5.h +120 -0
  547. data/lib/extensions/openssl.so/ext/sources/crypto/md5/md5_dgst.c +185 -0
  548. data/lib/extensions/openssl.so/ext/sources/crypto/md5/md5_locl.h +130 -0
  549. data/lib/extensions/openssl.so/ext/sources/crypto/md5/md5_one.c +97 -0
  550. data/lib/extensions/openssl.so/ext/sources/crypto/mdc2/mdc2.h +98 -0
  551. data/lib/extensions/openssl.so/ext/sources/crypto/mdc2/mdc2_one.c +76 -0
  552. data/lib/extensions/openssl.so/ext/sources/crypto/mdc2/mdc2dgst.c +200 -0
  553. data/lib/extensions/openssl.so/ext/sources/crypto/mem.c +420 -0
  554. data/lib/extensions/openssl.so/ext/sources/crypto/mem_clr.c +77 -0
  555. data/lib/extensions/openssl.so/ext/sources/crypto/mem_dbg.c +874 -0
  556. data/lib/extensions/openssl.so/ext/sources/crypto/modes/cbc128.c +202 -0
  557. data/lib/extensions/openssl.so/ext/sources/crypto/modes/ccm128.c +441 -0
  558. data/lib/extensions/openssl.so/ext/sources/crypto/modes/cfb128.c +242 -0
  559. data/lib/extensions/openssl.so/ext/sources/crypto/modes/ctr128.c +252 -0
  560. data/lib/extensions/openssl.so/ext/sources/crypto/modes/cts128.c +465 -0
  561. data/lib/extensions/openssl.so/ext/sources/crypto/modes/gcm128.c +1757 -0
  562. data/lib/extensions/openssl.so/ext/sources/crypto/modes/modes.h +135 -0
  563. data/lib/extensions/openssl.so/ext/sources/crypto/modes/modes_lcl.h +131 -0
  564. data/lib/extensions/openssl.so/ext/sources/crypto/modes/ofb128.c +121 -0
  565. data/lib/extensions/openssl.so/ext/sources/crypto/modes/xts128.c +187 -0
  566. data/lib/extensions/openssl.so/ext/sources/crypto/o_dir.c +83 -0
  567. data/lib/extensions/openssl.so/ext/sources/crypto/o_dir.h +53 -0
  568. data/lib/extensions/openssl.so/ext/sources/crypto/o_fips.c +96 -0
  569. data/lib/extensions/openssl.so/ext/sources/crypto/o_init.c +82 -0
  570. data/lib/extensions/openssl.so/ext/sources/crypto/o_str.c +111 -0
  571. data/lib/extensions/openssl.so/ext/sources/crypto/o_str.h +68 -0
  572. data/lib/extensions/openssl.so/ext/sources/crypto/o_time.c +372 -0
  573. data/lib/extensions/openssl.so/ext/sources/crypto/o_time.h +67 -0
  574. data/lib/extensions/openssl.so/ext/sources/crypto/objects/o_names.c +372 -0
  575. data/lib/extensions/openssl.so/ext/sources/crypto/objects/obj_dat.c +810 -0
  576. data/lib/extensions/openssl.so/ext/sources/crypto/objects/obj_dat.h +5102 -0
  577. data/lib/extensions/openssl.so/ext/sources/crypto/objects/obj_err.c +102 -0
  578. data/lib/extensions/openssl.so/ext/sources/crypto/objects/obj_lib.c +129 -0
  579. data/lib/extensions/openssl.so/ext/sources/crypto/objects/obj_mac.h +4032 -0
  580. data/lib/extensions/openssl.so/ext/sources/crypto/objects/obj_xref.c +234 -0
  581. data/lib/extensions/openssl.so/ext/sources/crypto/objects/obj_xref.h +77 -0
  582. data/lib/extensions/openssl.so/ext/sources/crypto/objects/objects.h +1138 -0
  583. data/lib/extensions/openssl.so/ext/sources/crypto/ocsp/ocsp.h +623 -0
  584. data/lib/extensions/openssl.so/ext/sources/crypto/ocsp/ocsp_asn.c +182 -0
  585. data/lib/extensions/openssl.so/ext/sources/crypto/ocsp/ocsp_cl.c +371 -0
  586. data/lib/extensions/openssl.so/ext/sources/crypto/ocsp/ocsp_err.c +142 -0
  587. data/lib/extensions/openssl.so/ext/sources/crypto/ocsp/ocsp_ext.c +518 -0
  588. data/lib/extensions/openssl.so/ext/sources/crypto/ocsp/ocsp_ht.c +504 -0
  589. data/lib/extensions/openssl.so/ext/sources/crypto/ocsp/ocsp_lib.c +266 -0
  590. data/lib/extensions/openssl.so/ext/sources/crypto/ocsp/ocsp_prn.c +290 -0
  591. data/lib/extensions/openssl.so/ext/sources/crypto/ocsp/ocsp_srv.c +264 -0
  592. data/lib/extensions/openssl.so/ext/sources/crypto/ocsp/ocsp_vfy.c +446 -0
  593. data/lib/extensions/openssl.so/ext/sources/crypto/opensslconf.h +230 -0
  594. data/lib/extensions/openssl.so/ext/sources/crypto/opensslconf.h.in +154 -0
  595. data/lib/extensions/openssl.so/ext/sources/crypto/opensslv.h +89 -0
  596. data/lib/extensions/openssl.so/ext/sources/crypto/ossl_typ.h +202 -0
  597. data/lib/extensions/openssl.so/ext/sources/crypto/pem/pem.h +641 -0
  598. data/lib/extensions/openssl.so/ext/sources/crypto/pem/pem2.h +70 -0
  599. data/lib/extensions/openssl.so/ext/sources/crypto/pem/pem_all.c +296 -0
  600. data/lib/extensions/openssl.so/ext/sources/crypto/pem/pem_err.c +161 -0
  601. data/lib/extensions/openssl.so/ext/sources/crypto/pem/pem_info.c +405 -0
  602. data/lib/extensions/openssl.so/ext/sources/crypto/pem/pem_lib.c +852 -0
  603. data/lib/extensions/openssl.so/ext/sources/crypto/pem/pem_oth.c +86 -0
  604. data/lib/extensions/openssl.so/ext/sources/crypto/pem/pem_pk8.c +242 -0
  605. data/lib/extensions/openssl.so/ext/sources/crypto/pem/pem_pkey.c +242 -0
  606. data/lib/extensions/openssl.so/ext/sources/crypto/pem/pem_seal.c +189 -0
  607. data/lib/extensions/openssl.so/ext/sources/crypto/pem/pem_sign.c +102 -0
  608. data/lib/extensions/openssl.so/ext/sources/crypto/pem/pem_x509.c +68 -0
  609. data/lib/extensions/openssl.so/ext/sources/crypto/pem/pem_xaux.c +68 -0
  610. data/lib/extensions/openssl.so/ext/sources/crypto/pem/pvkfmt.c +950 -0
  611. data/lib/extensions/openssl.so/ext/sources/crypto/pkcs12/p12_add.c +240 -0
  612. data/lib/extensions/openssl.so/ext/sources/crypto/pkcs12/p12_asn.c +125 -0
  613. data/lib/extensions/openssl.so/ext/sources/crypto/pkcs12/p12_attr.c +145 -0
  614. data/lib/extensions/openssl.so/ext/sources/crypto/pkcs12/p12_crpt.c +112 -0
  615. data/lib/extensions/openssl.so/ext/sources/crypto/pkcs12/p12_crt.c +359 -0
  616. data/lib/extensions/openssl.so/ext/sources/crypto/pkcs12/p12_decr.c +184 -0
  617. data/lib/extensions/openssl.so/ext/sources/crypto/pkcs12/p12_init.c +92 -0
  618. data/lib/extensions/openssl.so/ext/sources/crypto/pkcs12/p12_key.c +219 -0
  619. data/lib/extensions/openssl.so/ext/sources/crypto/pkcs12/p12_kiss.c +302 -0
  620. data/lib/extensions/openssl.so/ext/sources/crypto/pkcs12/p12_mutl.c +190 -0
  621. data/lib/extensions/openssl.so/ext/sources/crypto/pkcs12/p12_npas.c +225 -0
  622. data/lib/extensions/openssl.so/ext/sources/crypto/pkcs12/p12_p8d.c +68 -0
  623. data/lib/extensions/openssl.so/ext/sources/crypto/pkcs12/p12_p8e.c +97 -0
  624. data/lib/extensions/openssl.so/ext/sources/crypto/pkcs12/p12_utl.c +146 -0
  625. data/lib/extensions/openssl.so/ext/sources/crypto/pkcs12/pk12err.c +144 -0
  626. data/lib/extensions/openssl.so/ext/sources/crypto/pkcs12/pkcs12.h +331 -0
  627. data/lib/extensions/openssl.so/ext/sources/crypto/pkcs7/bio_pk7.c +69 -0
  628. data/lib/extensions/openssl.so/ext/sources/crypto/pkcs7/pk7_asn1.c +247 -0
  629. data/lib/extensions/openssl.so/ext/sources/crypto/pkcs7/pk7_attr.c +165 -0
  630. data/lib/extensions/openssl.so/ext/sources/crypto/pkcs7/pk7_doit.c +1299 -0
  631. data/lib/extensions/openssl.so/ext/sources/crypto/pkcs7/pk7_lib.c +665 -0
  632. data/lib/extensions/openssl.so/ext/sources/crypto/pkcs7/pk7_mime.c +97 -0
  633. data/lib/extensions/openssl.so/ext/sources/crypto/pkcs7/pk7_smime.c +606 -0
  634. data/lib/extensions/openssl.so/ext/sources/crypto/pkcs7/pkcs7.h +499 -0
  635. data/lib/extensions/openssl.so/ext/sources/crypto/pkcs7/pkcs7err.c +187 -0
  636. data/lib/extensions/openssl.so/ext/sources/crypto/pqueue/pqueue.c +252 -0
  637. data/lib/extensions/openssl.so/ext/sources/crypto/pqueue/pqueue.h +94 -0
  638. data/lib/extensions/openssl.so/ext/sources/crypto/rand/md_rand.c +592 -0
  639. data/lib/extensions/openssl.so/ext/sources/crypto/rand/rand.h +149 -0
  640. data/lib/extensions/openssl.so/ext/sources/crypto/rand/rand_egd.c +303 -0
  641. data/lib/extensions/openssl.so/ext/sources/crypto/rand/rand_err.c +100 -0
  642. data/lib/extensions/openssl.so/ext/sources/crypto/rand/rand_lcl.h +158 -0
  643. data/lib/extensions/openssl.so/ext/sources/crypto/rand/rand_lib.c +295 -0
  644. data/lib/extensions/openssl.so/ext/sources/crypto/rand/rand_nw.c +183 -0
  645. data/lib/extensions/openssl.so/ext/sources/crypto/rand/rand_os2.c +153 -0
  646. data/lib/extensions/openssl.so/ext/sources/crypto/rand/rand_unix.c +431 -0
  647. data/lib/extensions/openssl.so/ext/sources/crypto/rand/rand_win.c +807 -0
  648. data/lib/extensions/openssl.so/ext/sources/crypto/rand/randfile.c +326 -0
  649. data/lib/extensions/openssl.so/ext/sources/crypto/rc2/rc2.h +103 -0
  650. data/lib/extensions/openssl.so/ext/sources/crypto/rc2/rc2_cbc.c +226 -0
  651. data/lib/extensions/openssl.so/ext/sources/crypto/rc2/rc2_ecb.c +88 -0
  652. data/lib/extensions/openssl.so/ext/sources/crypto/rc2/rc2_locl.h +156 -0
  653. data/lib/extensions/openssl.so/ext/sources/crypto/rc2/rc2_skey.c +153 -0
  654. data/lib/extensions/openssl.so/ext/sources/crypto/rc2/rc2cfb64.c +122 -0
  655. data/lib/extensions/openssl.so/ext/sources/crypto/rc2/rc2ofb64.c +111 -0
  656. data/lib/extensions/openssl.so/ext/sources/crypto/rc4/rc4.h +90 -0
  657. data/lib/extensions/openssl.so/ext/sources/crypto/rc4/rc4_enc.c +315 -0
  658. data/lib/extensions/openssl.so/ext/sources/crypto/rc4/rc4_locl.h +5 -0
  659. data/lib/extensions/openssl.so/ext/sources/crypto/rc4/rc4_skey.c +116 -0
  660. data/lib/extensions/openssl.so/ext/sources/crypto/rc4/rc4_utl.c +62 -0
  661. data/lib/extensions/openssl.so/ext/sources/crypto/ripemd/ripemd.h +107 -0
  662. data/lib/extensions/openssl.so/ext/sources/crypto/ripemd/rmd_dgst.c +292 -0
  663. data/lib/extensions/openssl.so/ext/sources/crypto/ripemd/rmd_locl.h +150 -0
  664. data/lib/extensions/openssl.so/ext/sources/crypto/ripemd/rmd_one.c +78 -0
  665. data/lib/extensions/openssl.so/ext/sources/crypto/ripemd/rmdconst.h +399 -0
  666. data/lib/extensions/openssl.so/ext/sources/crypto/rsa/rsa.h +582 -0
  667. data/lib/extensions/openssl.so/ext/sources/crypto/rsa/rsa_ameth.c +698 -0
  668. data/lib/extensions/openssl.so/ext/sources/crypto/rsa/rsa_asn1.c +121 -0
  669. data/lib/extensions/openssl.so/ext/sources/crypto/rsa/rsa_chk.c +184 -0
  670. data/lib/extensions/openssl.so/ext/sources/crypto/rsa/rsa_crpt.c +257 -0
  671. data/lib/extensions/openssl.so/ext/sources/crypto/rsa/rsa_depr.c +101 -0
  672. data/lib/extensions/openssl.so/ext/sources/crypto/rsa/rsa_eay.c +915 -0
  673. data/lib/extensions/openssl.so/ext/sources/crypto/rsa/rsa_err.c +209 -0
  674. data/lib/extensions/openssl.so/ext/sources/crypto/rsa/rsa_gen.c +234 -0
  675. data/lib/extensions/openssl.so/ext/sources/crypto/rsa/rsa_lib.c +333 -0
  676. data/lib/extensions/openssl.so/ext/sources/crypto/rsa/rsa_locl.h +4 -0
  677. data/lib/extensions/openssl.so/ext/sources/crypto/rsa/rsa_none.c +98 -0
  678. data/lib/extensions/openssl.so/ext/sources/crypto/rsa/rsa_null.c +151 -0
  679. data/lib/extensions/openssl.so/ext/sources/crypto/rsa/rsa_oaep.c +235 -0
  680. data/lib/extensions/openssl.so/ext/sources/crypto/rsa/rsa_pk1.c +224 -0
  681. data/lib/extensions/openssl.so/ext/sources/crypto/rsa/rsa_pmeth.c +723 -0
  682. data/lib/extensions/openssl.so/ext/sources/crypto/rsa/rsa_prn.c +93 -0
  683. data/lib/extensions/openssl.so/ext/sources/crypto/rsa/rsa_pss.c +300 -0
  684. data/lib/extensions/openssl.so/ext/sources/crypto/rsa/rsa_saos.c +150 -0
  685. data/lib/extensions/openssl.so/ext/sources/crypto/rsa/rsa_sign.c +318 -0
  686. data/lib/extensions/openssl.so/ext/sources/crypto/rsa/rsa_ssl.c +154 -0
  687. data/lib/extensions/openssl.so/ext/sources/crypto/rsa/rsa_x931.c +177 -0
  688. data/lib/extensions/openssl.so/ext/sources/crypto/seed/seed.c +336 -0
  689. data/lib/extensions/openssl.so/ext/sources/crypto/seed/seed.h +139 -0
  690. data/lib/extensions/openssl.so/ext/sources/crypto/seed/seed_cbc.c +63 -0
  691. data/lib/extensions/openssl.so/ext/sources/crypto/seed/seed_cfb.c +116 -0
  692. data/lib/extensions/openssl.so/ext/sources/crypto/seed/seed_ecb.c +60 -0
  693. data/lib/extensions/openssl.so/ext/sources/crypto/seed/seed_locl.h +116 -0
  694. data/lib/extensions/openssl.so/ext/sources/crypto/seed/seed_ofb.c +116 -0
  695. data/lib/extensions/openssl.so/ext/sources/crypto/sha/sha.h +214 -0
  696. data/lib/extensions/openssl.so/ext/sources/crypto/sha/sha1_one.c +78 -0
  697. data/lib/extensions/openssl.so/ext/sources/crypto/sha/sha1dgst.c +75 -0
  698. data/lib/extensions/openssl.so/ext/sources/crypto/sha/sha256.c +282 -0
  699. data/lib/extensions/openssl.so/ext/sources/crypto/sha/sha512.c +597 -0
  700. data/lib/extensions/openssl.so/ext/sources/crypto/sha/sha_dgst.c +75 -0
  701. data/lib/extensions/openssl.so/ext/sources/crypto/sha/sha_locl.h +441 -0
  702. data/lib/extensions/openssl.so/ext/sources/crypto/sha/sha_one.c +78 -0
  703. data/lib/extensions/openssl.so/ext/sources/crypto/srp/srp.h +172 -0
  704. data/lib/extensions/openssl.so/ext/sources/crypto/srp/srp_grps.h +517 -0
  705. data/lib/extensions/openssl.so/ext/sources/crypto/srp/srp_lcl.h +83 -0
  706. data/lib/extensions/openssl.so/ext/sources/crypto/srp/srp_lib.c +357 -0
  707. data/lib/extensions/openssl.so/ext/sources/crypto/srp/srp_vfy.c +657 -0
  708. data/lib/extensions/openssl.so/ext/sources/crypto/stack/safestack.h +2663 -0
  709. data/lib/extensions/openssl.so/ext/sources/crypto/stack/stack.c +334 -0
  710. data/lib/extensions/openssl.so/ext/sources/crypto/stack/stack.h +108 -0
  711. data/lib/extensions/openssl.so/ext/sources/crypto/symhacks.h +477 -0
  712. data/lib/extensions/openssl.so/ext/sources/crypto/ts/ts.h +858 -0
  713. data/lib/extensions/openssl.so/ext/sources/crypto/ts/ts_asn1.c +322 -0
  714. data/lib/extensions/openssl.so/ext/sources/crypto/ts/ts_conf.c +507 -0
  715. data/lib/extensions/openssl.so/ext/sources/crypto/ts/ts_err.c +179 -0
  716. data/lib/extensions/openssl.so/ext/sources/crypto/ts/ts_lib.c +145 -0
  717. data/lib/extensions/openssl.so/ext/sources/crypto/ts/ts_req_print.c +102 -0
  718. data/lib/extensions/openssl.so/ext/sources/crypto/ts/ts_req_utils.c +234 -0
  719. data/lib/extensions/openssl.so/ext/sources/crypto/ts/ts_rsp_print.c +287 -0
  720. data/lib/extensions/openssl.so/ext/sources/crypto/ts/ts_rsp_sign.c +1020 -0
  721. data/lib/extensions/openssl.so/ext/sources/crypto/ts/ts_rsp_utils.c +409 -0
  722. data/lib/extensions/openssl.so/ext/sources/crypto/ts/ts_rsp_verify.c +728 -0
  723. data/lib/extensions/openssl.so/ext/sources/crypto/ts/ts_verify_ctx.c +159 -0
  724. data/lib/extensions/openssl.so/ext/sources/crypto/txt_db/txt_db.c +388 -0
  725. data/lib/extensions/openssl.so/ext/sources/crypto/txt_db/txt_db.h +112 -0
  726. data/lib/extensions/openssl.so/ext/sources/crypto/ui/ui.h +383 -0
  727. data/lib/extensions/openssl.so/ext/sources/crypto/ui/ui_compat.c +67 -0
  728. data/lib/extensions/openssl.so/ext/sources/crypto/ui/ui_compat.h +83 -0
  729. data/lib/extensions/openssl.so/ext/sources/crypto/ui/ui_err.c +112 -0
  730. data/lib/extensions/openssl.so/ext/sources/crypto/ui/ui_lib.c +924 -0
  731. data/lib/extensions/openssl.so/ext/sources/crypto/ui/ui_locl.h +153 -0
  732. data/lib/extensions/openssl.so/ext/sources/crypto/ui/ui_openssl.c +712 -0
  733. data/lib/extensions/openssl.so/ext/sources/crypto/ui/ui_util.c +91 -0
  734. data/lib/extensions/openssl.so/ext/sources/crypto/uid.c +89 -0
  735. data/lib/extensions/openssl.so/ext/sources/crypto/vms_rms.h +51 -0
  736. data/lib/extensions/openssl.so/ext/sources/crypto/whrlpool/whrlpool.h +41 -0
  737. data/lib/extensions/openssl.so/ext/sources/crypto/whrlpool/wp_block.c +655 -0
  738. data/lib/extensions/openssl.so/ext/sources/crypto/whrlpool/wp_dgst.c +265 -0
  739. data/lib/extensions/openssl.so/ext/sources/crypto/whrlpool/wp_locl.h +3 -0
  740. data/lib/extensions/openssl.so/ext/sources/crypto/x509/by_dir.c +482 -0
  741. data/lib/extensions/openssl.so/ext/sources/crypto/x509/by_file.c +300 -0
  742. data/lib/extensions/openssl.so/ext/sources/crypto/x509/x509.h +1297 -0
  743. data/lib/extensions/openssl.so/ext/sources/crypto/x509/x509_att.c +359 -0
  744. data/lib/extensions/openssl.so/ext/sources/crypto/x509/x509_cmp.c +344 -0
  745. data/lib/extensions/openssl.so/ext/sources/crypto/x509/x509_d2.c +107 -0
  746. data/lib/extensions/openssl.so/ext/sources/crypto/x509/x509_def.c +81 -0
  747. data/lib/extensions/openssl.so/ext/sources/crypto/x509/x509_err.c +164 -0
  748. data/lib/extensions/openssl.so/ext/sources/crypto/x509/x509_ext.c +210 -0
  749. data/lib/extensions/openssl.so/ext/sources/crypto/x509/x509_lu.c +716 -0
  750. data/lib/extensions/openssl.so/ext/sources/crypto/x509/x509_obj.c +226 -0
  751. data/lib/extensions/openssl.so/ext/sources/crypto/x509/x509_r2x.c +114 -0
  752. data/lib/extensions/openssl.so/ext/sources/crypto/x509/x509_req.c +316 -0
  753. data/lib/extensions/openssl.so/ext/sources/crypto/x509/x509_set.c +150 -0
  754. data/lib/extensions/openssl.so/ext/sources/crypto/x509/x509_trs.c +288 -0
  755. data/lib/extensions/openssl.so/ext/sources/crypto/x509/x509_txt.c +193 -0
  756. data/lib/extensions/openssl.so/ext/sources/crypto/x509/x509_v3.c +274 -0
  757. data/lib/extensions/openssl.so/ext/sources/crypto/x509/x509_vfy.c +2214 -0
  758. data/lib/extensions/openssl.so/ext/sources/crypto/x509/x509_vfy.h +567 -0
  759. data/lib/extensions/openssl.so/ext/sources/crypto/x509/x509_vpm.c +438 -0
  760. data/lib/extensions/openssl.so/ext/sources/crypto/x509/x509cset.c +170 -0
  761. data/lib/extensions/openssl.so/ext/sources/crypto/x509/x509name.c +383 -0
  762. data/lib/extensions/openssl.so/ext/sources/crypto/x509/x509rset.c +83 -0
  763. data/lib/extensions/openssl.so/ext/sources/crypto/x509/x509spki.c +121 -0
  764. data/lib/extensions/openssl.so/ext/sources/crypto/x509/x509type.c +131 -0
  765. data/lib/extensions/openssl.so/ext/sources/crypto/x509/x_all.c +535 -0
  766. data/lib/extensions/openssl.so/ext/sources/crypto/x509v3/ext_dat.h +132 -0
  767. data/lib/extensions/openssl.so/ext/sources/crypto/x509v3/pcy_cache.c +286 -0
  768. data/lib/extensions/openssl.so/ext/sources/crypto/x509v3/pcy_data.c +135 -0
  769. data/lib/extensions/openssl.so/ext/sources/crypto/x509v3/pcy_int.h +212 -0
  770. data/lib/extensions/openssl.so/ext/sources/crypto/x509v3/pcy_lib.c +167 -0
  771. data/lib/extensions/openssl.so/ext/sources/crypto/x509v3/pcy_map.c +132 -0
  772. data/lib/extensions/openssl.so/ext/sources/crypto/x509v3/pcy_node.c +197 -0
  773. data/lib/extensions/openssl.so/ext/sources/crypto/x509v3/pcy_tree.c +872 -0
  774. data/lib/extensions/openssl.so/ext/sources/crypto/x509v3/v3_addr.c +1338 -0
  775. data/lib/extensions/openssl.so/ext/sources/crypto/x509v3/v3_akey.c +208 -0
  776. data/lib/extensions/openssl.so/ext/sources/crypto/x509v3/v3_akeya.c +72 -0
  777. data/lib/extensions/openssl.so/ext/sources/crypto/x509v3/v3_alt.c +614 -0
  778. data/lib/extensions/openssl.so/ext/sources/crypto/x509v3/v3_asid.c +890 -0
  779. data/lib/extensions/openssl.so/ext/sources/crypto/x509v3/v3_bcons.c +124 -0
  780. data/lib/extensions/openssl.so/ext/sources/crypto/x509v3/v3_bitst.c +141 -0
  781. data/lib/extensions/openssl.so/ext/sources/crypto/x509v3/v3_conf.c +525 -0
  782. data/lib/extensions/openssl.so/ext/sources/crypto/x509v3/v3_cpols.c +457 -0
  783. data/lib/extensions/openssl.so/ext/sources/crypto/x509v3/v3_crld.c +616 -0
  784. data/lib/extensions/openssl.so/ext/sources/crypto/x509v3/v3_enum.c +97 -0
  785. data/lib/extensions/openssl.so/ext/sources/crypto/x509v3/v3_extku.c +144 -0
  786. data/lib/extensions/openssl.so/ext/sources/crypto/x509v3/v3_genn.c +252 -0
  787. data/lib/extensions/openssl.so/ext/sources/crypto/x509v3/v3_ia5.c +116 -0
  788. data/lib/extensions/openssl.so/ext/sources/crypto/x509v3/v3_info.c +193 -0
  789. data/lib/extensions/openssl.so/ext/sources/crypto/x509v3/v3_int.c +89 -0
  790. data/lib/extensions/openssl.so/ext/sources/crypto/x509v3/v3_lib.c +309 -0
  791. data/lib/extensions/openssl.so/ext/sources/crypto/x509v3/v3_ncons.c +505 -0
  792. data/lib/extensions/openssl.so/ext/sources/crypto/x509v3/v3_ocsp.c +289 -0
  793. data/lib/extensions/openssl.so/ext/sources/crypto/x509v3/v3_pci.c +328 -0
  794. data/lib/extensions/openssl.so/ext/sources/crypto/x509v3/v3_pcia.c +55 -0
  795. data/lib/extensions/openssl.so/ext/sources/crypto/x509v3/v3_pcons.c +140 -0
  796. data/lib/extensions/openssl.so/ext/sources/crypto/x509v3/v3_pku.c +108 -0
  797. data/lib/extensions/openssl.so/ext/sources/crypto/x509v3/v3_pmaps.c +155 -0
  798. data/lib/extensions/openssl.so/ext/sources/crypto/x509v3/v3_prn.c +234 -0
  799. data/lib/extensions/openssl.so/ext/sources/crypto/x509v3/v3_purp.c +767 -0
  800. data/lib/extensions/openssl.so/ext/sources/crypto/x509v3/v3_skey.c +145 -0
  801. data/lib/extensions/openssl.so/ext/sources/crypto/x509v3/v3_sxnet.c +262 -0
  802. data/lib/extensions/openssl.so/ext/sources/crypto/x509v3/v3_utl.c +874 -0
  803. data/lib/extensions/openssl.so/ext/sources/crypto/x509v3/v3err.c +226 -0
  804. data/lib/extensions/openssl.so/ext/sources/crypto/x509v3/x509v3.h +1007 -0
  805. data/lib/extensions/openssl.so/ext/sources/e_os.h +735 -0
  806. data/lib/extensions/openssl.so/ext/sources/e_os2.h +315 -0
  807. data/lib/extensions/openssl.so/ext/sources/engines/ccgost/e_gost_err.c +212 -0
  808. data/lib/extensions/openssl.so/ext/sources/engines/ccgost/e_gost_err.h +156 -0
  809. data/lib/extensions/openssl.so/ext/sources/engines/ccgost/gost2001.c +343 -0
  810. data/lib/extensions/openssl.so/ext/sources/engines/ccgost/gost2001_keyx.c +308 -0
  811. data/lib/extensions/openssl.so/ext/sources/engines/ccgost/gost2001_keyx.h +10 -0
  812. data/lib/extensions/openssl.so/ext/sources/engines/ccgost/gost89.c +409 -0
  813. data/lib/extensions/openssl.so/ext/sources/engines/ccgost/gost89.h +96 -0
  814. data/lib/extensions/openssl.so/ext/sources/engines/ccgost/gost94_keyx.c +291 -0
  815. data/lib/extensions/openssl.so/ext/sources/engines/ccgost/gost_ameth.c +945 -0
  816. data/lib/extensions/openssl.so/ext/sources/engines/ccgost/gost_asn1.c +55 -0
  817. data/lib/extensions/openssl.so/ext/sources/engines/ccgost/gost_crypt.c +617 -0
  818. data/lib/extensions/openssl.so/ext/sources/engines/ccgost/gost_ctl.c +89 -0
  819. data/lib/extensions/openssl.so/ext/sources/engines/ccgost/gost_eng.c +273 -0
  820. data/lib/extensions/openssl.so/ext/sources/engines/ccgost/gost_keywrap.c +109 -0
  821. data/lib/extensions/openssl.so/ext/sources/engines/ccgost/gost_keywrap.h +56 -0
  822. data/lib/extensions/openssl.so/ext/sources/engines/ccgost/gost_lcl.h +221 -0
  823. data/lib/extensions/openssl.so/ext/sources/engines/ccgost/gost_md.c +75 -0
  824. data/lib/extensions/openssl.so/ext/sources/engines/ccgost/gost_params.c +198 -0
  825. data/lib/extensions/openssl.so/ext/sources/engines/ccgost/gost_params.h +34 -0
  826. data/lib/extensions/openssl.so/ext/sources/engines/ccgost/gost_pmeth.c +628 -0
  827. data/lib/extensions/openssl.so/ext/sources/engines/ccgost/gost_sign.c +321 -0
  828. data/lib/extensions/openssl.so/ext/sources/engines/ccgost/gosthash.c +255 -0
  829. data/lib/extensions/openssl.so/ext/sources/engines/ccgost/gosthash.h +48 -0
  830. data/lib/extensions/openssl.so/ext/sources/engines/e_4758cca.c +987 -0
  831. data/lib/extensions/openssl.so/ext/sources/engines/e_4758cca_err.c +153 -0
  832. data/lib/extensions/openssl.so/ext/sources/engines/e_4758cca_err.h +97 -0
  833. data/lib/extensions/openssl.so/ext/sources/engines/e_aep.c +1139 -0
  834. data/lib/extensions/openssl.so/ext/sources/engines/e_aep_err.c +161 -0
  835. data/lib/extensions/openssl.so/ext/sources/engines/e_aep_err.h +105 -0
  836. data/lib/extensions/openssl.so/ext/sources/engines/e_atalla.c +607 -0
  837. data/lib/extensions/openssl.so/ext/sources/engines/e_atalla_err.c +149 -0
  838. data/lib/extensions/openssl.so/ext/sources/engines/e_atalla_err.h +93 -0
  839. data/lib/extensions/openssl.so/ext/sources/engines/e_capi.c +1913 -0
  840. data/lib/extensions/openssl.so/ext/sources/engines/e_capi_err.c +184 -0
  841. data/lib/extensions/openssl.so/ext/sources/engines/e_capi_err.h +128 -0
  842. data/lib/extensions/openssl.so/ext/sources/engines/e_chil.c +1356 -0
  843. data/lib/extensions/openssl.so/ext/sources/engines/e_chil_err.c +160 -0
  844. data/lib/extensions/openssl.so/ext/sources/engines/e_chil_err.h +104 -0
  845. data/lib/extensions/openssl.so/ext/sources/engines/e_cswift.c +1129 -0
  846. data/lib/extensions/openssl.so/ext/sources/engines/e_cswift_err.c +154 -0
  847. data/lib/extensions/openssl.so/ext/sources/engines/e_cswift_err.h +98 -0
  848. data/lib/extensions/openssl.so/ext/sources/engines/e_gmp.c +480 -0
  849. data/lib/extensions/openssl.so/ext/sources/engines/e_gmp_err.c +141 -0
  850. data/lib/extensions/openssl.so/ext/sources/engines/e_gmp_err.h +85 -0
  851. data/lib/extensions/openssl.so/ext/sources/engines/e_nuron.c +434 -0
  852. data/lib/extensions/openssl.so/ext/sources/engines/e_nuron_err.c +146 -0
  853. data/lib/extensions/openssl.so/ext/sources/engines/e_nuron_err.h +90 -0
  854. data/lib/extensions/openssl.so/ext/sources/engines/e_padlock.c +1239 -0
  855. data/lib/extensions/openssl.so/ext/sources/engines/e_sureware.c +1055 -0
  856. data/lib/extensions/openssl.so/ext/sources/engines/e_sureware_err.c +158 -0
  857. data/lib/extensions/openssl.so/ext/sources/engines/e_sureware_err.h +102 -0
  858. data/lib/extensions/openssl.so/ext/sources/engines/e_ubsec.c +1069 -0
  859. data/lib/extensions/openssl.so/ext/sources/engines/e_ubsec_err.c +157 -0
  860. data/lib/extensions/openssl.so/ext/sources/engines/e_ubsec_err.h +101 -0
  861. data/lib/extensions/openssl.so/ext/sources/engines/vendor_defns/aep.h +178 -0
  862. data/lib/extensions/openssl.so/ext/sources/engines/vendor_defns/atalla.h +48 -0
  863. data/lib/extensions/openssl.so/ext/sources/engines/vendor_defns/cswift.h +234 -0
  864. data/lib/extensions/openssl.so/ext/sources/engines/vendor_defns/hw_4758_cca.h +149 -0
  865. data/lib/extensions/openssl.so/ext/sources/engines/vendor_defns/hw_ubsec.h +100 -0
  866. data/lib/extensions/openssl.so/ext/sources/engines/vendor_defns/hwcryptohook.h +486 -0
  867. data/lib/extensions/openssl.so/ext/sources/engines/vendor_defns/sureware.h +239 -0
  868. data/lib/extensions/openssl.so/ext/sources/include/openssl/aes.h +1 -0
  869. data/lib/extensions/openssl.so/ext/sources/include/openssl/asn1.h +1 -0
  870. data/lib/extensions/openssl.so/ext/sources/include/openssl/asn1_mac.h +1 -0
  871. data/lib/extensions/openssl.so/ext/sources/include/openssl/asn1t.h +1 -0
  872. data/lib/extensions/openssl.so/ext/sources/include/openssl/bio.h +1 -0
  873. data/lib/extensions/openssl.so/ext/sources/include/openssl/blowfish.h +1 -0
  874. data/lib/extensions/openssl.so/ext/sources/include/openssl/bn.h +1 -0
  875. data/lib/extensions/openssl.so/ext/sources/include/openssl/buffer.h +1 -0
  876. data/lib/extensions/openssl.so/ext/sources/include/openssl/camellia.h +1 -0
  877. data/lib/extensions/openssl.so/ext/sources/include/openssl/cast.h +1 -0
  878. data/lib/extensions/openssl.so/ext/sources/include/openssl/cmac.h +1 -0
  879. data/lib/extensions/openssl.so/ext/sources/include/openssl/cms.h +1 -0
  880. data/lib/extensions/openssl.so/ext/sources/include/openssl/comp.h +1 -0
  881. data/lib/extensions/openssl.so/ext/sources/include/openssl/conf.h +1 -0
  882. data/lib/extensions/openssl.so/ext/sources/include/openssl/conf_api.h +1 -0
  883. data/lib/extensions/openssl.so/ext/sources/include/openssl/crypto.h +1 -0
  884. data/lib/extensions/openssl.so/ext/sources/include/openssl/des.h +1 -0
  885. data/lib/extensions/openssl.so/ext/sources/include/openssl/des_old.h +1 -0
  886. data/lib/extensions/openssl.so/ext/sources/include/openssl/dh.h +1 -0
  887. data/lib/extensions/openssl.so/ext/sources/include/openssl/dsa.h +1 -0
  888. data/lib/extensions/openssl.so/ext/sources/include/openssl/dso.h +1 -0
  889. data/lib/extensions/openssl.so/ext/sources/include/openssl/dtls1.h +1 -0
  890. data/lib/extensions/openssl.so/ext/sources/include/openssl/e_os2.h +1 -0
  891. data/lib/extensions/openssl.so/ext/sources/include/openssl/ebcdic.h +1 -0
  892. data/lib/extensions/openssl.so/ext/sources/include/openssl/ec.h +1 -0
  893. data/lib/extensions/openssl.so/ext/sources/include/openssl/ecdh.h +1 -0
  894. data/lib/extensions/openssl.so/ext/sources/include/openssl/ecdsa.h +1 -0
  895. data/lib/extensions/openssl.so/ext/sources/include/openssl/engine.h +1 -0
  896. data/lib/extensions/openssl.so/ext/sources/include/openssl/err.h +1 -0
  897. data/lib/extensions/openssl.so/ext/sources/include/openssl/evp.h +1 -0
  898. data/lib/extensions/openssl.so/ext/sources/include/openssl/hmac.h +1 -0
  899. data/lib/extensions/openssl.so/ext/sources/include/openssl/idea.h +1 -0
  900. data/lib/extensions/openssl.so/ext/sources/include/openssl/krb5_asn.h +1 -0
  901. data/lib/extensions/openssl.so/ext/sources/include/openssl/kssl.h +1 -0
  902. data/lib/extensions/openssl.so/ext/sources/include/openssl/lhash.h +1 -0
  903. data/lib/extensions/openssl.so/ext/sources/include/openssl/md4.h +1 -0
  904. data/lib/extensions/openssl.so/ext/sources/include/openssl/md5.h +1 -0
  905. data/lib/extensions/openssl.so/ext/sources/include/openssl/mdc2.h +1 -0
  906. data/lib/extensions/openssl.so/ext/sources/include/openssl/modes.h +1 -0
  907. data/lib/extensions/openssl.so/ext/sources/include/openssl/obj_mac.h +1 -0
  908. data/lib/extensions/openssl.so/ext/sources/include/openssl/objects.h +1 -0
  909. data/lib/extensions/openssl.so/ext/sources/include/openssl/ocsp.h +1 -0
  910. data/lib/extensions/openssl.so/ext/sources/include/openssl/opensslconf.h +1 -0
  911. data/lib/extensions/openssl.so/ext/sources/include/openssl/opensslv.h +1 -0
  912. data/lib/extensions/openssl.so/ext/sources/include/openssl/ossl_typ.h +1 -0
  913. data/lib/extensions/openssl.so/ext/sources/include/openssl/pem.h +1 -0
  914. data/lib/extensions/openssl.so/ext/sources/include/openssl/pem2.h +1 -0
  915. data/lib/extensions/openssl.so/ext/sources/include/openssl/pkcs12.h +1 -0
  916. data/lib/extensions/openssl.so/ext/sources/include/openssl/pkcs7.h +1 -0
  917. data/lib/extensions/openssl.so/ext/sources/include/openssl/pqueue.h +1 -0
  918. data/lib/extensions/openssl.so/ext/sources/include/openssl/rand.h +1 -0
  919. data/lib/extensions/openssl.so/ext/sources/include/openssl/rc2.h +1 -0
  920. data/lib/extensions/openssl.so/ext/sources/include/openssl/rc4.h +1 -0
  921. data/lib/extensions/openssl.so/ext/sources/include/openssl/ripemd.h +1 -0
  922. data/lib/extensions/openssl.so/ext/sources/include/openssl/rsa.h +1 -0
  923. data/lib/extensions/openssl.so/ext/sources/include/openssl/safestack.h +1 -0
  924. data/lib/extensions/openssl.so/ext/sources/include/openssl/seed.h +1 -0
  925. data/lib/extensions/openssl.so/ext/sources/include/openssl/sha.h +1 -0
  926. data/lib/extensions/openssl.so/ext/sources/include/openssl/srp.h +1 -0
  927. data/lib/extensions/openssl.so/ext/sources/include/openssl/srtp.h +1 -0
  928. data/lib/extensions/openssl.so/ext/sources/include/openssl/ssl.h +1 -0
  929. data/lib/extensions/openssl.so/ext/sources/include/openssl/ssl2.h +1 -0
  930. data/lib/extensions/openssl.so/ext/sources/include/openssl/ssl23.h +1 -0
  931. data/lib/extensions/openssl.so/ext/sources/include/openssl/ssl3.h +1 -0
  932. data/lib/extensions/openssl.so/ext/sources/include/openssl/stack.h +1 -0
  933. data/lib/extensions/openssl.so/ext/sources/include/openssl/store.h +1 -0
  934. data/lib/extensions/openssl.so/ext/sources/include/openssl/symhacks.h +1 -0
  935. data/lib/extensions/openssl.so/ext/sources/include/openssl/tls1.h +1 -0
  936. data/lib/extensions/openssl.so/ext/sources/include/openssl/ts.h +1 -0
  937. data/lib/extensions/openssl.so/ext/sources/include/openssl/txt_db.h +1 -0
  938. data/lib/extensions/openssl.so/ext/sources/include/openssl/ui.h +1 -0
  939. data/lib/extensions/openssl.so/ext/sources/include/openssl/ui_compat.h +1 -0
  940. data/lib/extensions/openssl.so/ext/sources/include/openssl/whrlpool.h +1 -0
  941. data/lib/extensions/openssl.so/ext/sources/include/openssl/x509.h +1 -0
  942. data/lib/extensions/openssl.so/ext/sources/include/openssl/x509_vfy.h +1 -0
  943. data/lib/extensions/openssl.so/ext/sources/include/openssl/x509v3.h +1 -0
  944. data/lib/extensions/openssl.so/ext/sources/include/wcecompat/assert.h +50 -0
  945. data/lib/extensions/openssl.so/ext/sources/include/wcecompat/conio.h +40 -0
  946. data/lib/extensions/openssl.so/ext/sources/include/wcecompat/ctype.h +90 -0
  947. data/lib/extensions/openssl.so/ext/sources/include/wcecompat/direct.h +22 -0
  948. data/lib/extensions/openssl.so/ext/sources/include/wcecompat/errno.h +158 -0
  949. data/lib/extensions/openssl.so/ext/sources/include/wcecompat/fcntl.h +56 -0
  950. data/lib/extensions/openssl.so/ext/sources/include/wcecompat/float.h +330 -0
  951. data/lib/extensions/openssl.so/ext/sources/include/wcecompat/io.h +63 -0
  952. data/lib/extensions/openssl.so/ext/sources/include/wcecompat/limits.h +95 -0
  953. data/lib/extensions/openssl.so/ext/sources/include/wcecompat/malloc.h +59 -0
  954. data/lib/extensions/openssl.so/ext/sources/include/wcecompat/math.h +95 -0
  955. data/lib/extensions/openssl.so/ext/sources/include/wcecompat/memory.h +44 -0
  956. data/lib/extensions/openssl.so/ext/sources/include/wcecompat/process.h +59 -0
  957. data/lib/extensions/openssl.so/ext/sources/include/wcecompat/setjmp.h +69 -0
  958. data/lib/extensions/openssl.so/ext/sources/include/wcecompat/signal.h +53 -0
  959. data/lib/extensions/openssl.so/ext/sources/include/wcecompat/stdarg.h +78 -0
  960. data/lib/extensions/openssl.so/ext/sources/include/wcecompat/stddef.h +88 -0
  961. data/lib/extensions/openssl.so/ext/sources/include/wcecompat/stdio.h +182 -0
  962. data/lib/extensions/openssl.so/ext/sources/include/wcecompat/stdlib.h +142 -0
  963. data/lib/extensions/openssl.so/ext/sources/include/wcecompat/string.h +109 -0
  964. data/lib/extensions/openssl.so/ext/sources/include/wcecompat/strings.h +3 -0
  965. data/lib/extensions/openssl.so/ext/sources/include/wcecompat/sys/locking.h +31 -0
  966. data/lib/extensions/openssl.so/ext/sources/include/wcecompat/sys/stat.h +92 -0
  967. data/lib/extensions/openssl.so/ext/sources/include/wcecompat/sys/time.h +20 -0
  968. data/lib/extensions/openssl.so/ext/sources/include/wcecompat/sys/timeb.h +58 -0
  969. data/lib/extensions/openssl.so/ext/sources/include/wcecompat/sys/types.h +35 -0
  970. data/lib/extensions/openssl.so/ext/sources/include/wcecompat/sys/utime.h +21 -0
  971. data/lib/extensions/openssl.so/ext/sources/include/wcecompat/time.h +81 -0
  972. data/lib/extensions/openssl.so/ext/sources/include/wcecompat/winsock_extras.h +46 -0
  973. data/lib/extensions/openssl.so/ext/sources/ssl/bio_ssl.c +605 -0
  974. data/lib/extensions/openssl.so/ext/sources/ssl/d1_both.c +1591 -0
  975. data/lib/extensions/openssl.so/ext/sources/ssl/d1_clnt.c +1710 -0
  976. data/lib/extensions/openssl.so/ext/sources/ssl/d1_enc.c +289 -0
  977. data/lib/extensions/openssl.so/ext/sources/ssl/d1_lib.c +482 -0
  978. data/lib/extensions/openssl.so/ext/sources/ssl/d1_meth.c +77 -0
  979. data/lib/extensions/openssl.so/ext/sources/ssl/d1_pkt.c +1876 -0
  980. data/lib/extensions/openssl.so/ext/sources/ssl/d1_srtp.c +493 -0
  981. data/lib/extensions/openssl.so/ext/sources/ssl/d1_srvr.c +1711 -0
  982. data/lib/extensions/openssl.so/ext/sources/ssl/dtls1.h +283 -0
  983. data/lib/extensions/openssl.so/ext/sources/ssl/kssl.c +2221 -0
  984. data/lib/extensions/openssl.so/ext/sources/ssl/kssl.h +183 -0
  985. data/lib/extensions/openssl.so/ext/sources/ssl/kssl_lcl.h +87 -0
  986. data/lib/extensions/openssl.so/ext/sources/ssl/s23_clnt.c +779 -0
  987. data/lib/extensions/openssl.so/ext/sources/ssl/s23_lib.c +187 -0
  988. data/lib/extensions/openssl.so/ext/sources/ssl/s23_meth.c +92 -0
  989. data/lib/extensions/openssl.so/ext/sources/ssl/s23_pkt.c +117 -0
  990. data/lib/extensions/openssl.so/ext/sources/ssl/s23_srvr.c +638 -0
  991. data/lib/extensions/openssl.so/ext/sources/ssl/s2_clnt.c +1125 -0
  992. data/lib/extensions/openssl.so/ext/sources/ssl/s2_enc.c +193 -0
  993. data/lib/extensions/openssl.so/ext/sources/ssl/s2_lib.c +556 -0
  994. data/lib/extensions/openssl.so/ext/sources/ssl/s2_meth.c +84 -0
  995. data/lib/extensions/openssl.so/ext/sources/ssl/s2_pkt.c +744 -0
  996. data/lib/extensions/openssl.so/ext/sources/ssl/s2_srvr.c +1142 -0
  997. data/lib/extensions/openssl.so/ext/sources/ssl/s3_both.c +843 -0
  998. data/lib/extensions/openssl.so/ext/sources/ssl/s3_clnt.c +3371 -0
  999. data/lib/extensions/openssl.so/ext/sources/ssl/s3_enc.c +861 -0
  1000. data/lib/extensions/openssl.so/ext/sources/ssl/s3_lib.c +4282 -0
  1001. data/lib/extensions/openssl.so/ext/sources/ssl/s3_meth.c +77 -0
  1002. data/lib/extensions/openssl.so/ext/sources/ssl/s3_pkt.c +1518 -0
  1003. data/lib/extensions/openssl.so/ext/sources/ssl/s3_srvr.c +3586 -0
  1004. data/lib/extensions/openssl.so/ext/sources/ssl/srtp.h +145 -0
  1005. data/lib/extensions/openssl.so/ext/sources/ssl/ssl.h +2573 -0
  1006. data/lib/extensions/openssl.so/ext/sources/ssl/ssl2.h +272 -0
  1007. data/lib/extensions/openssl.so/ext/sources/ssl/ssl23.h +83 -0
  1008. data/lib/extensions/openssl.so/ext/sources/ssl/ssl3.h +678 -0
  1009. data/lib/extensions/openssl.so/ext/sources/ssl/ssl_algs.c +149 -0
  1010. data/lib/extensions/openssl.so/ext/sources/ssl/ssl_asn1.c +642 -0
  1011. data/lib/extensions/openssl.so/ext/sources/ssl/ssl_cert.c +853 -0
  1012. data/lib/extensions/openssl.so/ext/sources/ssl/ssl_ciph.c +1852 -0
  1013. data/lib/extensions/openssl.so/ext/sources/ssl/ssl_err.c +609 -0
  1014. data/lib/extensions/openssl.so/ext/sources/ssl/ssl_err2.c +70 -0
  1015. data/lib/extensions/openssl.so/ext/sources/ssl/ssl_lib.c +3251 -0
  1016. data/lib/extensions/openssl.so/ext/sources/ssl/ssl_locl.h +1134 -0
  1017. data/lib/extensions/openssl.so/ext/sources/ssl/ssl_rsa.c +779 -0
  1018. data/lib/extensions/openssl.so/ext/sources/ssl/ssl_sess.c +1159 -0
  1019. data/lib/extensions/openssl.so/ext/sources/ssl/ssl_stat.c +567 -0
  1020. data/lib/extensions/openssl.so/ext/sources/ssl/ssl_txt.c +248 -0
  1021. data/lib/extensions/openssl.so/ext/sources/ssl/t1_clnt.c +92 -0
  1022. data/lib/extensions/openssl.so/ext/sources/ssl/t1_enc.c +1256 -0
  1023. data/lib/extensions/openssl.so/ext/sources/ssl/t1_lib.c +2578 -0
  1024. data/lib/extensions/openssl.so/ext/sources/ssl/t1_meth.c +88 -0
  1025. data/lib/extensions/openssl.so/ext/sources/ssl/t1_reneg.c +292 -0
  1026. data/lib/extensions/openssl.so/ext/sources/ssl/t1_srvr.c +93 -0
  1027. data/lib/extensions/openssl.so/ext/sources/ssl/tls1.h +735 -0
  1028. data/lib/extensions/openssl.so/ext/sources/ssl/tls_srp.c +506 -0
  1029. data/lib/extensions/openssl.so/ext/win32/UPDATE +15 -0
  1030. data/lib/extensions/openssl.so/ext/win32/bin/libeay32.dll +0 -0
  1031. data/lib/extensions/openssl.so/ext/win32/bin/ssleay32.dll +0 -0
  1032. data/lib/extensions/openssl.so/ext/win32/include/openssl/aes.h +147 -0
  1033. data/lib/extensions/openssl.so/ext/win32/include/openssl/applink.c +94 -0
  1034. data/lib/extensions/openssl.so/ext/win32/include/openssl/asn1.h +1404 -0
  1035. data/lib/extensions/openssl.so/ext/win32/include/openssl/asn1_mac.h +578 -0
  1036. data/lib/extensions/openssl.so/ext/win32/include/openssl/asn1t.h +960 -0
  1037. data/lib/extensions/openssl.so/ext/win32/include/openssl/bio.h +847 -0
  1038. data/lib/extensions/openssl.so/ext/win32/include/openssl/blowfish.h +129 -0
  1039. data/lib/extensions/openssl.so/ext/win32/include/openssl/bn.h +891 -0
  1040. data/lib/extensions/openssl.so/ext/win32/include/openssl/buffer.h +119 -0
  1041. data/lib/extensions/openssl.so/ext/win32/include/openssl/camellia.h +130 -0
  1042. data/lib/extensions/openssl.so/ext/win32/include/openssl/cast.h +107 -0
  1043. data/lib/extensions/openssl.so/ext/win32/include/openssl/cmac.h +82 -0
  1044. data/lib/extensions/openssl.so/ext/win32/include/openssl/cms.h +501 -0
  1045. data/lib/extensions/openssl.so/ext/win32/include/openssl/comp.h +80 -0
  1046. data/lib/extensions/openssl.so/ext/win32/include/openssl/conf.h +263 -0
  1047. data/lib/extensions/openssl.so/ext/win32/include/openssl/conf_api.h +89 -0
  1048. data/lib/extensions/openssl.so/ext/win32/include/openssl/crypto.h +604 -0
  1049. data/lib/extensions/openssl.so/ext/win32/include/openssl/des.h +248 -0
  1050. data/lib/extensions/openssl.so/ext/win32/include/openssl/des_old.h +446 -0
  1051. data/lib/extensions/openssl.so/ext/win32/include/openssl/dh.h +280 -0
  1052. data/lib/extensions/openssl.so/ext/win32/include/openssl/dsa.h +327 -0
  1053. data/lib/extensions/openssl.so/ext/win32/include/openssl/dso.h +409 -0
  1054. data/lib/extensions/openssl.so/ext/win32/include/openssl/dtls1.h +283 -0
  1055. data/lib/extensions/openssl.so/ext/win32/include/openssl/e_os2.h +315 -0
  1056. data/lib/extensions/openssl.so/ext/win32/include/openssl/ebcdic.h +19 -0
  1057. data/lib/extensions/openssl.so/ext/win32/include/openssl/ec.h +1159 -0
  1058. data/lib/extensions/openssl.so/ext/win32/include/openssl/ecdh.h +125 -0
  1059. data/lib/extensions/openssl.so/ext/win32/include/openssl/ecdsa.h +260 -0
  1060. data/lib/extensions/openssl.so/ext/win32/include/openssl/engine.h +842 -0
  1061. data/lib/extensions/openssl.so/ext/win32/include/openssl/err.h +386 -0
  1062. data/lib/extensions/openssl.so/ext/win32/include/openssl/evp.h +1402 -0
  1063. data/lib/extensions/openssl.so/ext/win32/include/openssl/hmac.h +110 -0
  1064. data/lib/extensions/openssl.so/ext/win32/include/openssl/idea.h +103 -0
  1065. data/lib/extensions/openssl.so/ext/win32/include/openssl/krb5_asn.h +256 -0
  1066. data/lib/extensions/openssl.so/ext/win32/include/openssl/kssl.h +183 -0
  1067. data/lib/extensions/openssl.so/ext/win32/include/openssl/lhash.h +241 -0
  1068. data/lib/extensions/openssl.so/ext/win32/include/openssl/md4.h +120 -0
  1069. data/lib/extensions/openssl.so/ext/win32/include/openssl/md5.h +120 -0
  1070. data/lib/extensions/openssl.so/ext/win32/include/openssl/mdc2.h +98 -0
  1071. data/lib/extensions/openssl.so/ext/win32/include/openssl/modes.h +135 -0
  1072. data/lib/extensions/openssl.so/ext/win32/include/openssl/obj_mac.h +4032 -0
  1073. data/lib/extensions/openssl.so/ext/win32/include/openssl/objects.h +1138 -0
  1074. data/lib/extensions/openssl.so/ext/win32/include/openssl/ocsp.h +623 -0
  1075. data/lib/extensions/openssl.so/ext/win32/include/openssl/opensslconf.h +235 -0
  1076. data/lib/extensions/openssl.so/ext/win32/include/openssl/opensslv.h +89 -0
  1077. data/lib/extensions/openssl.so/ext/win32/include/openssl/ossl_typ.h +202 -0
  1078. data/lib/extensions/openssl.so/ext/win32/include/openssl/pem.h +641 -0
  1079. data/lib/extensions/openssl.so/ext/win32/include/openssl/pem2.h +70 -0
  1080. data/lib/extensions/openssl.so/ext/win32/include/openssl/pkcs12.h +331 -0
  1081. data/lib/extensions/openssl.so/ext/win32/include/openssl/pkcs7.h +499 -0
  1082. data/lib/extensions/openssl.so/ext/win32/include/openssl/pqueue.h +94 -0
  1083. data/lib/extensions/openssl.so/ext/win32/include/openssl/rand.h +149 -0
  1084. data/lib/extensions/openssl.so/ext/win32/include/openssl/rc2.h +103 -0
  1085. data/lib/extensions/openssl.so/ext/win32/include/openssl/rc4.h +90 -0
  1086. data/lib/extensions/openssl.so/ext/win32/include/openssl/ripemd.h +107 -0
  1087. data/lib/extensions/openssl.so/ext/win32/include/openssl/rsa.h +582 -0
  1088. data/lib/extensions/openssl.so/ext/win32/include/openssl/safestack.h +2663 -0
  1089. data/lib/extensions/openssl.so/ext/win32/include/openssl/seed.h +139 -0
  1090. data/lib/extensions/openssl.so/ext/win32/include/openssl/sha.h +214 -0
  1091. data/lib/extensions/openssl.so/ext/win32/include/openssl/srp.h +172 -0
  1092. data/lib/extensions/openssl.so/ext/win32/include/openssl/srtp.h +145 -0
  1093. data/lib/extensions/openssl.so/ext/win32/include/openssl/ssl.h +2572 -0
  1094. data/lib/extensions/openssl.so/ext/win32/include/openssl/ssl2.h +272 -0
  1095. data/lib/extensions/openssl.so/ext/win32/include/openssl/ssl23.h +83 -0
  1096. data/lib/extensions/openssl.so/ext/win32/include/openssl/ssl3.h +678 -0
  1097. data/lib/extensions/openssl.so/ext/win32/include/openssl/stack.h +108 -0
  1098. data/lib/extensions/openssl.so/ext/win32/include/openssl/symhacks.h +477 -0
  1099. data/lib/extensions/openssl.so/ext/win32/include/openssl/tls1.h +735 -0
  1100. data/lib/extensions/openssl.so/ext/win32/include/openssl/ts.h +858 -0
  1101. data/lib/extensions/openssl.so/ext/win32/include/openssl/txt_db.h +112 -0
  1102. data/lib/extensions/openssl.so/ext/win32/include/openssl/ui.h +383 -0
  1103. data/lib/extensions/openssl.so/ext/win32/include/openssl/ui_compat.h +83 -0
  1104. data/lib/extensions/openssl.so/ext/win32/include/openssl/whrlpool.h +41 -0
  1105. data/lib/extensions/openssl.so/ext/win32/include/openssl/x509.h +1297 -0
  1106. data/lib/extensions/openssl.so/ext/win32/include/openssl/x509_vfy.h +567 -0
  1107. data/lib/extensions/openssl.so/ext/win32/include/openssl/x509v3.h +1007 -0
  1108. data/lib/extensions/openssl.so/ext/win32/lib/libeay32.lib +0 -0
  1109. data/lib/extensions/openssl.so/ext/win32/lib/ssleay32.lib +0 -0
  1110. data/lib/extensions/openssl.so/ext/wm/lib/libopenssl.lib +0 -0
  1111. data/lib/extensions/openssl.so/ext/wm/openssl.sln +30 -0
  1112. data/lib/extensions/openssl.so/ext/wm/openssl.vcproj +3254 -0
  1113. data/lib/extensions/openssl.so/ext/wm/tmp/MC3000c50b (ARMV4I)/Release/BuildLog.htm +0 -0
  1114. data/lib/extensions/openssl.so/ext/wm/tmp/Windows Mobile 6 Professional SDK (ARMV4I)/Release/BuildLog.htm +0 -0
  1115. data/lib/extensions/openssl.so/openssl.so.rb +1 -0
  1116. data/lib/extensions/openssl/ext.yml +2 -0
  1117. data/lib/extensions/openssl/ext/Rakefile +132 -0
  1118. data/lib/extensions/openssl/ext/android/extconf.h +55 -0
  1119. data/lib/extensions/openssl/ext/build +12 -0
  1120. data/lib/extensions/openssl/ext/build.bat +1 -0
  1121. data/lib/extensions/openssl/ext/extconf.rb +141 -0
  1122. data/lib/extensions/openssl/ext/iphone/Rakefile +79 -0
  1123. data/lib/extensions/openssl/ext/iphone/extconf.h +55 -0
  1124. data/lib/extensions/openssl/ext/iphone/openssl.xcodeproj/project.pbxproj +472 -0
  1125. data/lib/extensions/openssl/ext/iphone/openssl_Prefix.pch +7 -0
  1126. data/lib/extensions/openssl/ext/macosx/extconf.h +53 -0
  1127. data/lib/extensions/openssl/ext/openssl.sln +44 -0
  1128. data/lib/extensions/openssl/ext/openssl.vcproj +844 -0
  1129. data/lib/extensions/openssl/ext/openssl_missing.c +361 -0
  1130. data/lib/extensions/openssl/ext/openssl_missing.h +194 -0
  1131. data/lib/extensions/openssl/ext/ossl.c +514 -0
  1132. data/lib/extensions/openssl/ext/ossl.h +243 -0
  1133. data/lib/extensions/openssl/ext/ossl_asn1.c +1170 -0
  1134. data/lib/extensions/openssl/ext/ossl_asn1.h +59 -0
  1135. data/lib/extensions/openssl/ext/ossl_bio.c +86 -0
  1136. data/lib/extensions/openssl/ext/ossl_bio.h +21 -0
  1137. data/lib/extensions/openssl/ext/ossl_bn.c +852 -0
  1138. data/lib/extensions/openssl/ext/ossl_bn.h +25 -0
  1139. data/lib/extensions/openssl/ext/ossl_cipher.c +546 -0
  1140. data/lib/extensions/openssl/ext/ossl_cipher.h +22 -0
  1141. data/lib/extensions/openssl/ext/ossl_config.c +492 -0
  1142. data/lib/extensions/openssl/ext/ossl_config.h +22 -0
  1143. data/lib/extensions/openssl/ext/ossl_digest.c +257 -0
  1144. data/lib/extensions/openssl/ext/ossl_digest.h +22 -0
  1145. data/lib/extensions/openssl/ext/ossl_engine.c +411 -0
  1146. data/lib/extensions/openssl/ext/ossl_engine.h +20 -0
  1147. data/lib/extensions/openssl/ext/ossl_hmac.c +270 -0
  1148. data/lib/extensions/openssl/ext/ossl_hmac.h +19 -0
  1149. data/lib/extensions/openssl/ext/ossl_ns_spki.c +257 -0
  1150. data/lib/extensions/openssl/ext/ossl_ns_spki.h +21 -0
  1151. data/lib/extensions/openssl/ext/ossl_ocsp.c +773 -0
  1152. data/lib/extensions/openssl/ext/ossl_ocsp.h +24 -0
  1153. data/lib/extensions/openssl/ext/ossl_pkcs12.c +212 -0
  1154. data/lib/extensions/openssl/ext/ossl_pkcs12.h +15 -0
  1155. data/lib/extensions/openssl/ext/ossl_pkcs5.c +98 -0
  1156. data/lib/extensions/openssl/ext/ossl_pkcs5.h +6 -0
  1157. data/lib/extensions/openssl/ext/ossl_pkcs7.c +1041 -0
  1158. data/lib/extensions/openssl/ext/ossl_pkcs7.h +22 -0
  1159. data/lib/extensions/openssl/ext/ossl_pkey.c +240 -0
  1160. data/lib/extensions/openssl/ext/ossl_pkey.h +141 -0
  1161. data/lib/extensions/openssl/ext/ossl_pkey_dh.c +536 -0
  1162. data/lib/extensions/openssl/ext/ossl_pkey_dsa.c +492 -0
  1163. data/lib/extensions/openssl/ext/ossl_pkey_ec.c +1597 -0
  1164. data/lib/extensions/openssl/ext/ossl_pkey_rsa.c +601 -0
  1165. data/lib/extensions/openssl/ext/ossl_rand.c +202 -0
  1166. data/lib/extensions/openssl/ext/ossl_rand.h +20 -0
  1167. data/lib/extensions/openssl/ext/ossl_ssl.c +1691 -0
  1168. data/lib/extensions/openssl/ext/ossl_ssl.h +36 -0
  1169. data/lib/extensions/openssl/ext/ossl_ssl_session.c +306 -0
  1170. data/lib/extensions/openssl/ext/ossl_version.h +16 -0
  1171. data/lib/extensions/openssl/ext/ossl_x509.c +104 -0
  1172. data/lib/extensions/openssl/ext/ossl_x509.h +114 -0
  1173. data/lib/extensions/openssl/ext/ossl_x509attr.c +275 -0
  1174. data/lib/extensions/openssl/ext/ossl_x509cert.c +766 -0
  1175. data/lib/extensions/openssl/ext/ossl_x509crl.c +537 -0
  1176. data/lib/extensions/openssl/ext/ossl_x509ext.c +459 -0
  1177. data/lib/extensions/openssl/ext/ossl_x509name.c +375 -0
  1178. data/lib/extensions/openssl/ext/ossl_x509req.c +468 -0
  1179. data/lib/extensions/openssl/ext/ossl_x509revoked.c +229 -0
  1180. data/lib/extensions/openssl/ext/ossl_x509store.c +624 -0
  1181. data/lib/extensions/openssl/ext/ruby_missing.h +41 -0
  1182. data/lib/extensions/openssl/ext/windows/extconf.h +66 -0
  1183. data/lib/extensions/openssl/openssl.rb +24 -0
  1184. data/lib/extensions/openssl/openssl/bn.rb +35 -0
  1185. data/lib/extensions/openssl/openssl/buffering.rb +341 -0
  1186. data/lib/extensions/openssl/openssl/cipher.rb +65 -0
  1187. data/lib/extensions/openssl/openssl/digest.rb +61 -0
  1188. data/lib/extensions/openssl/openssl/ssl-internal.rb +178 -0
  1189. data/lib/extensions/openssl/openssl/ssl.rb +1 -0
  1190. data/lib/extensions/openssl/openssl/x509-internal.rb +153 -0
  1191. data/lib/extensions/openssl/openssl/x509.rb +1 -0
  1192. data/lib/extensions/rhoxml/rexml/xmldecl.rb +119 -0
  1193. data/lib/extensions/zlib/ext.yml +2 -0
  1194. data/lib/extensions/zlib/ext/README +115 -0
  1195. data/lib/extensions/zlib/ext/Rakefile +127 -0
  1196. data/lib/extensions/zlib/ext/adler32.c +179 -0
  1197. data/lib/extensions/zlib/ext/build +12 -0
  1198. data/lib/extensions/zlib/ext/build.bat +1 -0
  1199. data/lib/extensions/zlib/ext/compress.c +80 -0
  1200. data/lib/extensions/zlib/ext/crc32.c +425 -0
  1201. data/lib/extensions/zlib/ext/crc32.h +441 -0
  1202. data/lib/extensions/zlib/ext/deflate.c +1965 -0
  1203. data/lib/extensions/zlib/ext/deflate.h +346 -0
  1204. data/lib/extensions/zlib/ext/gzclose.c +25 -0
  1205. data/lib/extensions/zlib/ext/gzguts.h +193 -0
  1206. data/lib/extensions/zlib/ext/gzlib.c +620 -0
  1207. data/lib/extensions/zlib/ext/gzread.c +589 -0
  1208. data/lib/extensions/zlib/ext/gzwrite.c +565 -0
  1209. data/lib/extensions/zlib/ext/infback.c +640 -0
  1210. data/lib/extensions/zlib/ext/inffast.c +340 -0
  1211. data/lib/extensions/zlib/ext/inffast.h +11 -0
  1212. data/lib/extensions/zlib/ext/inffixed.h +94 -0
  1213. data/lib/extensions/zlib/ext/inflate.c +1496 -0
  1214. data/lib/extensions/zlib/ext/inflate.h +122 -0
  1215. data/lib/extensions/zlib/ext/inftrees.c +306 -0
  1216. data/lib/extensions/zlib/ext/inftrees.h +62 -0
  1217. data/lib/extensions/zlib/ext/iphone/Rakefile +79 -0
  1218. data/lib/extensions/zlib/ext/iphone/zlib.xcodeproj/project.pbxproj +360 -0
  1219. data/lib/extensions/zlib/ext/iphone/zlib_Prefix.pch +7 -0
  1220. data/lib/extensions/zlib/ext/trees.c +1224 -0
  1221. data/lib/extensions/zlib/ext/trees.h +128 -0
  1222. data/lib/extensions/zlib/ext/uncompr.c +59 -0
  1223. data/lib/extensions/zlib/ext/zconf.h +506 -0
  1224. data/lib/extensions/zlib/ext/zlib.c +3762 -0
  1225. data/lib/extensions/zlib/ext/zlib.h +1744 -0
  1226. data/lib/extensions/zlib/ext/zlib.sln +36 -0
  1227. data/lib/extensions/zlib/ext/zlib.vcproj +746 -0
  1228. data/lib/extensions/zlib/ext/zlib.vsprops +16 -0
  1229. data/lib/extensions/zlib/ext/zutil.c +324 -0
  1230. data/lib/extensions/zlib/ext/zutil.h +252 -0
  1231. data/lib/extensions/zlib/zlib.rb +0 -0
  1232. data/lib/framework/rbconfig.rb +1 -1
  1233. data/lib/framework/rho/render.rb +31 -34
  1234. data/lib/framework/rho/rho.rb +89 -24
  1235. data/lib/framework/rho/rhocontroller.rb +8 -5
  1236. data/lib/framework/rho/rhofsconnector.rb +3 -0
  1237. data/lib/framework/rhodes.rb +9 -9
  1238. data/lib/framework/rhom/rhom.rb +15 -0
  1239. data/lib/framework/rhom/rhom_db_adapter.rb +18 -0
  1240. data/lib/framework/rhom/rhom_object_factory.rb +36 -26
  1241. data/lib/framework/rhomotoapi.rb +65 -1
  1242. data/lib/framework/rhosystem.rb +23 -19
  1243. data/lib/framework/version.rb +7 -7
  1244. data/lib/rhodes.rb +9 -9
  1245. data/platform/android/Rhodes/AndroidManifest.xml +117 -117
  1246. data/platform/android/Rhodes/AndroidManifest.xml.erb +77 -0
  1247. data/platform/android/Rhodes/PushReceiver.erb +14 -0
  1248. data/platform/android/Rhodes/jni/Android.mk +3 -1
  1249. data/platform/android/Rhodes/jni/include/rhodes/jni/com_rhomobile_rhodes_Logger.h +16 -0
  1250. data/platform/android/Rhodes/jni/include/rhodes/jni/com_rhomobile_rhodes_RhodesService.h +8 -0
  1251. data/platform/android/Rhodes/jni/src/fileapi.cpp +18 -0
  1252. data/platform/android/Rhodes/jni/src/logger.cpp +16 -0
  1253. data/platform/android/Rhodes/jni/src/rhodesapp.cpp +9 -2
  1254. data/platform/android/Rhodes/jni/src/signature.cpp +3 -28
  1255. data/platform/android/Rhodes/src/com/rhomobile/rhodes/BaseActivity.java +41 -37
  1256. data/platform/android/Rhodes/src/com/rhomobile/rhodes/Logger.java +5 -5
  1257. data/platform/android/Rhodes/src/com/rhomobile/rhodes/PushReceiver.java +6 -2
  1258. data/platform/android/Rhodes/src/com/rhomobile/rhodes/RhodesActivity.java +38 -15
  1259. data/platform/android/Rhodes/src/com/rhomobile/rhodes/RhodesApplication.java +49 -9
  1260. data/platform/android/Rhodes/src/com/rhomobile/rhodes/RhodesService.java +130 -10
  1261. data/platform/android/Rhodes/src/com/rhomobile/rhodes/bluetooth/RhoBluetoothManagerNew.java +13 -1
  1262. data/platform/android/Rhodes/src/com/rhomobile/rhodes/camera/Camera.java +8 -6
  1263. data/platform/android/Rhodes/src/com/rhomobile/rhodes/camera/CameraNewService.java +20 -0
  1264. data/platform/android/Rhodes/src/com/rhomobile/rhodes/camera/CameraOldService.java +5 -0
  1265. data/platform/android/Rhodes/src/com/rhomobile/rhodes/camera/CameraSemiService.java +14 -0
  1266. data/platform/android/Rhodes/src/com/rhomobile/rhodes/camera/CameraService.java +2 -0
  1267. data/platform/android/Rhodes/src/com/rhomobile/rhodes/camera/ImageCapture.java +16 -13
  1268. data/platform/android/Rhodes/src/com/rhomobile/rhodes/extmanager/AbstractRhoExtension.java +1 -1
  1269. data/platform/android/Rhodes/src/com/rhomobile/rhodes/extmanager/Config.java +3 -0
  1270. data/platform/android/Rhodes/src/com/rhomobile/rhodes/extmanager/IRhoExtManager.java +1 -1
  1271. data/platform/android/Rhodes/src/com/rhomobile/rhodes/extmanager/IRhoExtension.java +3 -1
  1272. data/platform/android/Rhodes/src/com/rhomobile/rhodes/extmanager/RhoExtManager.java +10 -0
  1273. data/platform/android/Rhodes/src/com/rhomobile/rhodes/extmanager/RhoExtManagerImpl.java +23 -35
  1274. data/platform/android/Rhodes/src/com/rhomobile/rhodes/file/RhoFileApi.java +10 -0
  1275. data/platform/android/Rhodes/src/com/rhomobile/rhodes/mainview/SplashScreen.java +60 -34
  1276. data/platform/android/Rhodes/src/com/rhomobile/rhodes/osfunctionality/AndroidFunctionality.java +14 -1
  1277. data/platform/android/Rhodes/src/com/rhomobile/rhodes/osfunctionality/AndroidFunctionality01.java +38 -3
  1278. data/platform/android/Rhodes/src/com/rhomobile/rhodes/osfunctionality/AndroidFunctionality08.java +26 -4
  1279. data/platform/android/Rhodes/src/com/rhomobile/rhodes/osfunctionality/AndroidFunctionality11.java +47 -0
  1280. data/platform/android/Rhodes/src/com/rhomobile/rhodes/osfunctionality/AndroidFunctionalityManager.java +4 -1
  1281. data/platform/android/Rhodes/src/com/rhomobile/rhodes/socket/RhoSocketImpl.java +9 -1
  1282. data/platform/android/Rhodes/src/com/rhomobile/rhodes/webview/GoogleWebView.java +10 -0
  1283. data/platform/android/Rhodes/src/com/rhomobile/rhodes/webview/IRhoWebView.java +2 -0
  1284. data/platform/android/Rhodes/src/com/rhomobile/rhodes/webview/RhoWebViewClient.java +10 -3
  1285. data/platform/android/build/RhodesSRC_build.files +1 -1
  1286. data/platform/android/build/android.rake +567 -556
  1287. data/platform/android/build/android_tools.rb +87 -0
  1288. data/platform/android/build/librhocommon_build.files +3 -0
  1289. data/platform/android/build/librhodb_build.files +2 -0
  1290. data/platform/android/build/manifest_generator.rb +96 -0
  1291. data/platform/bb/Hsqldb/src/org/hsqldb/Expression.java +2 -4
  1292. data/platform/bb/RubyVM/src/com/rho/RhoProfiler.java +11 -0
  1293. data/platform/bb/RubyVM/src/com/xruby/runtime/lang/RhoSupport.java +61 -48
  1294. data/platform/bb/build/rhodes_build.files +0 -1
  1295. data/platform/bb/rhodes/platform/4.7/com/rho/rubyext/SignatureCapture.java +314 -0
  1296. data/platform/bb/rhodes/platform/common/com/rho/rubyext/SignatureCapture.java +312 -0
  1297. data/platform/bb/rhodes/src/rhomobile/RhodesApplication.java +4 -1
  1298. data/platform/iphone/Classes/AppManager/AppManager.h +1 -0
  1299. data/platform/iphone/Classes/AppManager/AppManager.m +165 -123
  1300. data/platform/iphone/Classes/Event/Event.m +53 -14
  1301. data/platform/iphone/Classes/Rhodes.h +5 -4
  1302. data/platform/iphone/Classes/Rhodes.m +10 -8
  1303. data/platform/iphone/Classes/Signature/SignatureDelegate.m +2 -2
  1304. data/platform/iphone/Classes/SimpleMainView.m +55 -17
  1305. data/platform/iphone/Classes/SplashViewController.m +28 -1
  1306. data/platform/iphone/Info.plist +59 -54
  1307. data/platform/iphone/RhoLib/RhoLib.xcodeproj/project.pbxproj +43 -14
  1308. data/platform/iphone/curl/curl.xcodeproj/project.pbxproj +15 -18
  1309. data/platform/iphone/rbuild/iphone.rake +113 -4
  1310. data/platform/iphone/rhoextlib/rhoextlib.xcodeproj/project.pbxproj +15 -17
  1311. data/platform/iphone/rhorubylib/rhorubylib.xcodeproj/project.pbxproj +6 -14
  1312. data/platform/iphone/rhorunner.xcodeproj/project.pbxproj +20 -23
  1313. data/platform/iphone/rhosynclib/rhosynclib.xcodeproj/project.pbxproj +22 -14
  1314. data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/Frameworks/QtCore.framework/Versions/4/QtCore +0 -0
  1315. data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/Frameworks/QtGui.framework/Versions/4/QtGui +0 -0
  1316. data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/Frameworks/QtNetwork.framework/Versions/4/QtNetwork +0 -0
  1317. data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/Frameworks/QtWebKit.framework/Versions/4/QtWebKit +0 -0
  1318. data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/Info.plist +1 -1
  1319. data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/MacOS/RhoSimulator +0 -0
  1320. data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/PlugIns/accessible/libqtaccessiblewidgets.dylib +0 -0
  1321. data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/PlugIns/bearer/libqcorewlanbearer.dylib +0 -0
  1322. data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/PlugIns/bearer/libqgenericbearer.dylib +0 -0
  1323. data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/PlugIns/codecs/libqcncodecs.dylib +0 -0
  1324. data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/PlugIns/codecs/libqjpcodecs.dylib +0 -0
  1325. data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/PlugIns/codecs/libqkrcodecs.dylib +0 -0
  1326. data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/PlugIns/codecs/libqtwcodecs.dylib +0 -0
  1327. data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/PlugIns/graphicssystems/libqtracegraphicssystem.dylib +0 -0
  1328. data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/PlugIns/imageformats/libqgif.dylib +0 -0
  1329. data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/PlugIns/imageformats/libqico.dylib +0 -0
  1330. data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/PlugIns/imageformats/libqjpeg.dylib +0 -0
  1331. data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/PlugIns/imageformats/libqmng.dylib +0 -0
  1332. data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/PlugIns/imageformats/libqtga.dylib +0 -0
  1333. data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/PlugIns/imageformats/libqtiff.dylib +0 -0
  1334. data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/PlugIns/qmltooling/libqmldbg_inspector.dylib +0 -0
  1335. data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/PlugIns/qmltooling/libqmldbg_tcp.dylib +0 -0
  1336. data/platform/osx/build/osx.rake +18 -9
  1337. data/platform/shared/RhoConnectClient/RhoConnectClient.cpp +12 -0
  1338. data/platform/shared/RhoConnectClient/RhoConnectClient.h +3 -0
  1339. data/platform/shared/common/Android.mk +1 -0
  1340. data/platform/shared/common/BundleManager.cpp +503 -47
  1341. data/platform/shared/common/ExtManager.h +4 -0
  1342. data/platform/shared/common/RhoSettingsDefs.h +3 -0
  1343. data/platform/shared/common/RhoStd.h +14 -1
  1344. data/platform/shared/common/RhodesApp.cpp +84 -137
  1345. data/platform/shared/common/RhodesApp.h +12 -7
  1346. data/platform/shared/common/RhodesAppBase.cpp +124 -2
  1347. data/platform/shared/common/RhodesAppBase.h +43 -2
  1348. data/platform/shared/common/ThreadQueue.cpp +1 -1
  1349. data/platform/shared/common/app_build_capabilities.h +0 -7
  1350. data/platform/shared/common/map/MapEngine.h +1 -0
  1351. data/platform/shared/common/push/IRhoPushClient.h +46 -0
  1352. data/platform/shared/common/push/RhoPushManager.cpp +146 -0
  1353. data/platform/shared/common/push/RhoPushManager.h +79 -0
  1354. data/platform/shared/curl/lib/curl_config.h +8 -0
  1355. data/platform/shared/curl/lib/netrc.c +2 -0
  1356. data/platform/shared/db/Android.mk +4 -1
  1357. data/platform/shared/db/DBAdapter.cpp +218 -12
  1358. data/platform/shared/db/DBAdapter.h +16 -1
  1359. data/platform/shared/db/DBAttrManager.cpp +18 -1
  1360. data/platform/shared/db/DBAttrManager.h +2 -1
  1361. data/platform/shared/db/DBImportTransaction.cpp +300 -0
  1362. data/platform/shared/db/DBImportTransaction.h +56 -0
  1363. data/platform/shared/db/DBRequestHelper.cpp +114 -0
  1364. data/platform/shared/db/DBRequestHelper.h +27 -0
  1365. data/platform/shared/logging/RhoLogConf.h +2 -0
  1366. data/platform/shared/net/AsyncHttp.cpp +4 -3
  1367. data/platform/shared/net/AsyncHttp.h +3 -2
  1368. data/platform/shared/net/CURLNetRequest.cpp +18 -5
  1369. data/platform/shared/net/HttpServer.cpp +18 -14
  1370. data/platform/shared/qt/rhodes/MainWindowCallback.h +0 -1
  1371. data/platform/shared/qt/rhodes/QtMainWindow.cpp +180 -36
  1372. data/platform/shared/qt/rhodes/QtMainWindow.h +13 -1
  1373. data/platform/shared/qt/rhodes/QtMainWindow.ui +22 -3
  1374. data/platform/shared/qt/rhodes/RhoSimulator.h +3 -0
  1375. data/platform/shared/qt/rhodes/impl/MainWindowImpl.cpp +22 -0
  1376. data/platform/shared/qt/rhodes/impl/MainWindowImpl.h +6 -0
  1377. data/platform/shared/qt/rhodes/impl/SystemImpl.cpp +15 -0
  1378. data/platform/shared/qt/rhodes/main.cpp +15 -1
  1379. data/platform/shared/qt/rholib/rholib.pro +8 -2
  1380. data/platform/shared/qt/syncengine/syncengine.pro +6 -2
  1381. data/platform/shared/ruby/ext/rho/extensions.c +2 -0
  1382. data/platform/shared/ruby/ext/rho/rhoruby.c +12 -0
  1383. data/platform/shared/ruby/ext/rho/rhoruby.h +2 -0
  1384. data/platform/shared/ruby/ext/rho/rhosupport.c +77 -38
  1385. data/platform/shared/ruby/ext/sqlite3_api/sqlite3_api_wrap.c +54 -2
  1386. data/platform/shared/ruby/ext/syncengine/syncengine.i +4 -0
  1387. data/platform/shared/ruby/ext/syncengine/syncengine_wrap.c +40 -1
  1388. data/platform/shared/ruby/ext/system/system.i +38 -4
  1389. data/platform/shared/ruby/ext/system/system_wrap.c +277 -9
  1390. data/platform/shared/ruby/iphone/ruby/config.h +28 -0
  1391. data/platform/shared/ruby/main.c +8 -0
  1392. data/platform/shared/ruby/wince/sys/timeb.c +4 -0
  1393. data/platform/shared/ruby/wince/sys/timeb.h +1 -0
  1394. data/platform/shared/rubyext/Android.mk +2 -1
  1395. data/platform/shared/rubyext/System.cpp +93 -3
  1396. data/platform/shared/rubyext/ZipFiles.cpp +65 -0
  1397. data/platform/shared/statistic/RhoProfiler.cpp +36 -6
  1398. data/platform/shared/statistic/RhoProfiler.h +3 -0
  1399. data/platform/shared/sync/ClientRegister.cpp +21 -5
  1400. data/platform/shared/sync/ClientRegister.h +4 -2
  1401. data/platform/shared/sync/ISyncProtocol.h +5 -2
  1402. data/platform/shared/sync/SyncEngine.cpp +85 -15
  1403. data/platform/shared/sync/SyncEngine.h +5 -0
  1404. data/platform/shared/sync/SyncNotify.cpp +3 -0
  1405. data/platform/shared/sync/SyncProtocol_3.h +14 -2
  1406. data/platform/shared/sync/SyncSource.cpp +238 -40
  1407. data/platform/shared/sync/SyncSource.h +2 -0
  1408. data/platform/shared/sync/SyncThread.cpp +7 -0
  1409. data/platform/shared/sync/SyncThread.h +1 -0
  1410. data/platform/shared/tcmalloc/rhomem.h +1 -1
  1411. data/platform/shared/tcmalloc/windows/port.cpp +1 -1
  1412. data/platform/shared/unzip/Android.mk +1 -1
  1413. data/platform/shared/unzip/zip.cpp +2953 -0
  1414. data/platform/shared/unzip/zip.h +255 -0
  1415. data/platform/win32/RhoSimulator/QtCore4.dll +0 -0
  1416. data/platform/win32/RhoSimulator/QtGui4.dll +0 -0
  1417. data/platform/win32/RhoSimulator/QtNetwork4.dll +0 -0
  1418. data/platform/win32/RhoSimulator/QtWebKit4.dll +0 -0
  1419. data/platform/win32/RhoSimulator/RhoSimulator.exe +0 -0
  1420. data/platform/win32/RhoSimulator/imageformats/qgif4.dll +0 -0
  1421. data/platform/win32/RhoSimulator/imageformats/qico4.dll +0 -0
  1422. data/platform/win32/RhoSimulator/imageformats/qjpeg4.dll +0 -0
  1423. data/platform/win32/RhoSimulator/imageformats/qmng4.dll +0 -0
  1424. data/platform/win32/RhoSimulator/imageformats/qsvg4.dll +0 -0
  1425. data/platform/win32/RhoSimulator/imageformats/qtiff4.dll +0 -0
  1426. data/platform/win32/RhoSimulator/phonon4.dll +0 -0
  1427. data/platform/win32/RubyWin/RubyWin.sln +2 -2
  1428. data/platform/win32/RubyWin/RubyWin.vcproj +6 -7
  1429. data/platform/wm/RhoLib/RhoLib.vcproj +33 -3
  1430. data/platform/wm/build/rhodes.nsi +64 -230
  1431. data/platform/wm/build/wm.rake +306 -93
  1432. data/platform/wm/rhodes.sln +70 -21
  1433. data/platform/wm/rhodes/DateTimePicker.h +1 -1
  1434. data/platform/wm/rhodes/IEBrowserEngine.cpp +4 -1
  1435. data/platform/wm/rhodes/MainWindow.cpp +8 -7
  1436. data/platform/wm/rhodes/MainWindow.h +1 -1
  1437. data/platform/wm/rhodes/RhoNativeViewManager.cpp +2 -2
  1438. data/platform/wm/rhodes/Rhodes.cpp +80 -30
  1439. data/platform/wm/rhodes/camera/Camera.cpp +44 -65
  1440. data/platform/wm/rhodes/camera/Camera.h +6 -0
  1441. data/platform/wm/rhodes/rho/common/ExtManager.cpp +29 -6
  1442. data/platform/wm/rhodes/rho/common/RhoClassFactory.cpp +6 -1
  1443. data/platform/wm/rhodes/rho/net/NetRequestImpl.cpp +3 -0
  1444. data/platform/wm/rhodes/rho/net/NetRequestImpl.h +1 -1
  1445. data/platform/wm/rhodes/rho/rubyext/NativeToolbarExt.cpp +5 -5
  1446. data/platform/wm/rhodes/rho/rubyext/SystemImpl.cpp +188 -29
  1447. data/platform/wm/rhodes/rho/rubyext/WebView.cpp +3 -3
  1448. data/platform/wm/rhodes/rhodes.vcproj +2284 -148
  1449. data/platform/wm/rhodes/simulator/MainWindowQt.cpp +48 -10
  1450. data/platform/wm/rhodes/simulator/MainWindowQt.h +6 -2
  1451. data/platform/wm/rhoelements.sln +122 -0
  1452. data/platform/wm/rubylib/rubylib.vcproj +4 -2
  1453. data/platform/wm/sqlite3/sqlite3.vcproj +4 -2
  1454. data/platform/wm/syncengine/syncengine.vcproj +20 -2
  1455. data/platform/wm/tcmalloc/tcmalloc.vcproj +160 -0
  1456. data/platform/wp7/RhoRubyLib/rubyext/RhoSyncEngine.cs +4 -0
  1457. data/platform/wp7/RhoRubyLib/rubyext/RhoSystem.cs +4 -0
  1458. data/rakefile.rb +173 -17
  1459. data/res/build-tools/license_rc.dll +0 -0
  1460. data/res/build-tools/win32/license_rc.dll +0 -0
  1461. data/res/generators/templates/application/app/layout.erb +7 -3
  1462. data/res/generators/templates/application/public/css/re_webkit.css +1 -1
  1463. data/res/generators/templates/application/public/css/re_webkit_flat.css +753 -0
  1464. data/res/generators/templates/extension/extensions/montana/ext/montana/platform/iphone/Montana.xcodeproj/project.pbxproj +4 -10
  1465. data/spec/framework_spec/app/spec/core/file/new_spec.rb +2 -2
  1466. data/spec/framework_spec/app/spec/core/file/open_spec.rb +6 -6
  1467. data/spec/framework_spec/app/spec/core/file/shared/open.rb +1 -1
  1468. data/spec/framework_spec/app/spec/core/file/shared/stat.rb +2 -2
  1469. data/spec/framework_spec/app/spec/core/file/stat/blksize_spec.rb +1 -1
  1470. data/spec/framework_spec/app/spec/core/file/stat/blocks_spec.rb +1 -1
  1471. data/spec/framework_spec/app/spec/core/file/stat/comparison_spec.rb +1 -1
  1472. data/spec/framework_spec/app/spec/core/file/stat/ino_spec.rb +1 -1
  1473. data/spec/framework_spec/app/spec/core/file/stat/inspect_spec.rb +1 -1
  1474. data/spec/framework_spec/app/spec/core/file/stat/mode_spec.rb +1 -1
  1475. data/spec/framework_spec/app/spec/core/file/stat/nlink_spec.rb +1 -1
  1476. data/spec/framework_spec/app/spec/core/file/stat_spec.rb +1 -1
  1477. data/spec/framework_spec/app/spec/core/file/sticky_spec.rb +2 -2
  1478. data/spec/framework_spec/app/spec/core/io/close_read_spec.rb +1 -1
  1479. data/spec/framework_spec/app/spec/core/io/close_write_spec.rb +1 -1
  1480. data/spec/framework_spec/app/spec/core/io/foreach_spec.rb +8 -8
  1481. data/spec/framework_spec/app/spec/core/io/getc_spec.rb +1 -1
  1482. data/spec/framework_spec/app/spec/core/io/gets_spec.rb +1 -1
  1483. data/spec/framework_spec/app/spec/core/io/stat_spec.rb +1 -1
  1484. data/spec/framework_spec/app/spec/core/kernel/respond_to_spec.rb +1 -1
  1485. data/spec/framework_spec/app/spec/core/time/shared/gmt_offset.rb +1 -1
  1486. data/spec/framework_spec/app/spec/library/digest/hmac_spec.rb +91 -0
  1487. data/spec/framework_spec/app/spec/library/digest/md5/file_spec.rb +1 -1
  1488. data/spec/framework_spec/app/spec/library/digest/sha256/append_spec.rb +7 -0
  1489. data/spec/framework_spec/app/spec/library/digest/sha256/block_length_spec.rb +12 -0
  1490. data/spec/framework_spec/app/spec/library/digest/sha256/digest_bang_spec.rb +13 -0
  1491. data/spec/framework_spec/app/spec/library/digest/sha256/digest_length_spec.rb +12 -0
  1492. data/spec/framework_spec/app/spec/library/digest/sha256/digest_spec.rb +32 -0
  1493. data/spec/framework_spec/app/spec/library/digest/sha256/equal_spec.rb +37 -0
  1494. data/spec/framework_spec/app/spec/library/digest/sha256/file_spec.rb +47 -0
  1495. data/spec/framework_spec/app/spec/library/digest/sha256/hexdigest_bang_spec.rb +14 -0
  1496. data/spec/framework_spec/app/spec/library/digest/sha256/hexdigest_spec.rb +32 -0
  1497. data/spec/framework_spec/app/spec/library/digest/sha256/inspect_spec.rb +12 -0
  1498. data/spec/framework_spec/app/spec/library/digest/sha256/length_spec.rb +8 -0
  1499. data/spec/framework_spec/app/spec/library/digest/sha256/reset_spec.rb +15 -0
  1500. data/spec/framework_spec/app/spec/library/digest/sha256/shared/constants.rb +15 -0
  1501. data/spec/framework_spec/app/spec/library/digest/sha256/shared/length.rb +8 -0
  1502. data/spec/framework_spec/app/spec/library/digest/sha256/shared/update.rb +7 -0
  1503. data/spec/framework_spec/app/spec/library/digest/sha256/size_spec.rb +8 -0
  1504. data/spec/framework_spec/app/spec/library/digest/sha256/to_s_spec.rb +21 -0
  1505. data/spec/framework_spec/app/spec/library/digest/sha256/update_spec.rb +7 -0
  1506. data/spec/framework_spec/app/spec/library/digest/sha384/append_spec.rb +7 -0
  1507. data/spec/framework_spec/app/spec/library/digest/sha384/block_length_spec.rb +12 -0
  1508. data/spec/framework_spec/app/spec/library/digest/sha384/digest_bang_spec.rb +13 -0
  1509. data/spec/framework_spec/app/spec/library/digest/sha384/digest_length_spec.rb +12 -0
  1510. data/spec/framework_spec/app/spec/library/digest/sha384/digest_spec.rb +32 -0
  1511. data/spec/framework_spec/app/spec/library/digest/sha384/equal_spec.rb +37 -0
  1512. data/spec/framework_spec/app/spec/library/digest/sha384/file_spec.rb +47 -0
  1513. data/spec/framework_spec/app/spec/library/digest/sha384/hexdigest_bang_spec.rb +14 -0
  1514. data/spec/framework_spec/app/spec/library/digest/sha384/hexdigest_spec.rb +32 -0
  1515. data/spec/framework_spec/app/spec/library/digest/sha384/inspect_spec.rb +12 -0
  1516. data/spec/framework_spec/app/spec/library/digest/sha384/length_spec.rb +8 -0
  1517. data/spec/framework_spec/app/spec/library/digest/sha384/reset_spec.rb +15 -0
  1518. data/spec/framework_spec/app/spec/library/digest/sha384/shared/constants.rb +16 -0
  1519. data/spec/framework_spec/app/spec/library/digest/sha384/shared/length.rb +8 -0
  1520. data/spec/framework_spec/app/spec/library/digest/sha384/shared/update.rb +7 -0
  1521. data/spec/framework_spec/app/spec/library/digest/sha384/size_spec.rb +8 -0
  1522. data/spec/framework_spec/app/spec/library/digest/sha384/to_s_spec.rb +21 -0
  1523. data/spec/framework_spec/app/spec/library/digest/sha384/update_spec.rb +7 -0
  1524. data/spec/framework_spec/app/spec/library/digest/sha512/append_spec.rb +7 -0
  1525. data/spec/framework_spec/app/spec/library/digest/sha512/block_length_spec.rb +12 -0
  1526. data/spec/framework_spec/app/spec/library/digest/sha512/digest_bang_spec.rb +13 -0
  1527. data/spec/framework_spec/app/spec/library/digest/sha512/digest_length_spec.rb +12 -0
  1528. data/spec/framework_spec/app/spec/library/digest/sha512/digest_spec.rb +32 -0
  1529. data/spec/framework_spec/app/spec/library/digest/sha512/equal_spec.rb +37 -0
  1530. data/spec/framework_spec/app/spec/library/digest/sha512/file_spec.rb +47 -0
  1531. data/spec/framework_spec/app/spec/library/digest/sha512/hexdigest_bang_spec.rb +14 -0
  1532. data/spec/framework_spec/app/spec/library/digest/sha512/hexdigest_spec.rb +32 -0
  1533. data/spec/framework_spec/app/spec/library/digest/sha512/inspect_spec.rb +12 -0
  1534. data/spec/framework_spec/app/spec/library/digest/sha512/length_spec.rb +8 -0
  1535. data/spec/framework_spec/app/spec/library/digest/sha512/reset_spec.rb +15 -0
  1536. data/spec/framework_spec/app/spec/library/digest/sha512/shared/constants.rb +15 -0
  1537. data/spec/framework_spec/app/spec/library/digest/sha512/shared/length.rb +8 -0
  1538. data/spec/framework_spec/app/spec/library/digest/sha512/shared/update.rb +7 -0
  1539. data/spec/framework_spec/app/spec/library/digest/sha512/size_spec.rb +8 -0
  1540. data/spec/framework_spec/app/spec/library/digest/sha512/to_s_spec.rb +21 -0
  1541. data/spec/framework_spec/app/spec/library/digest/sha512/update_spec.rb +7 -0
  1542. data/spec/framework_spec/app/spec/library/ezcrypto/ezcrypto_spec.rb +13 -0
  1543. data/spec/framework_spec/app/spec/library/net/ftp/nlst_spec.rb +1 -1
  1544. data/spec/framework_spec/app/spec/library/net/ftp/retrbinary_spec.rb +1 -1
  1545. data/spec/framework_spec/app/spec/library/net/ftp/retrlines_spec.rb +1 -1
  1546. data/spec/framework_spec/app/spec/library/net/ftp/shared/getbinaryfile.rb +1 -1
  1547. data/spec/framework_spec/app/spec/library/net/ftp/shared/gettextfile.rb +1 -1
  1548. data/spec/framework_spec/app/spec/library/net/ftp/shared/list.rb +1 -1
  1549. data/spec/framework_spec/app/spec/library/net/ftp/shared/putbinaryfile.rb +1 -1
  1550. data/spec/framework_spec/app/spec/library/net/ftp/shared/puttextfile.rb +1 -1
  1551. data/spec/framework_spec/app/spec/library/net/ftp/storbinary_spec.rb +1 -1
  1552. data/spec/framework_spec/app/spec/library/net/ftp/storlines_spec.rb +1 -1
  1553. data/spec/framework_spec/app/spec/library/openssl/cipher_spec.rb +19 -0
  1554. data/spec/framework_spec/app/spec/library/openssl/config/freeze_spec.rb +21 -0
  1555. data/spec/framework_spec/app/spec/library/openssl/hmac/digest_spec.rb +18 -0
  1556. data/spec/framework_spec/app/spec/library/openssl/hmac/hexdigest_spec.rb +18 -0
  1557. data/spec/framework_spec/app/spec/library/openssl/random/pseudo_bytes_spec.rb +7 -0
  1558. data/spec/framework_spec/app/spec/library/openssl/random/random_bytes_spec.rb +7 -0
  1559. data/spec/framework_spec/app/spec/library/openssl/random/shared/random_bytes.rb +29 -0
  1560. data/spec/framework_spec/app/spec/library/openssl/shared/constants.rb +10 -0
  1561. data/spec/framework_spec/app/spec/library/zlib/adler32_spec.rb +46 -0
  1562. data/spec/framework_spec/app/spec/library/zlib/crc32_spec.rb +52 -0
  1563. data/spec/framework_spec/app/spec/library/zlib/crc_table_spec.rb +11 -0
  1564. data/spec/framework_spec/app/spec/library/zlib/deflate/append_spec.rb +1 -0
  1565. data/spec/framework_spec/app/spec/library/zlib/deflate/deflate_spec.rb +49 -0
  1566. data/spec/framework_spec/app/spec/library/zlib/deflate/flush_spec.rb +1 -0
  1567. data/spec/framework_spec/app/spec/library/zlib/deflate/initialize_copy_spec.rb +1 -0
  1568. data/spec/framework_spec/app/spec/library/zlib/deflate/new_spec.rb +1 -0
  1569. data/spec/framework_spec/app/spec/library/zlib/deflate/params_spec.rb +20 -0
  1570. data/spec/framework_spec/app/spec/library/zlib/deflate/set_dictionary_spec.rb +14 -0
  1571. data/spec/framework_spec/app/spec/library/zlib/gzipfile/close_spec.rb +23 -0
  1572. data/spec/framework_spec/app/spec/library/zlib/gzipfile/closed_spec.rb +17 -0
  1573. data/spec/framework_spec/app/spec/library/zlib/gzipfile/comment_spec.rb +27 -0
  1574. data/spec/framework_spec/app/spec/library/zlib/gzipfile/crc_spec.rb +1 -0
  1575. data/spec/framework_spec/app/spec/library/zlib/gzipfile/finish_spec.rb +1 -0
  1576. data/spec/framework_spec/app/spec/library/zlib/gzipfile/level_spec.rb +1 -0
  1577. data/spec/framework_spec/app/spec/library/zlib/gzipfile/mtime_spec.rb +1 -0
  1578. data/spec/framework_spec/app/spec/library/zlib/gzipfile/orig_name_spec.rb +27 -0
  1579. data/spec/framework_spec/app/spec/library/zlib/gzipfile/os_code_spec.rb +1 -0
  1580. data/spec/framework_spec/app/spec/library/zlib/gzipfile/sync_spec.rb +1 -0
  1581. data/spec/framework_spec/app/spec/library/zlib/gzipfile/to_io_spec.rb +1 -0
  1582. data/spec/framework_spec/app/spec/library/zlib/gzipfile/wrap_spec.rb +1 -0
  1583. data/spec/framework_spec/app/spec/library/zlib/gzipreader/each_byte_spec.rb +33 -0
  1584. data/spec/framework_spec/app/spec/library/zlib/gzipreader/each_line_spec.rb +1 -0
  1585. data/spec/framework_spec/app/spec/library/zlib/gzipreader/each_spec.rb +1 -0
  1586. data/spec/framework_spec/app/spec/library/zlib/gzipreader/eof_spec.rb +55 -0
  1587. data/spec/framework_spec/app/spec/library/zlib/gzipreader/getc_spec.rb +55 -0
  1588. data/spec/framework_spec/app/spec/library/zlib/gzipreader/gets_spec.rb +1 -0
  1589. data/spec/framework_spec/app/spec/library/zlib/gzipreader/lineno_spec.rb +1 -0
  1590. data/spec/framework_spec/app/spec/library/zlib/gzipreader/new_spec.rb +1 -0
  1591. data/spec/framework_spec/app/spec/library/zlib/gzipreader/open_spec.rb +1 -0
  1592. data/spec/framework_spec/app/spec/library/zlib/gzipreader/pos_spec.rb +26 -0
  1593. data/spec/framework_spec/app/spec/library/zlib/gzipreader/read_spec.rb +58 -0
  1594. data/spec/framework_spec/app/spec/library/zlib/gzipreader/readchar_spec.rb +1 -0
  1595. data/spec/framework_spec/app/spec/library/zlib/gzipreader/readline_spec.rb +1 -0
  1596. data/spec/framework_spec/app/spec/library/zlib/gzipreader/readlines_spec.rb +1 -0
  1597. data/spec/framework_spec/app/spec/library/zlib/gzipreader/rewind_spec.rb +47 -0
  1598. data/spec/framework_spec/app/spec/library/zlib/gzipreader/tell_spec.rb +1 -0
  1599. data/spec/framework_spec/app/spec/library/zlib/gzipreader/ungetc_spec.rb +1 -0
  1600. data/spec/framework_spec/app/spec/library/zlib/gzipreader/unused_spec.rb +1 -0
  1601. data/spec/framework_spec/app/spec/library/zlib/gzipwriter/append_spec.rb +1 -0
  1602. data/spec/framework_spec/app/spec/library/zlib/gzipwriter/comment_spec.rb +1 -0
  1603. data/spec/framework_spec/app/spec/library/zlib/gzipwriter/flush_spec.rb +1 -0
  1604. data/spec/framework_spec/app/spec/library/zlib/gzipwriter/mtime_spec.rb +41 -0
  1605. data/spec/framework_spec/app/spec/library/zlib/gzipwriter/new_spec.rb +1 -0
  1606. data/spec/framework_spec/app/spec/library/zlib/gzipwriter/open_spec.rb +1 -0
  1607. data/spec/framework_spec/app/spec/library/zlib/gzipwriter/orig_name_spec.rb +1 -0
  1608. data/spec/framework_spec/app/spec/library/zlib/gzipwriter/pos_spec.rb +1 -0
  1609. data/spec/framework_spec/app/spec/library/zlib/gzipwriter/print_spec.rb +1 -0
  1610. data/spec/framework_spec/app/spec/library/zlib/gzipwriter/printf_spec.rb +1 -0
  1611. data/spec/framework_spec/app/spec/library/zlib/gzipwriter/putc_spec.rb +1 -0
  1612. data/spec/framework_spec/app/spec/library/zlib/gzipwriter/puts_spec.rb +1 -0
  1613. data/spec/framework_spec/app/spec/library/zlib/gzipwriter/tell_spec.rb +1 -0
  1614. data/spec/framework_spec/app/spec/library/zlib/gzipwriter/write_spec.rb +24 -0
  1615. data/spec/framework_spec/app/spec/library/zlib/inflate/append_spec.rb +60 -0
  1616. data/spec/framework_spec/app/spec/library/zlib/inflate/inflate_spec.rb +109 -0
  1617. data/spec/framework_spec/app/spec/library/zlib/inflate/new_spec.rb +1 -0
  1618. data/spec/framework_spec/app/spec/library/zlib/inflate/set_dictionary_spec.rb +20 -0
  1619. data/spec/framework_spec/app/spec/library/zlib/inflate/sync_point_spec.rb +1 -0
  1620. data/spec/framework_spec/app/spec/library/zlib/inflate/sync_spec.rb +1 -0
  1621. data/spec/framework_spec/app/spec/library/zlib/zlib_version_spec.rb +1 -0
  1622. data/spec/framework_spec/app/spec/library/zlib/zstream/adler_spec.rb +1 -0
  1623. data/spec/framework_spec/app/spec/library/zlib/zstream/avail_in_spec.rb +1 -0
  1624. data/spec/framework_spec/app/spec/library/zlib/zstream/avail_out_spec.rb +1 -0
  1625. data/spec/framework_spec/app/spec/library/zlib/zstream/close_spec.rb +1 -0
  1626. data/spec/framework_spec/app/spec/library/zlib/zstream/closed_spec.rb +1 -0
  1627. data/spec/framework_spec/app/spec/library/zlib/zstream/data_type_spec.rb +1 -0
  1628. data/spec/framework_spec/app/spec/library/zlib/zstream/end_spec.rb +1 -0
  1629. data/spec/framework_spec/app/spec/library/zlib/zstream/ended_spec.rb +1 -0
  1630. data/spec/framework_spec/app/spec/library/zlib/zstream/finish_spec.rb +1 -0
  1631. data/spec/framework_spec/app/spec/library/zlib/zstream/finished_spec.rb +1 -0
  1632. data/spec/framework_spec/app/spec/library/zlib/zstream/flush_next_in_spec.rb +1 -0
  1633. data/spec/framework_spec/app/spec/library/zlib/zstream/flush_next_out_spec.rb +16 -0
  1634. data/spec/framework_spec/app/spec/library/zlib/zstream/reset_spec.rb +1 -0
  1635. data/spec/framework_spec/app/spec/library/zlib/zstream/stream_end_spec.rb +1 -0
  1636. data/spec/framework_spec/app/spec/library/zlib/zstream/total_in_spec.rb +1 -0
  1637. data/spec/framework_spec/app/spec/library/zlib/zstream/total_out_spec.rb +1 -0
  1638. data/spec/framework_spec/app/spec/shared/file/executable_real.rb +1 -1
  1639. data/spec/framework_spec/app/spec/shared/file/file.rb +1 -1
  1640. data/spec/framework_spec/app/spec_runner.rb +6 -5
  1641. data/spec/framework_spec/build.yml +4 -1
  1642. data/spec/phone_spec/app/BlobBulkTest/blob_bulk_test.png +0 -0
  1643. data/spec/phone_spec/app/BlobBulkTest/blob_bulk_test.rb +11 -0
  1644. data/spec/phone_spec/app/BlobBulkTest_s/blob_bulk_test_s.png +0 -0
  1645. data/spec/phone_spec/app/BlobBulkTest_s/blob_bulk_test_s.rb +11 -0
  1646. data/spec/phone_spec/app/Data/invalid_import_db.zip +0 -0
  1647. data/spec/phone_spec/app/Data/valid_import_db.zip +0 -0
  1648. data/spec/phone_spec/app/spec/asynchttp_spec.rb +1 -1
  1649. data/spec/phone_spec/app/spec/blob_bulksync_spec.rb +160 -0
  1650. data/spec/phone_spec/app/spec/bulksync_spec.rb +51 -1
  1651. data/spec/phone_spec/app/spec/bundle_update_spec.rb +85 -0
  1652. data/spec/phone_spec/app/spec/database_spec.rb +174 -0
  1653. data/spec/phone_spec/app/spec/events_spec.rb +4 -4
  1654. data/spec/phone_spec/app/spec/json_spec.rb +1 -1
  1655. data/spec/phone_spec/app/spec/rho_spec.rb +88 -12
  1656. data/spec/phone_spec/app/spec/rhofile_spec.rb +1 -1
  1657. data/spec/phone_spec/app/spec/rhom_object_spec.rb +8 -5
  1658. data/spec/phone_spec/app/spec/syncengine_spec.rb +281 -18
  1659. data/spec/phone_spec/app/spec/uri_spec.rb +5 -5
  1660. data/spec/phone_spec/app/spec_runner.rb +16 -9
  1661. data/spec/phone_spec/build.yml +2 -1
  1662. data/spec/phone_spec/public/file_for_replace.txt +1 -0
  1663. data/spec/phone_spec/public/file_to_remove.png +0 -0
  1664. data/spec/phone_spec/public/folder_to_remove.png +0 -0
  1665. data/spec/phone_spec/public/folder_to_remove/switch.png +0 -0
  1666. data/spec/phone_spec/public/partial_update_bundle/upgrade_bundle_partial.zip +0 -0
  1667. data/spec/phone_spec/upgrade_package_add_files.txt +2 -0
  1668. data/spec/phone_spec/upgrade_package_remove_files.txt +2 -0
  1669. data/version +1 -1
  1670. metadata +1384 -12
  1671. data/Manifest.txt +0 -8054
  1672. data/doc/alert-api.txt +0 -51
  1673. data/doc/files.txt +0 -4
  1674. data/doc/rhodes-api.txt +0 -147
  1675. data/doc/scanner.txt +0 -507
  1676. data/doc/timer-api.txt +0 -39
  1677. data/doc/tutorial.txt +0 -130
  1678. data/platform/android/Rhodes/src/com/rhomobile/rhodes/extmanager/WebkitExtension.java +0 -53
@@ -59,7 +59,7 @@ void rho_webview_navigate(const char* url, int index)
59
59
  }
60
60
 
61
61
  String strUrl = RHODESAPP().canonicalizeRhoUrl(url);
62
- #ifdef RHODES_EMULATOR
62
+ #if defined(OS_WINDOWS_DESKTOP)
63
63
  TNavigateData* nd = (TNavigateData*)malloc(sizeof(TNavigateData));
64
64
  nd->index = index;
65
65
  nd->url = _tcsdup(convertToStringW(strUrl).c_str());
@@ -90,7 +90,7 @@ const char* rho_webview_execute_js(const char* js, int index)
90
90
  StringW strJsW;
91
91
  convertToStringW(js, strJsW);
92
92
 
93
- #ifdef RHODES_EMULATOR
93
+ #if defined(OS_WINDOWS_DESKTOP)
94
94
  TNavigateData* nd = (TNavigateData*)malloc(sizeof(TNavigateData));
95
95
  nd->index = index;
96
96
  nd->url = _tcsdup(strJsW.c_str());
@@ -109,7 +109,7 @@ const char* rho_webview_current_location(int index)
109
109
 
110
110
  int rho_webview_active_tab()
111
111
  {
112
- #ifdef RHODES_EMULATOR
112
+ #if defined(OS_WINDOWS_DESKTOP)
113
113
  return getAppWindow().tabbarGetCurrent();
114
114
  #else
115
115
  return 0;
@@ -75,10 +75,11 @@
75
75
  <Tool
76
76
  Name="VCCLCompilerTool"
77
77
  Optimization="0"
78
- AdditionalIncludeDirectories="../../shared;./rho;../../shared/ruby;../../shared/wtl80/include;."
79
- PreprocessorDefinitions="_DEBUG;DEBUG;WIN32;_WINDOWS;ENABLE_DYNAMIC_RHOBUNDLE"
78
+ AdditionalIncludeDirectories="../../shared;./rho;../../shared/ruby;../../shared/wtl80/include;.;&quot;..\..\shared\qt\rhodes\GeneratedFiles&quot;;&quot;$(QTDIR)\include&quot;;&quot;..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)&quot;;&quot;$(QTDIR)\include\qtmain&quot;;&quot;$(QTDIR)\include\QtCore&quot;;&quot;$(QTDIR)\include\QtGui&quot;;&quot;$(QTDIR)\include\QtWebKit&quot;"
79
+ PreprocessorDefinitions="_DEBUG;DEBUG;WIN32;_WINDOWS;ENABLE_DYNAMIC_RHOBUNDLE;UNICODE;QT_LARGEFILE_SUPPORT;QT_CORE_LIB;QT_GUI_LIB;QT_NETWORK_LIB;QT_WEBKIT_LIB"
80
80
  MinimalRebuild="true"
81
81
  RuntimeLibrary="1"
82
+ TreatWChar_tAsBuiltInType="false"
82
83
  UsePrecompiledHeader="2"
83
84
  WarningLevel="3"
84
85
  DebugInformationFormat="3"
@@ -101,10 +102,11 @@
101
102
  RegisterOutput="false"
102
103
  IgnoreImportLibrary="true"
103
104
  UseUnicodeResponseFiles="false"
104
- AdditionalDependencies="wininet.lib comsuppwd.lib ws2_32.lib Crypt32.lib gdiplus.lib"
105
+ AdditionalDependencies="wininet.lib comsuppwd.lib ws2_32.lib Crypt32.lib gdiplus.lib qtmaind.lib QtCored4.lib QtGuid4.lib QtNetworkd4.lib QtWebKitd4.lib"
105
106
  OutputFile="$(OutDir)/rhodes.exe"
106
107
  LinkIncremental="2"
107
- AdditionalLibraryDirectories="$(OutDir)"
108
+ AdditionalLibraryDirectories="&quot;$(OutDir)&quot;;&quot;$(QTDIR)\lib&quot;"
109
+ AdditionalManifestDependencies="type=&apos;win32&apos; name=&apos;Microsoft.Windows.Common-Controls&apos; version=&apos;6.0.0.0&apos; publicKeyToken=&apos;6595b64144ccf1df&apos; language=&apos;*&apos; processorArchitecture=&apos;*&apos;;type=&apos;win32&apos; name=&apos;Microsoft.VC90.DebugCRT&apos; version=&apos;9.0.21022.8&apos; processorArchitecture=&apos;x86&apos; publicKeyToken=&apos;1fc8b3b9a1e18e3b&apos;"
108
110
  GenerateDebugInformation="true"
109
111
  SubSystem="0"
110
112
  StackReserveSize="196608"
@@ -796,9 +798,10 @@
796
798
  <Tool
797
799
  Name="VCCLCompilerTool"
798
800
  Optimization="2"
799
- AdditionalIncludeDirectories="../../shared;./rho;../../shared/ruby;../../shared/wtl80/include;."
800
- PreprocessorDefinitions="_NDEBUG;NDEBUG;WIN32;_WINDOWS;ENABLE_DYNAMIC_RHOBUNDLE"
801
+ AdditionalIncludeDirectories="../../shared;./rho;../../shared/ruby;../../shared/wtl80/include;.;&quot;..\..\shared\qt\rhodes\GeneratedFiles&quot;;&quot;$(QTDIR)\include&quot;;&quot;..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)&quot;;&quot;$(QTDIR)\include\qtmain&quot;;&quot;$(QTDIR)\include\QtCore&quot;;&quot;$(QTDIR)\include\QtGui&quot;;&quot;$(QTDIR)\include\QtWebKit&quot;"
802
+ PreprocessorDefinitions="_NDEBUG;NDEBUG;WIN32;_WINDOWS;ENABLE_DYNAMIC_RHOBUNDLE;UNICODE;QT_LARGEFILE_SUPPORT;QT_NO_DEBUG;QT_CORE_LIB;QT_GUI_LIB;QT_NETWORK_LIB;QT_WEBKIT_LIB"
801
803
  RuntimeLibrary="0"
804
+ TreatWChar_tAsBuiltInType="false"
802
805
  UsePrecompiledHeader="2"
803
806
  WarningLevel="3"
804
807
  DebugInformationFormat="3"
@@ -821,11 +824,12 @@
821
824
  RegisterOutput="false"
822
825
  IgnoreImportLibrary="true"
823
826
  UseUnicodeResponseFiles="false"
824
- AdditionalDependencies="wininet.lib comsuppwd.lib ws2_32.lib Crypt32.lib gdiplus.lib"
827
+ AdditionalDependencies="wininet.lib comsuppwd.lib ws2_32.lib Crypt32.lib gdiplus.lib qtmain.lib QtCore4.lib QtGui4.lib QtNetwork4.lib QtWebKit4.lib"
825
828
  OutputFile="$(OutDir)/rhodes.exe"
826
829
  LinkIncremental="1"
827
- AdditionalLibraryDirectories="$(OutDir)"
828
- GenerateDebugInformation="true"
830
+ AdditionalLibraryDirectories="&quot;$(OutDir)&quot;;&quot;$(QTDIR)\lib&quot;"
831
+ AdditionalManifestDependencies="type=&apos;win32&apos; name=&apos;Microsoft.Windows.Common-Controls&apos; version=&apos;6.0.0.0&apos; publicKeyToken=&apos;6595b64144ccf1df&apos; language=&apos;*&apos; processorArchitecture=&apos;*&apos;;type=&apos;win32&apos; name=&apos;Microsoft.VC90.CRT&apos; version=&apos;9.0.21022.8&apos; processorArchitecture=&apos;x86&apos; publicKeyToken=&apos;1fc8b3b9a1e18e3b&apos;"
832
+ GenerateDebugInformation="false"
829
833
  SubSystem="0"
830
834
  StackReserveSize="196608"
831
835
  StackCommitSize="4096"
@@ -3411,7 +3415,7 @@
3411
3415
  RelativePath=".\IEBrowserEngine.cpp"
3412
3416
  >
3413
3417
  <FileConfiguration
3414
- Name="SimulatorDebug|Win32"
3418
+ Name="Debug|Win32"
3415
3419
  ExcludedFromBuild="true"
3416
3420
  >
3417
3421
  <Tool
@@ -3419,21 +3423,13 @@
3419
3423
  />
3420
3424
  </FileConfiguration>
3421
3425
  <FileConfiguration
3422
- Name="SimulatorRelease|Win32"
3426
+ Name="Release|Win32"
3423
3427
  ExcludedFromBuild="true"
3424
3428
  >
3425
3429
  <Tool
3426
3430
  Name="VCCLCompilerTool"
3427
3431
  />
3428
3432
  </FileConfiguration>
3429
- </File>
3430
- <File
3431
- RelativePath=".\LicenseStub.cpp"
3432
- >
3433
- </File>
3434
- <File
3435
- RelativePath=".\LogMemory.cpp"
3436
- >
3437
3433
  <FileConfiguration
3438
3434
  Name="SimulatorDebug|Win32"
3439
3435
  ExcludedFromBuild="true"
@@ -3451,6 +3447,14 @@
3451
3447
  />
3452
3448
  </FileConfiguration>
3453
3449
  </File>
3450
+ <File
3451
+ RelativePath=".\LicenseStub.cpp"
3452
+ >
3453
+ </File>
3454
+ <File
3455
+ RelativePath=".\LogMemory.cpp"
3456
+ >
3457
+ </File>
3454
3458
  <File
3455
3459
  RelativePath=".\LogOptionsDlg.cpp"
3456
3460
  >
@@ -3462,6 +3466,22 @@
3462
3466
  <File
3463
3467
  RelativePath=".\MainWindow.cpp"
3464
3468
  >
3469
+ <FileConfiguration
3470
+ Name="Debug|Win32"
3471
+ ExcludedFromBuild="true"
3472
+ >
3473
+ <Tool
3474
+ Name="VCCLCompilerTool"
3475
+ />
3476
+ </FileConfiguration>
3477
+ <FileConfiguration
3478
+ Name="Release|Win32"
3479
+ ExcludedFromBuild="true"
3480
+ >
3481
+ <Tool
3482
+ Name="VCCLCompilerTool"
3483
+ />
3484
+ </FileConfiguration>
3465
3485
  <FileConfiguration
3466
3486
  Name="SimulatorDebug|Win32"
3467
3487
  ExcludedFromBuild="true"
@@ -3776,6 +3796,22 @@
3776
3796
  <File
3777
3797
  RelativePath=".\IBrowserEngine.h"
3778
3798
  >
3799
+ <FileConfiguration
3800
+ Name="Debug|Win32"
3801
+ ExcludedFromBuild="true"
3802
+ >
3803
+ <Tool
3804
+ Name="VCCustomBuildTool"
3805
+ />
3806
+ </FileConfiguration>
3807
+ <FileConfiguration
3808
+ Name="Release|Win32"
3809
+ ExcludedFromBuild="true"
3810
+ >
3811
+ <Tool
3812
+ Name="VCCustomBuildTool"
3813
+ />
3814
+ </FileConfiguration>
3779
3815
  <FileConfiguration
3780
3816
  Name="SimulatorDebug|Win32"
3781
3817
  ExcludedFromBuild="true"
@@ -3797,7 +3833,7 @@
3797
3833
  RelativePath=".\IEBrowserEngine.h"
3798
3834
  >
3799
3835
  <FileConfiguration
3800
- Name="SimulatorDebug|Win32"
3836
+ Name="Debug|Win32"
3801
3837
  ExcludedFromBuild="true"
3802
3838
  >
3803
3839
  <Tool
@@ -3805,23 +3841,19 @@
3805
3841
  />
3806
3842
  </FileConfiguration>
3807
3843
  <FileConfiguration
3808
- Name="SimulatorRelease|Win32"
3844
+ Name="Release|Win32"
3809
3845
  ExcludedFromBuild="true"
3810
3846
  >
3811
3847
  <Tool
3812
3848
  Name="VCCustomBuildTool"
3813
3849
  />
3814
3850
  </FileConfiguration>
3815
- </File>
3816
- <File
3817
- RelativePath=".\LogMemory.h"
3818
- >
3819
3851
  <FileConfiguration
3820
3852
  Name="SimulatorDebug|Win32"
3821
3853
  ExcludedFromBuild="true"
3822
3854
  >
3823
3855
  <Tool
3824
- Name="VCCLCompilerTool"
3856
+ Name="VCCustomBuildTool"
3825
3857
  />
3826
3858
  </FileConfiguration>
3827
3859
  <FileConfiguration
@@ -3829,10 +3861,14 @@
3829
3861
  ExcludedFromBuild="true"
3830
3862
  >
3831
3863
  <Tool
3832
- Name="VCCLCompilerTool"
3864
+ Name="VCCustomBuildTool"
3833
3865
  />
3834
3866
  </FileConfiguration>
3835
3867
  </File>
3868
+ <File
3869
+ RelativePath=".\LogMemory.h"
3870
+ >
3871
+ </File>
3836
3872
  <File
3837
3873
  RelativePath=".\LogOptionsDlg.h"
3838
3874
  >
@@ -4135,7 +4171,7 @@
4135
4171
  RelativePath="..\..\shared\qt\rhodes\resources\simulator.qrc"
4136
4172
  >
4137
4173
  <FileConfiguration
4138
- Name="Debug|Win32"
4174
+ Name="Debug|Pocket PC 2003 (ARMV4)"
4139
4175
  ExcludedFromBuild="true"
4140
4176
  >
4141
4177
  <Tool
@@ -4143,7 +4179,7 @@
4143
4179
  />
4144
4180
  </FileConfiguration>
4145
4181
  <FileConfiguration
4146
- Name="Debug|Pocket PC 2003 (ARMV4)"
4182
+ Name="Debug|Smartphone 2003 (ARMV4)"
4147
4183
  ExcludedFromBuild="true"
4148
4184
  >
4149
4185
  <Tool
@@ -4151,7 +4187,7 @@
4151
4187
  />
4152
4188
  </FileConfiguration>
4153
4189
  <FileConfiguration
4154
- Name="Debug|Smartphone 2003 (ARMV4)"
4190
+ Name="Debug|MC3000c50b (ARMV4I)"
4155
4191
  ExcludedFromBuild="true"
4156
4192
  >
4157
4193
  <Tool
@@ -4159,7 +4195,7 @@
4159
4195
  />
4160
4196
  </FileConfiguration>
4161
4197
  <FileConfiguration
4162
- Name="Debug|MC3000c50b (ARMV4I)"
4198
+ Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)"
4163
4199
  ExcludedFromBuild="true"
4164
4200
  >
4165
4201
  <Tool
@@ -4167,7 +4203,7 @@
4167
4203
  />
4168
4204
  </FileConfiguration>
4169
4205
  <FileConfiguration
4170
- Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)"
4206
+ Name="Release|Pocket PC 2003 (ARMV4)"
4171
4207
  ExcludedFromBuild="true"
4172
4208
  >
4173
4209
  <Tool
@@ -4175,7 +4211,7 @@
4175
4211
  />
4176
4212
  </FileConfiguration>
4177
4213
  <FileConfiguration
4178
- Name="Release|Win32"
4214
+ Name="Release|Smartphone 2003 (ARMV4)"
4179
4215
  ExcludedFromBuild="true"
4180
4216
  >
4181
4217
  <Tool
@@ -4183,7 +4219,7 @@
4183
4219
  />
4184
4220
  </FileConfiguration>
4185
4221
  <FileConfiguration
4186
- Name="Release|Pocket PC 2003 (ARMV4)"
4222
+ Name="Release|MC3000c50b (ARMV4I)"
4187
4223
  ExcludedFromBuild="true"
4188
4224
  >
4189
4225
  <Tool
@@ -4191,7 +4227,7 @@
4191
4227
  />
4192
4228
  </FileConfiguration>
4193
4229
  <FileConfiguration
4194
- Name="Release|Smartphone 2003 (ARMV4)"
4230
+ Name="Release|Windows Mobile 6 Professional SDK (ARMV4I)"
4195
4231
  ExcludedFromBuild="true"
4196
4232
  >
4197
4233
  <Tool
@@ -4199,19 +4235,23 @@
4199
4235
  />
4200
4236
  </FileConfiguration>
4201
4237
  <FileConfiguration
4202
- Name="Release|MC3000c50b (ARMV4I)"
4203
- ExcludedFromBuild="true"
4238
+ Name="Debug|Win32"
4204
4239
  >
4205
4240
  <Tool
4206
4241
  Name="VCCustomBuildTool"
4242
+ Description="Rcc&apos;ing $(InputFileName)..."
4243
+ CommandLine="&quot;$(QTDIR)\bin\rcc.exe&quot; -name $(InputName) ..\..\shared\qt\rhodes\resources\simulator.qrc -o &quot;..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\qrc_$(InputName).cpp&quot;&#x0D;&#x0A;"
4244
+ Outputs="&quot;..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\qrc_$(InputName).cpp&quot;"
4207
4245
  />
4208
4246
  </FileConfiguration>
4209
4247
  <FileConfiguration
4210
- Name="Release|Windows Mobile 6 Professional SDK (ARMV4I)"
4211
- ExcludedFromBuild="true"
4248
+ Name="Release|Win32"
4212
4249
  >
4213
4250
  <Tool
4214
4251
  Name="VCCustomBuildTool"
4252
+ Description="Rcc&apos;ing $(InputFileName)..."
4253
+ CommandLine="&quot;$(QTDIR)\bin\rcc.exe&quot; -name $(InputName) ..\..\shared\qt\rhodes\resources\simulator.qrc -o &quot;..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\qrc_$(InputName).cpp&quot;&#x0D;&#x0A;"
4254
+ Outputs="&quot;..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\qrc_$(InputName).cpp&quot;"
4215
4255
  />
4216
4256
  </FileConfiguration>
4217
4257
  <FileConfiguration
@@ -4317,6 +4357,22 @@
4317
4357
  <File
4318
4358
  RelativePath=".\rho\rubyext\NativeToolbar.cpp"
4319
4359
  >
4360
+ <FileConfiguration
4361
+ Name="Debug|Win32"
4362
+ ExcludedFromBuild="true"
4363
+ >
4364
+ <Tool
4365
+ Name="VCCLCompilerTool"
4366
+ />
4367
+ </FileConfiguration>
4368
+ <FileConfiguration
4369
+ Name="Release|Win32"
4370
+ ExcludedFromBuild="true"
4371
+ >
4372
+ <Tool
4373
+ Name="VCCLCompilerTool"
4374
+ />
4375
+ </FileConfiguration>
4320
4376
  <FileConfiguration
4321
4377
  Name="SimulatorDebug|Win32"
4322
4378
  ExcludedFromBuild="true"
@@ -4560,14 +4616,6 @@
4560
4616
  <File
4561
4617
  RelativePath=".\simulator\MainWindowQt.cpp"
4562
4618
  >
4563
- <FileConfiguration
4564
- Name="Debug|Win32"
4565
- ExcludedFromBuild="true"
4566
- >
4567
- <Tool
4568
- Name="VCCLCompilerTool"
4569
- />
4570
- </FileConfiguration>
4571
4619
  <FileConfiguration
4572
4620
  Name="Debug|Pocket PC 2003 (ARMV4)"
4573
4621
  ExcludedFromBuild="true"
@@ -4600,14 +4648,6 @@
4600
4648
  Name="VCCLCompilerTool"
4601
4649
  />
4602
4650
  </FileConfiguration>
4603
- <FileConfiguration
4604
- Name="Release|Win32"
4605
- ExcludedFromBuild="true"
4606
- >
4607
- <Tool
4608
- Name="VCCLCompilerTool"
4609
- />
4610
- </FileConfiguration>
4611
4651
  <FileConfiguration
4612
4652
  Name="Release|Pocket PC 2003 (ARMV4)"
4613
4653
  ExcludedFromBuild="true"
@@ -4742,7 +4782,6 @@
4742
4782
  >
4743
4783
  <FileConfiguration
4744
4784
  Name="Debug|Win32"
4745
- ExcludedFromBuild="true"
4746
4785
  >
4747
4786
  <Tool
4748
4787
  Name="VCCustomBuildTool"
@@ -4782,7 +4821,6 @@
4782
4821
  </FileConfiguration>
4783
4822
  <FileConfiguration
4784
4823
  Name="Release|Win32"
4785
- ExcludedFromBuild="true"
4786
4824
  >
4787
4825
  <Tool
4788
4826
  Name="VCCustomBuildTool"
@@ -4934,14 +4972,6 @@
4934
4972
  <File
4935
4973
  RelativePath=".\simulator\NativeTabbarQt.cpp"
4936
4974
  >
4937
- <FileConfiguration
4938
- Name="Debug|Win32"
4939
- ExcludedFromBuild="true"
4940
- >
4941
- <Tool
4942
- Name="VCCLCompilerTool"
4943
- />
4944
- </FileConfiguration>
4945
4975
  <FileConfiguration
4946
4976
  Name="Debug|Pocket PC 2003 (ARMV4)"
4947
4977
  ExcludedFromBuild="true"
@@ -4974,14 +5004,6 @@
4974
5004
  Name="VCCLCompilerTool"
4975
5005
  />
4976
5006
  </FileConfiguration>
4977
- <FileConfiguration
4978
- Name="Release|Win32"
4979
- ExcludedFromBuild="true"
4980
- >
4981
- <Tool
4982
- Name="VCCLCompilerTool"
4983
- />
4984
- </FileConfiguration>
4985
5007
  <FileConfiguration
4986
5008
  Name="Release|Pocket PC 2003 (ARMV4)"
4987
5009
  ExcludedFromBuild="true"
@@ -5116,7 +5138,6 @@
5116
5138
  >
5117
5139
  <FileConfiguration
5118
5140
  Name="Debug|Win32"
5119
- ExcludedFromBuild="true"
5120
5141
  >
5121
5142
  <Tool
5122
5143
  Name="VCCustomBuildTool"
@@ -5156,7 +5177,6 @@
5156
5177
  </FileConfiguration>
5157
5178
  <FileConfiguration
5158
5179
  Name="Release|Win32"
5159
- ExcludedFromBuild="true"
5160
5180
  >
5161
5181
  <Tool
5162
5182
  Name="VCCustomBuildTool"
@@ -5308,14 +5328,6 @@
5308
5328
  <File
5309
5329
  RelativePath=".\simulator\NativeToolbarQt.cpp"
5310
5330
  >
5311
- <FileConfiguration
5312
- Name="Debug|Win32"
5313
- ExcludedFromBuild="true"
5314
- >
5315
- <Tool
5316
- Name="VCCLCompilerTool"
5317
- />
5318
- </FileConfiguration>
5319
5331
  <FileConfiguration
5320
5332
  Name="Debug|Pocket PC 2003 (ARMV4)"
5321
5333
  ExcludedFromBuild="true"
@@ -5348,14 +5360,6 @@
5348
5360
  Name="VCCLCompilerTool"
5349
5361
  />
5350
5362
  </FileConfiguration>
5351
- <FileConfiguration
5352
- Name="Release|Win32"
5353
- ExcludedFromBuild="true"
5354
- >
5355
- <Tool
5356
- Name="VCCLCompilerTool"
5357
- />
5358
- </FileConfiguration>
5359
5363
  <FileConfiguration
5360
5364
  Name="Release|Pocket PC 2003 (ARMV4)"
5361
5365
  ExcludedFromBuild="true"
@@ -5490,7 +5494,6 @@
5490
5494
  >
5491
5495
  <FileConfiguration
5492
5496
  Name="Debug|Win32"
5493
- ExcludedFromBuild="true"
5494
5497
  >
5495
5498
  <Tool
5496
5499
  Name="VCCustomBuildTool"
@@ -5530,7 +5533,6 @@
5530
5533
  </FileConfiguration>
5531
5534
  <FileConfiguration
5532
5535
  Name="Release|Win32"
5533
- ExcludedFromBuild="true"
5534
5536
  >
5535
5537
  <Tool
5536
5538
  Name="VCCustomBuildTool"
@@ -5688,10 +5690,10 @@
5688
5690
  >
5689
5691
  <FileConfiguration
5690
5692
  Name="Debug|Win32"
5691
- ExcludedFromBuild="true"
5692
5693
  >
5693
5694
  <Tool
5694
5695
  Name="VCCLCompilerTool"
5696
+ UsePrecompiledHeader="0"
5695
5697
  />
5696
5698
  </FileConfiguration>
5697
5699
  <FileConfiguration
@@ -5728,10 +5730,10 @@
5728
5730
  </FileConfiguration>
5729
5731
  <FileConfiguration
5730
5732
  Name="Release|Win32"
5731
- ExcludedFromBuild="true"
5732
5733
  >
5733
5734
  <Tool
5734
5735
  Name="VCCLCompilerTool"
5736
+ UsePrecompiledHeader="0"
5735
5737
  />
5736
5738
  </FileConfiguration>
5737
5739
  <FileConfiguration
@@ -5884,10 +5886,13 @@
5884
5886
  >
5885
5887
  <FileConfiguration
5886
5888
  Name="Debug|Win32"
5887
- ExcludedFromBuild="true"
5888
5889
  >
5889
5890
  <Tool
5890
5891
  Name="VCCustomBuildTool"
5892
+ Description="Moc&apos;ing $(InputFileName)..."
5893
+ CommandLine="&quot;$(QTDIR)\bin\moc.exe&quot; -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_WEBKIT_LIB &quot;-I.&quot; &quot;-I..\..\shared\qt\rhodes\GeneratedFiles&quot; &quot;-I$(QTDIR)\include&quot; &quot;-I..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\.&quot; &quot;-I$(QTDIR)\include\qtmain&quot; &quot;-I$(QTDIR)\include\QtCore&quot; &quot;-I$(QTDIR)\include\QtGui&quot; &quot;-I$(QTDIR)\include\QtWebKit&quot; &quot;..\..\shared\qt\rhodes\DateTimeDialog.h&quot; -o &quot;..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp&quot;&#x0D;&#x0A;"
5894
+ AdditionalDependencies="&quot;$(QTDIR)\bin\moc.exe&quot;;$(InputPath)"
5895
+ Outputs="&quot;..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp&quot;"
5891
5896
  />
5892
5897
  </FileConfiguration>
5893
5898
  <FileConfiguration
@@ -5924,10 +5929,13 @@
5924
5929
  </FileConfiguration>
5925
5930
  <FileConfiguration
5926
5931
  Name="Release|Win32"
5927
- ExcludedFromBuild="true"
5928
5932
  >
5929
5933
  <Tool
5930
5934
  Name="VCCustomBuildTool"
5935
+ Description="Moc&apos;ing $(InputFileName)..."
5936
+ CommandLine="&quot;$(QTDIR)\bin\moc.exe&quot; -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_WEBKIT_LIB &quot;-I..\..\shared\qt\rhodes\GeneratedFiles&quot; &quot;-I$(QTDIR)\include&quot; &quot;-I..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\.&quot; &quot;-I$(QTDIR)\include\qtmain&quot; &quot;-I$(QTDIR)\include\QtCore&quot; &quot;-I$(QTDIR)\include\QtGui&quot; &quot;-I$(QTDIR)\include\QtWebKit&quot; &quot;-I.&quot; &quot;..\..\shared\qt\rhodes\DateTimeDialog.h&quot; -o &quot;..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp&quot;&#x0D;&#x0A;"
5937
+ AdditionalDependencies="&quot;$(QTDIR)\bin\moc.exe&quot;;$(InputPath)"
5938
+ Outputs="&quot;..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp&quot;"
5931
5939
  />
5932
5940
  </FileConfiguration>
5933
5941
  <FileConfiguration
@@ -6086,10 +6094,13 @@
6086
6094
  >
6087
6095
  <FileConfiguration
6088
6096
  Name="Debug|Win32"
6089
- ExcludedFromBuild="true"
6090
6097
  >
6091
6098
  <Tool
6092
6099
  Name="VCCustomBuildTool"
6100
+ Description="Uic&apos;ing $(InputFileName)..."
6101
+ CommandLine="&quot;$(QTDIR)\bin\uic.exe&quot; -o &quot;..\..\shared\qt\rhodes\GeneratedFiles\ui_$(InputName).h&quot; &quot;$(InputPath)&quot;&#x0D;&#x0A;"
6102
+ AdditionalDependencies="$(QTDIR)\bin\uic.exe"
6103
+ Outputs="&quot;..\..\shared\qt\rhodes\GeneratedFiles\ui_$(InputName).h&quot;"
6093
6104
  />
6094
6105
  </FileConfiguration>
6095
6106
  <FileConfiguration
@@ -6126,10 +6137,13 @@
6126
6137
  </FileConfiguration>
6127
6138
  <FileConfiguration
6128
6139
  Name="Release|Win32"
6129
- ExcludedFromBuild="true"
6130
6140
  >
6131
6141
  <Tool
6132
6142
  Name="VCCustomBuildTool"
6143
+ Description="Uic&apos;ing $(InputFileName)..."
6144
+ CommandLine="&quot;$(QTDIR)\bin\uic.exe&quot; -o &quot;..\..\shared\qt\rhodes\GeneratedFiles\ui_$(InputName).h&quot; &quot;$(InputPath)&quot;&#x0D;&#x0A;"
6145
+ AdditionalDependencies="$(QTDIR)\bin\uic.exe"
6146
+ Outputs="&quot;..\..\shared\qt\rhodes\GeneratedFiles\ui_$(InputName).h&quot;"
6133
6147
  />
6134
6148
  </FileConfiguration>
6135
6149
  <FileConfiguration
@@ -6288,10 +6302,10 @@
6288
6302
  >
6289
6303
  <FileConfiguration
6290
6304
  Name="Debug|Win32"
6291
- ExcludedFromBuild="true"
6292
6305
  >
6293
6306
  <Tool
6294
6307
  Name="VCCLCompilerTool"
6308
+ UsePrecompiledHeader="0"
6295
6309
  />
6296
6310
  </FileConfiguration>
6297
6311
  <FileConfiguration
@@ -6328,10 +6342,10 @@
6328
6342
  </FileConfiguration>
6329
6343
  <FileConfiguration
6330
6344
  Name="Release|Win32"
6331
- ExcludedFromBuild="true"
6332
6345
  >
6333
6346
  <Tool
6334
6347
  Name="VCCLCompilerTool"
6348
+ UsePrecompiledHeader="0"
6335
6349
  />
6336
6350
  </FileConfiguration>
6337
6351
  <FileConfiguration
@@ -6484,10 +6498,13 @@
6484
6498
  >
6485
6499
  <FileConfiguration
6486
6500
  Name="Debug|Win32"
6487
- ExcludedFromBuild="true"
6488
6501
  >
6489
6502
  <Tool
6490
6503
  Name="VCCustomBuildTool"
6504
+ Description="Moc&apos;ing $(InputFileName)..."
6505
+ CommandLine="&quot;$(QTDIR)\bin\moc.exe&quot; -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_WEBKIT_LIB &quot;-I.&quot; &quot;-I..\..\shared\qt\rhodes\GeneratedFiles&quot; &quot;-I$(QTDIR)\include&quot; &quot;-I..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\.&quot; &quot;-I$(QTDIR)\include\qtmain&quot; &quot;-I$(QTDIR)\include\QtCore&quot; &quot;-I$(QTDIR)\include\QtGui&quot; &quot;-I$(QTDIR)\include\QtWebKit&quot; &quot;..\..\shared\qt\rhodes\ExternalWebView.h&quot; -o &quot;..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp&quot;&#x0D;&#x0A;"
6506
+ AdditionalDependencies="&quot;$(QTDIR)\bin\moc.exe&quot;;$(InputPath)"
6507
+ Outputs="&quot;..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp&quot;"
6491
6508
  />
6492
6509
  </FileConfiguration>
6493
6510
  <FileConfiguration
@@ -6524,10 +6541,13 @@
6524
6541
  </FileConfiguration>
6525
6542
  <FileConfiguration
6526
6543
  Name="Release|Win32"
6527
- ExcludedFromBuild="true"
6528
6544
  >
6529
6545
  <Tool
6530
6546
  Name="VCCustomBuildTool"
6547
+ Description="Moc&apos;ing $(InputFileName)..."
6548
+ CommandLine="&quot;$(QTDIR)\bin\moc.exe&quot; -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_WEBKIT_LIB &quot;-I..\..\shared\qt\rhodes\GeneratedFiles&quot; &quot;-I$(QTDIR)\include&quot; &quot;-I..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\.&quot; &quot;-I$(QTDIR)\include\qtmain&quot; &quot;-I$(QTDIR)\include\QtCore&quot; &quot;-I$(QTDIR)\include\QtGui&quot; &quot;-I$(QTDIR)\include\QtWebKit&quot; &quot;-I.&quot; &quot;..\..\shared\qt\rhodes\ExternalWebView.h&quot; -o &quot;..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp&quot;&#x0D;&#x0A;"
6549
+ AdditionalDependencies="&quot;$(QTDIR)\bin\moc.exe&quot;;$(InputPath)"
6550
+ Outputs="&quot;..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp&quot;"
6531
6551
  />
6532
6552
  </FileConfiguration>
6533
6553
  <FileConfiguration
@@ -6686,10 +6706,13 @@
6686
6706
  >
6687
6707
  <FileConfiguration
6688
6708
  Name="Debug|Win32"
6689
- ExcludedFromBuild="true"
6690
6709
  >
6691
6710
  <Tool
6692
6711
  Name="VCCustomBuildTool"
6712
+ Description="Uic&apos;ing $(InputFileName)..."
6713
+ CommandLine="&quot;$(QTDIR)\bin\uic.exe&quot; -o &quot;..\..\shared\qt\rhodes\GeneratedFiles\ui_$(InputName).h&quot; &quot;$(InputPath)&quot;&#x0D;&#x0A;"
6714
+ AdditionalDependencies="$(QTDIR)\bin\uic.exe"
6715
+ Outputs="&quot;..\..\shared\qt\rhodes\GeneratedFiles\ui_$(InputName).h&quot;"
6693
6716
  />
6694
6717
  </FileConfiguration>
6695
6718
  <FileConfiguration
@@ -6726,10 +6749,13 @@
6726
6749
  </FileConfiguration>
6727
6750
  <FileConfiguration
6728
6751
  Name="Release|Win32"
6729
- ExcludedFromBuild="true"
6730
6752
  >
6731
6753
  <Tool
6732
6754
  Name="VCCustomBuildTool"
6755
+ Description="Uic&apos;ing $(InputFileName)..."
6756
+ CommandLine="&quot;$(QTDIR)\bin\uic.exe&quot; -o &quot;..\..\shared\qt\rhodes\GeneratedFiles\ui_$(InputName).h&quot; &quot;$(InputPath)&quot;&#x0D;&#x0A;"
6757
+ AdditionalDependencies="$(QTDIR)\bin\uic.exe"
6758
+ Outputs="&quot;..\..\shared\qt\rhodes\GeneratedFiles\ui_$(InputName).h&quot;"
6733
6759
  />
6734
6760
  </FileConfiguration>
6735
6761
  <FileConfiguration
@@ -6888,7 +6914,6 @@
6888
6914
  >
6889
6915
  <FileConfiguration
6890
6916
  Name="Debug|Win32"
6891
- ExcludedFromBuild="true"
6892
6917
  >
6893
6918
  <Tool
6894
6919
  Name="VCCustomBuildTool"
@@ -6928,7 +6953,6 @@
6928
6953
  </FileConfiguration>
6929
6954
  <FileConfiguration
6930
6955
  Name="Release|Win32"
6931
- ExcludedFromBuild="true"
6932
6956
  >
6933
6957
  <Tool
6934
6958
  Name="VCCustomBuildTool"
@@ -7082,10 +7106,10 @@
7082
7106
  >
7083
7107
  <FileConfiguration
7084
7108
  Name="Debug|Win32"
7085
- ExcludedFromBuild="true"
7086
7109
  >
7087
7110
  <Tool
7088
7111
  Name="VCCLCompilerTool"
7112
+ UsePrecompiledHeader="0"
7089
7113
  />
7090
7114
  </FileConfiguration>
7091
7115
  <FileConfiguration
@@ -7122,10 +7146,10 @@
7122
7146
  </FileConfiguration>
7123
7147
  <FileConfiguration
7124
7148
  Name="Release|Win32"
7125
- ExcludedFromBuild="true"
7126
7149
  >
7127
7150
  <Tool
7128
7151
  Name="VCCLCompilerTool"
7152
+ UsePrecompiledHeader="0"
7129
7153
  />
7130
7154
  </FileConfiguration>
7131
7155
  <FileConfiguration
@@ -7278,10 +7302,13 @@
7278
7302
  >
7279
7303
  <FileConfiguration
7280
7304
  Name="Debug|Win32"
7281
- ExcludedFromBuild="true"
7282
7305
  >
7283
7306
  <Tool
7284
7307
  Name="VCCustomBuildTool"
7308
+ Description="Moc&apos;ing $(InputFileName)..."
7309
+ CommandLine="&quot;$(QTDIR)\bin\moc.exe&quot; -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_WEBKIT_LIB &quot;-I.&quot; &quot;-I..\..\shared\qt\rhodes\GeneratedFiles&quot; &quot;-I$(QTDIR)\include&quot; &quot;-I..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\.&quot; &quot;-I$(QTDIR)\include\qtmain&quot; &quot;-I$(QTDIR)\include\QtCore&quot; &quot;-I$(QTDIR)\include\QtGui&quot; &quot;-I$(QTDIR)\include\QtWebKit&quot; &quot;..\..\shared\qt\rhodes\QtMainWindow.h&quot; -o &quot;..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp&quot;&#x0D;&#x0A;"
7310
+ AdditionalDependencies="&quot;$(QTDIR)\bin\moc.exe&quot;;$(InputPath)"
7311
+ Outputs="&quot;..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp&quot;"
7285
7312
  />
7286
7313
  </FileConfiguration>
7287
7314
  <FileConfiguration
@@ -7318,10 +7345,13 @@
7318
7345
  </FileConfiguration>
7319
7346
  <FileConfiguration
7320
7347
  Name="Release|Win32"
7321
- ExcludedFromBuild="true"
7322
7348
  >
7323
7349
  <Tool
7324
7350
  Name="VCCustomBuildTool"
7351
+ Description="Moc&apos;ing $(InputFileName)..."
7352
+ CommandLine="&quot;$(QTDIR)\bin\moc.exe&quot; -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_WEBKIT_LIB &quot;-I..\..\shared\qt\rhodes\GeneratedFiles&quot; &quot;-I$(QTDIR)\include&quot; &quot;-I..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\.&quot; &quot;-I$(QTDIR)\include\qtmain&quot; &quot;-I$(QTDIR)\include\QtCore&quot; &quot;-I$(QTDIR)\include\QtGui&quot; &quot;-I$(QTDIR)\include\QtWebKit&quot; &quot;-I.&quot; &quot;..\..\shared\qt\rhodes\QtMainWindow.h&quot; -o &quot;..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp&quot;&#x0D;&#x0A;"
7353
+ AdditionalDependencies="&quot;$(QTDIR)\bin\moc.exe&quot;;$(InputPath)"
7354
+ Outputs="&quot;..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp&quot;"
7325
7355
  />
7326
7356
  </FileConfiguration>
7327
7357
  <FileConfiguration
@@ -7480,10 +7510,13 @@
7480
7510
  >
7481
7511
  <FileConfiguration
7482
7512
  Name="Debug|Win32"
7483
- ExcludedFromBuild="true"
7484
7513
  >
7485
7514
  <Tool
7486
7515
  Name="VCCustomBuildTool"
7516
+ Description="Uic&apos;ing $(InputFileName)..."
7517
+ CommandLine="&quot;$(QTDIR)\bin\uic.exe&quot; -o &quot;..\..\shared\qt\rhodes\GeneratedFiles\ui_$(InputName).h&quot; &quot;$(InputPath)&quot;&#x0D;&#x0A;"
7518
+ AdditionalDependencies="$(QTDIR)\bin\uic.exe"
7519
+ Outputs="&quot;..\..\shared\qt\rhodes\GeneratedFiles\ui_$(InputName).h&quot;"
7487
7520
  />
7488
7521
  </FileConfiguration>
7489
7522
  <FileConfiguration
@@ -7520,10 +7553,13 @@
7520
7553
  </FileConfiguration>
7521
7554
  <FileConfiguration
7522
7555
  Name="Release|Win32"
7523
- ExcludedFromBuild="true"
7524
7556
  >
7525
7557
  <Tool
7526
7558
  Name="VCCustomBuildTool"
7559
+ Description="Uic&apos;ing $(InputFileName)..."
7560
+ CommandLine="&quot;$(QTDIR)\bin\uic.exe&quot; -o &quot;..\..\shared\qt\rhodes\GeneratedFiles\ui_$(InputName).h&quot; &quot;$(InputPath)&quot;&#x0D;&#x0A;"
7561
+ AdditionalDependencies="$(QTDIR)\bin\uic.exe"
7562
+ Outputs="&quot;..\..\shared\qt\rhodes\GeneratedFiles\ui_$(InputName).h&quot;"
7527
7563
  />
7528
7564
  </FileConfiguration>
7529
7565
  <FileConfiguration
@@ -7682,10 +7718,10 @@
7682
7718
  >
7683
7719
  <FileConfiguration
7684
7720
  Name="Debug|Win32"
7685
- ExcludedFromBuild="true"
7686
7721
  >
7687
7722
  <Tool
7688
7723
  Name="VCCLCompilerTool"
7724
+ UsePrecompiledHeader="0"
7689
7725
  />
7690
7726
  </FileConfiguration>
7691
7727
  <FileConfiguration
@@ -7722,10 +7758,10 @@
7722
7758
  </FileConfiguration>
7723
7759
  <FileConfiguration
7724
7760
  Name="Release|Win32"
7725
- ExcludedFromBuild="true"
7726
7761
  >
7727
7762
  <Tool
7728
7763
  Name="VCCLCompilerTool"
7764
+ UsePrecompiledHeader="0"
7729
7765
  />
7730
7766
  </FileConfiguration>
7731
7767
  <FileConfiguration
@@ -7878,7 +7914,6 @@
7878
7914
  >
7879
7915
  <FileConfiguration
7880
7916
  Name="Debug|Win32"
7881
- ExcludedFromBuild="true"
7882
7917
  >
7883
7918
  <Tool
7884
7919
  Name="VCCustomBuildTool"
@@ -7918,7 +7953,6 @@
7918
7953
  </FileConfiguration>
7919
7954
  <FileConfiguration
7920
7955
  Name="Release|Win32"
7921
- ExcludedFromBuild="true"
7922
7956
  >
7923
7957
  <Tool
7924
7958
  Name="VCCustomBuildTool"
@@ -8072,10 +8106,10 @@
8072
8106
  >
8073
8107
  <FileConfiguration
8074
8108
  Name="Debug|Win32"
8075
- ExcludedFromBuild="true"
8076
8109
  >
8077
8110
  <Tool
8078
8111
  Name="VCCLCompilerTool"
8112
+ UsePrecompiledHeader="0"
8079
8113
  />
8080
8114
  </FileConfiguration>
8081
8115
  <FileConfiguration
@@ -8112,10 +8146,10 @@
8112
8146
  </FileConfiguration>
8113
8147
  <FileConfiguration
8114
8148
  Name="Release|Win32"
8115
- ExcludedFromBuild="true"
8116
8149
  >
8117
8150
  <Tool
8118
8151
  Name="VCCLCompilerTool"
8152
+ UsePrecompiledHeader="0"
8119
8153
  />
8120
8154
  </FileConfiguration>
8121
8155
  <FileConfiguration
@@ -8268,10 +8302,13 @@
8268
8302
  >
8269
8303
  <FileConfiguration
8270
8304
  Name="Debug|Win32"
8271
- ExcludedFromBuild="true"
8272
8305
  >
8273
8306
  <Tool
8274
8307
  Name="VCCustomBuildTool"
8308
+ Description="Moc&apos;ing $(InputFileName)..."
8309
+ CommandLine="&quot;$(QTDIR)\bin\moc.exe&quot; -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_WEBKIT_LIB &quot;-I.&quot; &quot;-I..\..\shared\qt\rhodes\GeneratedFiles&quot; &quot;-I$(QTDIR)\include&quot; &quot;-I..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\.&quot; &quot;-I$(QTDIR)\include\qtmain&quot; &quot;-I$(QTDIR)\include\QtCore&quot; &quot;-I$(QTDIR)\include\QtGui&quot; &quot;-I$(QTDIR)\include\QtWebKit&quot; &quot;..\..\shared\qt\rhodes\QtWebInspector.h&quot; -o &quot;..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp&quot;&#x0D;&#x0A;"
8310
+ AdditionalDependencies="&quot;$(QTDIR)\bin\moc.exe&quot;;$(InputPath)"
8311
+ Outputs="&quot;..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp&quot;"
8275
8312
  />
8276
8313
  </FileConfiguration>
8277
8314
  <FileConfiguration
@@ -8308,10 +8345,13 @@
8308
8345
  </FileConfiguration>
8309
8346
  <FileConfiguration
8310
8347
  Name="Release|Win32"
8311
- ExcludedFromBuild="true"
8312
8348
  >
8313
8349
  <Tool
8314
8350
  Name="VCCustomBuildTool"
8351
+ Description="Moc&apos;ing $(InputFileName)..."
8352
+ CommandLine="&quot;$(QTDIR)\bin\moc.exe&quot; -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_WEBKIT_LIB &quot;-I..\..\shared\qt\rhodes\GeneratedFiles&quot; &quot;-I$(QTDIR)\include&quot; &quot;-I..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\.&quot; &quot;-I$(QTDIR)\include\qtmain&quot; &quot;-I$(QTDIR)\include\QtCore&quot; &quot;-I$(QTDIR)\include\QtGui&quot; &quot;-I$(QTDIR)\include\QtWebKit&quot; &quot;-I.&quot; &quot;..\..\shared\qt\rhodes\QtWebInspector.h&quot; -o &quot;..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp&quot;&#x0D;&#x0A;"
8353
+ AdditionalDependencies="&quot;$(QTDIR)\bin\moc.exe&quot;;$(InputPath)"
8354
+ Outputs="&quot;..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp&quot;"
8315
8355
  />
8316
8356
  </FileConfiguration>
8317
8357
  <FileConfiguration
@@ -8470,10 +8510,13 @@
8470
8510
  >
8471
8511
  <FileConfiguration
8472
8512
  Name="Debug|Win32"
8473
- ExcludedFromBuild="true"
8474
8513
  >
8475
8514
  <Tool
8476
8515
  Name="VCCustomBuildTool"
8516
+ Description="Uic&apos;ing $(InputFileName)..."
8517
+ CommandLine="&quot;$(QTDIR)\bin\uic.exe&quot; -o &quot;..\..\shared\qt\rhodes\GeneratedFiles\ui_$(InputName).h&quot; &quot;$(InputPath)&quot;&#x0D;&#x0A;"
8518
+ AdditionalDependencies="$(QTDIR)\bin\uic.exe"
8519
+ Outputs="&quot;..\..\shared\qt\rhodes\GeneratedFiles\ui_$(InputName).h&quot;"
8477
8520
  />
8478
8521
  </FileConfiguration>
8479
8522
  <FileConfiguration
@@ -8510,10 +8553,13 @@
8510
8553
  </FileConfiguration>
8511
8554
  <FileConfiguration
8512
8555
  Name="Release|Win32"
8513
- ExcludedFromBuild="true"
8514
8556
  >
8515
8557
  <Tool
8516
8558
  Name="VCCustomBuildTool"
8559
+ Description="Uic&apos;ing $(InputFileName)..."
8560
+ CommandLine="&quot;$(QTDIR)\bin\uic.exe&quot; -o &quot;..\..\shared\qt\rhodes\GeneratedFiles\ui_$(InputName).h&quot; &quot;$(InputPath)&quot;&#x0D;&#x0A;"
8561
+ AdditionalDependencies="$(QTDIR)\bin\uic.exe"
8562
+ Outputs="&quot;..\..\shared\qt\rhodes\GeneratedFiles\ui_$(InputName).h&quot;"
8517
8563
  />
8518
8564
  </FileConfiguration>
8519
8565
  <FileConfiguration
@@ -8676,7 +8722,6 @@
8676
8722
  >
8677
8723
  <FileConfiguration
8678
8724
  Name="Debug|Win32"
8679
- ExcludedFromBuild="true"
8680
8725
  >
8681
8726
  <Tool
8682
8727
  Name="VCCustomBuildTool"
@@ -8716,7 +8761,6 @@
8716
8761
  </FileConfiguration>
8717
8762
  <FileConfiguration
8718
8763
  Name="Release|Win32"
8719
- ExcludedFromBuild="true"
8720
8764
  >
8721
8765
  <Tool
8722
8766
  Name="VCCustomBuildTool"
@@ -8870,7 +8914,6 @@
8870
8914
  >
8871
8915
  <FileConfiguration
8872
8916
  Name="Debug|Win32"
8873
- ExcludedFromBuild="true"
8874
8917
  >
8875
8918
  <Tool
8876
8919
  Name="VCCustomBuildTool"
@@ -8910,7 +8953,6 @@
8910
8953
  </FileConfiguration>
8911
8954
  <FileConfiguration
8912
8955
  Name="Release|Win32"
8913
- ExcludedFromBuild="true"
8914
8956
  >
8915
8957
  <Tool
8916
8958
  Name="VCCustomBuildTool"
@@ -9064,7 +9106,6 @@
9064
9106
  >
9065
9107
  <FileConfiguration
9066
9108
  Name="Debug|Win32"
9067
- ExcludedFromBuild="true"
9068
9109
  >
9069
9110
  <Tool
9070
9111
  Name="VCCustomBuildTool"
@@ -9104,7 +9145,6 @@
9104
9145
  </FileConfiguration>
9105
9146
  <FileConfiguration
9106
9147
  Name="Release|Win32"
9107
- ExcludedFromBuild="true"
9108
9148
  >
9109
9149
  <Tool
9110
9150
  Name="VCCustomBuildTool"
@@ -9258,7 +9298,6 @@
9258
9298
  >
9259
9299
  <FileConfiguration
9260
9300
  Name="Debug|Win32"
9261
- ExcludedFromBuild="true"
9262
9301
  >
9263
9302
  <Tool
9264
9303
  Name="VCCustomBuildTool"
@@ -9298,7 +9337,6 @@
9298
9337
  </FileConfiguration>
9299
9338
  <FileConfiguration
9300
9339
  Name="Release|Win32"
9301
- ExcludedFromBuild="true"
9302
9340
  >
9303
9341
  <Tool
9304
9342
  Name="VCCustomBuildTool"
@@ -9451,10 +9489,10 @@
9451
9489
  Name="Debug"
9452
9490
  >
9453
9491
  <File
9454
- RelativePath="..\..\shared\qt\rhodes\GeneratedFiles\SimulatorDebug\moc_DateTimeDialog.cpp"
9492
+ RelativePath="..\..\shared\qt\rhodes\GeneratedFiles\Debug\moc_DateTimeDialog.cpp"
9455
9493
  >
9456
9494
  <FileConfiguration
9457
- Name="Debug|Win32"
9495
+ Name="SimulatorDebug|Win32"
9458
9496
  ExcludedFromBuild="true"
9459
9497
  >
9460
9498
  <Tool
@@ -9546,7 +9584,7 @@
9546
9584
  />
9547
9585
  </FileConfiguration>
9548
9586
  <FileConfiguration
9549
- Name="SimulatorDebug|Win32"
9587
+ Name="Debug|Win32"
9550
9588
  >
9551
9589
  <Tool
9552
9590
  Name="VCCLCompilerTool"
@@ -9673,10 +9711,10 @@
9673
9711
  </FileConfiguration>
9674
9712
  </File>
9675
9713
  <File
9676
- RelativePath="..\..\shared\qt\rhodes\GeneratedFiles\SimulatorDebug\moc_ExternalWebView.cpp"
9714
+ RelativePath="..\..\shared\qt\rhodes\GeneratedFiles\Debug\moc_ExternalWebView.cpp"
9677
9715
  >
9678
9716
  <FileConfiguration
9679
- Name="Debug|Win32"
9717
+ Name="SimulatorDebug|Win32"
9680
9718
  ExcludedFromBuild="true"
9681
9719
  >
9682
9720
  <Tool
@@ -9768,7 +9806,7 @@
9768
9806
  />
9769
9807
  </FileConfiguration>
9770
9808
  <FileConfiguration
9771
- Name="SimulatorDebug|Win32"
9809
+ Name="Debug|Win32"
9772
9810
  >
9773
9811
  <Tool
9774
9812
  Name="VCCLCompilerTool"
@@ -9895,10 +9933,10 @@
9895
9933
  </FileConfiguration>
9896
9934
  </File>
9897
9935
  <File
9898
- RelativePath="..\..\shared\qt\rhodes\GeneratedFiles\SimulatorDebug\moc_QtMainWindow.cpp"
9936
+ RelativePath="..\..\shared\qt\rhodes\GeneratedFiles\Debug\moc_QtMainWindow.cpp"
9899
9937
  >
9900
9938
  <FileConfiguration
9901
- Name="Debug|Win32"
9939
+ Name="SimulatorDebug|Win32"
9902
9940
  ExcludedFromBuild="true"
9903
9941
  >
9904
9942
  <Tool
@@ -9990,7 +10028,7 @@
9990
10028
  />
9991
10029
  </FileConfiguration>
9992
10030
  <FileConfiguration
9993
- Name="SimulatorDebug|Win32"
10031
+ Name="Debug|Win32"
9994
10032
  >
9995
10033
  <Tool
9996
10034
  Name="VCCLCompilerTool"
@@ -10117,10 +10155,10 @@
10117
10155
  </FileConfiguration>
10118
10156
  </File>
10119
10157
  <File
10120
- RelativePath="..\..\shared\qt\rhodes\GeneratedFiles\SimulatorDebug\moc_QtWebInspector.cpp"
10158
+ RelativePath="..\..\shared\qt\rhodes\GeneratedFiles\Debug\moc_QtWebInspector.cpp"
10121
10159
  >
10122
10160
  <FileConfiguration
10123
- Name="Debug|Win32"
10161
+ Name="SimulatorDebug|Win32"
10124
10162
  ExcludedFromBuild="true"
10125
10163
  >
10126
10164
  <Tool
@@ -10212,7 +10250,7 @@
10212
10250
  />
10213
10251
  </FileConfiguration>
10214
10252
  <FileConfiguration
10215
- Name="SimulatorDebug|Win32"
10253
+ Name="Debug|Win32"
10216
10254
  >
10217
10255
  <Tool
10218
10256
  Name="VCCLCompilerTool"
@@ -10339,16 +10377,14 @@
10339
10377
  </FileConfiguration>
10340
10378
  </File>
10341
10379
  <File
10342
- RelativePath="..\..\shared\qt\rhodes\GeneratedFiles\SimulatorDebug\qrc_simulator.cpp"
10380
+ RelativePath="..\..\shared\qt\rhodes\GeneratedFiles\Debug\qrc_simulator.cpp"
10343
10381
  >
10344
10382
  <FileConfiguration
10345
10383
  Name="Debug|Win32"
10346
- ExcludedFromBuild="true"
10347
10384
  >
10348
10385
  <Tool
10349
10386
  Name="VCCLCompilerTool"
10350
- ObjectFile="$(IntDir)\$(InputName)1.obj"
10351
- XMLDocumentationFileName="$(IntDir)\$(InputName)1.xdc"
10387
+ UsePrecompiledHeader="0"
10352
10388
  />
10353
10389
  </FileConfiguration>
10354
10390
  <FileConfiguration
@@ -10435,10 +10471,12 @@
10435
10471
  </FileConfiguration>
10436
10472
  <FileConfiguration
10437
10473
  Name="SimulatorDebug|Win32"
10474
+ ExcludedFromBuild="true"
10438
10475
  >
10439
10476
  <Tool
10440
10477
  Name="VCCLCompilerTool"
10441
- UsePrecompiledHeader="0"
10478
+ ObjectFile="$(IntDir)\$(InputName)1.obj"
10479
+ XMLDocumentationFileName="$(IntDir)\$(InputName)1.xdc"
10442
10480
  />
10443
10481
  </FileConfiguration>
10444
10482
  <FileConfiguration
@@ -10564,6 +10602,2104 @@
10564
10602
  <Filter
10565
10603
  Name="Release"
10566
10604
  >
10605
+ <File
10606
+ RelativePath="..\..\shared\qt\rhodes\GeneratedFiles\Release\moc_DateTimeDialog.cpp"
10607
+ >
10608
+ <FileConfiguration
10609
+ Name="Debug|Win32"
10610
+ ExcludedFromBuild="true"
10611
+ >
10612
+ <Tool
10613
+ Name="VCCLCompilerTool"
10614
+ />
10615
+ </FileConfiguration>
10616
+ <FileConfiguration
10617
+ Name="Debug|Pocket PC 2003 (ARMV4)"
10618
+ ExcludedFromBuild="true"
10619
+ >
10620
+ <Tool
10621
+ Name="VCCLCompilerTool"
10622
+ />
10623
+ </FileConfiguration>
10624
+ <FileConfiguration
10625
+ Name="Debug|Smartphone 2003 (ARMV4)"
10626
+ ExcludedFromBuild="true"
10627
+ >
10628
+ <Tool
10629
+ Name="VCCLCompilerTool"
10630
+ />
10631
+ </FileConfiguration>
10632
+ <FileConfiguration
10633
+ Name="Debug|MC3000c50b (ARMV4I)"
10634
+ ExcludedFromBuild="true"
10635
+ >
10636
+ <Tool
10637
+ Name="VCCLCompilerTool"
10638
+ />
10639
+ </FileConfiguration>
10640
+ <FileConfiguration
10641
+ Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)"
10642
+ ExcludedFromBuild="true"
10643
+ >
10644
+ <Tool
10645
+ Name="VCCLCompilerTool"
10646
+ />
10647
+ </FileConfiguration>
10648
+ <FileConfiguration
10649
+ Name="SimulatorRelease|Win32"
10650
+ ExcludedFromBuild="true"
10651
+ >
10652
+ <Tool
10653
+ Name="VCCLCompilerTool"
10654
+ />
10655
+ </FileConfiguration>
10656
+ <FileConfiguration
10657
+ Name="Release|Pocket PC 2003 (ARMV4)"
10658
+ ExcludedFromBuild="true"
10659
+ >
10660
+ <Tool
10661
+ Name="VCCLCompilerTool"
10662
+ />
10663
+ </FileConfiguration>
10664
+ <FileConfiguration
10665
+ Name="Release|Smartphone 2003 (ARMV4)"
10666
+ ExcludedFromBuild="true"
10667
+ >
10668
+ <Tool
10669
+ Name="VCCLCompilerTool"
10670
+ />
10671
+ </FileConfiguration>
10672
+ <FileConfiguration
10673
+ Name="Release|MC3000c50b (ARMV4I)"
10674
+ ExcludedFromBuild="true"
10675
+ >
10676
+ <Tool
10677
+ Name="VCCLCompilerTool"
10678
+ />
10679
+ </FileConfiguration>
10680
+ <FileConfiguration
10681
+ Name="Release|Windows Mobile 6 Professional SDK (ARMV4I)"
10682
+ ExcludedFromBuild="true"
10683
+ >
10684
+ <Tool
10685
+ Name="VCCLCompilerTool"
10686
+ />
10687
+ </FileConfiguration>
10688
+ <FileConfiguration
10689
+ Name="SimulatorDebug|Win32"
10690
+ ExcludedFromBuild="true"
10691
+ >
10692
+ <Tool
10693
+ Name="VCCLCompilerTool"
10694
+ />
10695
+ </FileConfiguration>
10696
+ <FileConfiguration
10697
+ Name="SimulatorDebug|Pocket PC 2003 (ARMV4)"
10698
+ ExcludedFromBuild="true"
10699
+ >
10700
+ <Tool
10701
+ Name="VCCLCompilerTool"
10702
+ />
10703
+ </FileConfiguration>
10704
+ <FileConfiguration
10705
+ Name="SimulatorDebug|Smartphone 2003 (ARMV4)"
10706
+ ExcludedFromBuild="true"
10707
+ >
10708
+ <Tool
10709
+ Name="VCCLCompilerTool"
10710
+ />
10711
+ </FileConfiguration>
10712
+ <FileConfiguration
10713
+ Name="SimulatorDebug|MC3000c50b (ARMV4I)"
10714
+ ExcludedFromBuild="true"
10715
+ >
10716
+ <Tool
10717
+ Name="VCCLCompilerTool"
10718
+ />
10719
+ </FileConfiguration>
10720
+ <FileConfiguration
10721
+ Name="SimulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
10722
+ ExcludedFromBuild="true"
10723
+ >
10724
+ <Tool
10725
+ Name="VCCLCompilerTool"
10726
+ />
10727
+ </FileConfiguration>
10728
+ <FileConfiguration
10729
+ Name="Release|Win32"
10730
+ >
10731
+ <Tool
10732
+ Name="VCCLCompilerTool"
10733
+ UsePrecompiledHeader="0"
10734
+ />
10735
+ </FileConfiguration>
10736
+ <FileConfiguration
10737
+ Name="SimulatorRelease|Pocket PC 2003 (ARMV4)"
10738
+ ExcludedFromBuild="true"
10739
+ >
10740
+ <Tool
10741
+ Name="VCCLCompilerTool"
10742
+ />
10743
+ </FileConfiguration>
10744
+ <FileConfiguration
10745
+ Name="SimulatorRelease|Smartphone 2003 (ARMV4)"
10746
+ ExcludedFromBuild="true"
10747
+ >
10748
+ <Tool
10749
+ Name="VCCLCompilerTool"
10750
+ />
10751
+ </FileConfiguration>
10752
+ <FileConfiguration
10753
+ Name="SimulatorRelease|MC3000c50b (ARMV4I)"
10754
+ ExcludedFromBuild="true"
10755
+ >
10756
+ <Tool
10757
+ Name="VCCLCompilerTool"
10758
+ />
10759
+ </FileConfiguration>
10760
+ <FileConfiguration
10761
+ Name="SimulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
10762
+ ExcludedFromBuild="true"
10763
+ >
10764
+ <Tool
10765
+ Name="VCCLCompilerTool"
10766
+ />
10767
+ </FileConfiguration>
10768
+ <FileConfiguration
10769
+ Name="Debug|Windows Mobile 6.5.3 Professional DTK (ARMV4I)"
10770
+ ExcludedFromBuild="true"
10771
+ >
10772
+ <Tool
10773
+ Name="VCCLCompilerTool"
10774
+ />
10775
+ </FileConfiguration>
10776
+ <FileConfiguration
10777
+ Name="Release|Windows Mobile 6.5.3 Professional DTK (ARMV4I)"
10778
+ ExcludedFromBuild="true"
10779
+ >
10780
+ <Tool
10781
+ Name="VCCLCompilerTool"
10782
+ />
10783
+ </FileConfiguration>
10784
+ <FileConfiguration
10785
+ Name="SimulatorDebug|Windows Mobile 6.5.3 Professional DTK (ARMV4I)"
10786
+ ExcludedFromBuild="true"
10787
+ >
10788
+ <Tool
10789
+ Name="VCCLCompilerTool"
10790
+ />
10791
+ </FileConfiguration>
10792
+ <FileConfiguration
10793
+ Name="SimulatorRelease|Windows Mobile 6.5.3 Professional DTK (ARMV4I)"
10794
+ ExcludedFromBuild="true"
10795
+ >
10796
+ <Tool
10797
+ Name="VCCLCompilerTool"
10798
+ />
10799
+ </FileConfiguration>
10800
+ </File>
10801
+ <File
10802
+ RelativePath="..\..\shared\qt\rhodes\GeneratedFiles\Release\moc_ExternalWebView.cpp"
10803
+ >
10804
+ <FileConfiguration
10805
+ Name="Debug|Win32"
10806
+ ExcludedFromBuild="true"
10807
+ >
10808
+ <Tool
10809
+ Name="VCCLCompilerTool"
10810
+ />
10811
+ </FileConfiguration>
10812
+ <FileConfiguration
10813
+ Name="Debug|Pocket PC 2003 (ARMV4)"
10814
+ ExcludedFromBuild="true"
10815
+ >
10816
+ <Tool
10817
+ Name="VCCLCompilerTool"
10818
+ />
10819
+ </FileConfiguration>
10820
+ <FileConfiguration
10821
+ Name="Debug|Smartphone 2003 (ARMV4)"
10822
+ ExcludedFromBuild="true"
10823
+ >
10824
+ <Tool
10825
+ Name="VCCLCompilerTool"
10826
+ />
10827
+ </FileConfiguration>
10828
+ <FileConfiguration
10829
+ Name="Debug|MC3000c50b (ARMV4I)"
10830
+ ExcludedFromBuild="true"
10831
+ >
10832
+ <Tool
10833
+ Name="VCCLCompilerTool"
10834
+ />
10835
+ </FileConfiguration>
10836
+ <FileConfiguration
10837
+ Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)"
10838
+ ExcludedFromBuild="true"
10839
+ >
10840
+ <Tool
10841
+ Name="VCCLCompilerTool"
10842
+ />
10843
+ </FileConfiguration>
10844
+ <FileConfiguration
10845
+ Name="SimulatorRelease|Win32"
10846
+ ExcludedFromBuild="true"
10847
+ >
10848
+ <Tool
10849
+ Name="VCCLCompilerTool"
10850
+ />
10851
+ </FileConfiguration>
10852
+ <FileConfiguration
10853
+ Name="Release|Pocket PC 2003 (ARMV4)"
10854
+ ExcludedFromBuild="true"
10855
+ >
10856
+ <Tool
10857
+ Name="VCCLCompilerTool"
10858
+ />
10859
+ </FileConfiguration>
10860
+ <FileConfiguration
10861
+ Name="Release|Smartphone 2003 (ARMV4)"
10862
+ ExcludedFromBuild="true"
10863
+ >
10864
+ <Tool
10865
+ Name="VCCLCompilerTool"
10866
+ />
10867
+ </FileConfiguration>
10868
+ <FileConfiguration
10869
+ Name="Release|MC3000c50b (ARMV4I)"
10870
+ ExcludedFromBuild="true"
10871
+ >
10872
+ <Tool
10873
+ Name="VCCLCompilerTool"
10874
+ />
10875
+ </FileConfiguration>
10876
+ <FileConfiguration
10877
+ Name="Release|Windows Mobile 6 Professional SDK (ARMV4I)"
10878
+ ExcludedFromBuild="true"
10879
+ >
10880
+ <Tool
10881
+ Name="VCCLCompilerTool"
10882
+ />
10883
+ </FileConfiguration>
10884
+ <FileConfiguration
10885
+ Name="SimulatorDebug|Win32"
10886
+ ExcludedFromBuild="true"
10887
+ >
10888
+ <Tool
10889
+ Name="VCCLCompilerTool"
10890
+ />
10891
+ </FileConfiguration>
10892
+ <FileConfiguration
10893
+ Name="SimulatorDebug|Pocket PC 2003 (ARMV4)"
10894
+ ExcludedFromBuild="true"
10895
+ >
10896
+ <Tool
10897
+ Name="VCCLCompilerTool"
10898
+ />
10899
+ </FileConfiguration>
10900
+ <FileConfiguration
10901
+ Name="SimulatorDebug|Smartphone 2003 (ARMV4)"
10902
+ ExcludedFromBuild="true"
10903
+ >
10904
+ <Tool
10905
+ Name="VCCLCompilerTool"
10906
+ />
10907
+ </FileConfiguration>
10908
+ <FileConfiguration
10909
+ Name="SimulatorDebug|MC3000c50b (ARMV4I)"
10910
+ ExcludedFromBuild="true"
10911
+ >
10912
+ <Tool
10913
+ Name="VCCLCompilerTool"
10914
+ />
10915
+ </FileConfiguration>
10916
+ <FileConfiguration
10917
+ Name="SimulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
10918
+ ExcludedFromBuild="true"
10919
+ >
10920
+ <Tool
10921
+ Name="VCCLCompilerTool"
10922
+ />
10923
+ </FileConfiguration>
10924
+ <FileConfiguration
10925
+ Name="Release|Win32"
10926
+ >
10927
+ <Tool
10928
+ Name="VCCLCompilerTool"
10929
+ UsePrecompiledHeader="0"
10930
+ />
10931
+ </FileConfiguration>
10932
+ <FileConfiguration
10933
+ Name="SimulatorRelease|Pocket PC 2003 (ARMV4)"
10934
+ ExcludedFromBuild="true"
10935
+ >
10936
+ <Tool
10937
+ Name="VCCLCompilerTool"
10938
+ />
10939
+ </FileConfiguration>
10940
+ <FileConfiguration
10941
+ Name="SimulatorRelease|Smartphone 2003 (ARMV4)"
10942
+ ExcludedFromBuild="true"
10943
+ >
10944
+ <Tool
10945
+ Name="VCCLCompilerTool"
10946
+ />
10947
+ </FileConfiguration>
10948
+ <FileConfiguration
10949
+ Name="SimulatorRelease|MC3000c50b (ARMV4I)"
10950
+ ExcludedFromBuild="true"
10951
+ >
10952
+ <Tool
10953
+ Name="VCCLCompilerTool"
10954
+ />
10955
+ </FileConfiguration>
10956
+ <FileConfiguration
10957
+ Name="SimulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
10958
+ ExcludedFromBuild="true"
10959
+ >
10960
+ <Tool
10961
+ Name="VCCLCompilerTool"
10962
+ />
10963
+ </FileConfiguration>
10964
+ <FileConfiguration
10965
+ Name="Debug|Windows Mobile 6.5.3 Professional DTK (ARMV4I)"
10966
+ ExcludedFromBuild="true"
10967
+ >
10968
+ <Tool
10969
+ Name="VCCLCompilerTool"
10970
+ />
10971
+ </FileConfiguration>
10972
+ <FileConfiguration
10973
+ Name="Release|Windows Mobile 6.5.3 Professional DTK (ARMV4I)"
10974
+ ExcludedFromBuild="true"
10975
+ >
10976
+ <Tool
10977
+ Name="VCCLCompilerTool"
10978
+ />
10979
+ </FileConfiguration>
10980
+ <FileConfiguration
10981
+ Name="SimulatorDebug|Windows Mobile 6.5.3 Professional DTK (ARMV4I)"
10982
+ ExcludedFromBuild="true"
10983
+ >
10984
+ <Tool
10985
+ Name="VCCLCompilerTool"
10986
+ />
10987
+ </FileConfiguration>
10988
+ <FileConfiguration
10989
+ Name="SimulatorRelease|Windows Mobile 6.5.3 Professional DTK (ARMV4I)"
10990
+ ExcludedFromBuild="true"
10991
+ >
10992
+ <Tool
10993
+ Name="VCCLCompilerTool"
10994
+ />
10995
+ </FileConfiguration>
10996
+ </File>
10997
+ <File
10998
+ RelativePath="..\..\shared\qt\rhodes\GeneratedFiles\Release\moc_QtMainWindow.cpp"
10999
+ >
11000
+ <FileConfiguration
11001
+ Name="Debug|Win32"
11002
+ ExcludedFromBuild="true"
11003
+ >
11004
+ <Tool
11005
+ Name="VCCLCompilerTool"
11006
+ />
11007
+ </FileConfiguration>
11008
+ <FileConfiguration
11009
+ Name="Debug|Pocket PC 2003 (ARMV4)"
11010
+ ExcludedFromBuild="true"
11011
+ >
11012
+ <Tool
11013
+ Name="VCCLCompilerTool"
11014
+ />
11015
+ </FileConfiguration>
11016
+ <FileConfiguration
11017
+ Name="Debug|Smartphone 2003 (ARMV4)"
11018
+ ExcludedFromBuild="true"
11019
+ >
11020
+ <Tool
11021
+ Name="VCCLCompilerTool"
11022
+ />
11023
+ </FileConfiguration>
11024
+ <FileConfiguration
11025
+ Name="Debug|MC3000c50b (ARMV4I)"
11026
+ ExcludedFromBuild="true"
11027
+ >
11028
+ <Tool
11029
+ Name="VCCLCompilerTool"
11030
+ />
11031
+ </FileConfiguration>
11032
+ <FileConfiguration
11033
+ Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)"
11034
+ ExcludedFromBuild="true"
11035
+ >
11036
+ <Tool
11037
+ Name="VCCLCompilerTool"
11038
+ />
11039
+ </FileConfiguration>
11040
+ <FileConfiguration
11041
+ Name="SimulatorRelease|Win32"
11042
+ ExcludedFromBuild="true"
11043
+ >
11044
+ <Tool
11045
+ Name="VCCLCompilerTool"
11046
+ />
11047
+ </FileConfiguration>
11048
+ <FileConfiguration
11049
+ Name="Release|Pocket PC 2003 (ARMV4)"
11050
+ ExcludedFromBuild="true"
11051
+ >
11052
+ <Tool
11053
+ Name="VCCLCompilerTool"
11054
+ />
11055
+ </FileConfiguration>
11056
+ <FileConfiguration
11057
+ Name="Release|Smartphone 2003 (ARMV4)"
11058
+ ExcludedFromBuild="true"
11059
+ >
11060
+ <Tool
11061
+ Name="VCCLCompilerTool"
11062
+ />
11063
+ </FileConfiguration>
11064
+ <FileConfiguration
11065
+ Name="Release|MC3000c50b (ARMV4I)"
11066
+ ExcludedFromBuild="true"
11067
+ >
11068
+ <Tool
11069
+ Name="VCCLCompilerTool"
11070
+ />
11071
+ </FileConfiguration>
11072
+ <FileConfiguration
11073
+ Name="Release|Windows Mobile 6 Professional SDK (ARMV4I)"
11074
+ ExcludedFromBuild="true"
11075
+ >
11076
+ <Tool
11077
+ Name="VCCLCompilerTool"
11078
+ />
11079
+ </FileConfiguration>
11080
+ <FileConfiguration
11081
+ Name="SimulatorDebug|Win32"
11082
+ ExcludedFromBuild="true"
11083
+ >
11084
+ <Tool
11085
+ Name="VCCLCompilerTool"
11086
+ />
11087
+ </FileConfiguration>
11088
+ <FileConfiguration
11089
+ Name="SimulatorDebug|Pocket PC 2003 (ARMV4)"
11090
+ ExcludedFromBuild="true"
11091
+ >
11092
+ <Tool
11093
+ Name="VCCLCompilerTool"
11094
+ />
11095
+ </FileConfiguration>
11096
+ <FileConfiguration
11097
+ Name="SimulatorDebug|Smartphone 2003 (ARMV4)"
11098
+ ExcludedFromBuild="true"
11099
+ >
11100
+ <Tool
11101
+ Name="VCCLCompilerTool"
11102
+ />
11103
+ </FileConfiguration>
11104
+ <FileConfiguration
11105
+ Name="SimulatorDebug|MC3000c50b (ARMV4I)"
11106
+ ExcludedFromBuild="true"
11107
+ >
11108
+ <Tool
11109
+ Name="VCCLCompilerTool"
11110
+ />
11111
+ </FileConfiguration>
11112
+ <FileConfiguration
11113
+ Name="SimulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
11114
+ ExcludedFromBuild="true"
11115
+ >
11116
+ <Tool
11117
+ Name="VCCLCompilerTool"
11118
+ />
11119
+ </FileConfiguration>
11120
+ <FileConfiguration
11121
+ Name="Release|Win32"
11122
+ >
11123
+ <Tool
11124
+ Name="VCCLCompilerTool"
11125
+ UsePrecompiledHeader="0"
11126
+ />
11127
+ </FileConfiguration>
11128
+ <FileConfiguration
11129
+ Name="SimulatorRelease|Pocket PC 2003 (ARMV4)"
11130
+ ExcludedFromBuild="true"
11131
+ >
11132
+ <Tool
11133
+ Name="VCCLCompilerTool"
11134
+ />
11135
+ </FileConfiguration>
11136
+ <FileConfiguration
11137
+ Name="SimulatorRelease|Smartphone 2003 (ARMV4)"
11138
+ ExcludedFromBuild="true"
11139
+ >
11140
+ <Tool
11141
+ Name="VCCLCompilerTool"
11142
+ />
11143
+ </FileConfiguration>
11144
+ <FileConfiguration
11145
+ Name="SimulatorRelease|MC3000c50b (ARMV4I)"
11146
+ ExcludedFromBuild="true"
11147
+ >
11148
+ <Tool
11149
+ Name="VCCLCompilerTool"
11150
+ />
11151
+ </FileConfiguration>
11152
+ <FileConfiguration
11153
+ Name="SimulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
11154
+ ExcludedFromBuild="true"
11155
+ >
11156
+ <Tool
11157
+ Name="VCCLCompilerTool"
11158
+ />
11159
+ </FileConfiguration>
11160
+ <FileConfiguration
11161
+ Name="Debug|Windows Mobile 6.5.3 Professional DTK (ARMV4I)"
11162
+ ExcludedFromBuild="true"
11163
+ >
11164
+ <Tool
11165
+ Name="VCCLCompilerTool"
11166
+ />
11167
+ </FileConfiguration>
11168
+ <FileConfiguration
11169
+ Name="Release|Windows Mobile 6.5.3 Professional DTK (ARMV4I)"
11170
+ ExcludedFromBuild="true"
11171
+ >
11172
+ <Tool
11173
+ Name="VCCLCompilerTool"
11174
+ />
11175
+ </FileConfiguration>
11176
+ <FileConfiguration
11177
+ Name="SimulatorDebug|Windows Mobile 6.5.3 Professional DTK (ARMV4I)"
11178
+ ExcludedFromBuild="true"
11179
+ >
11180
+ <Tool
11181
+ Name="VCCLCompilerTool"
11182
+ />
11183
+ </FileConfiguration>
11184
+ <FileConfiguration
11185
+ Name="SimulatorRelease|Windows Mobile 6.5.3 Professional DTK (ARMV4I)"
11186
+ ExcludedFromBuild="true"
11187
+ >
11188
+ <Tool
11189
+ Name="VCCLCompilerTool"
11190
+ />
11191
+ </FileConfiguration>
11192
+ </File>
11193
+ <File
11194
+ RelativePath="..\..\shared\qt\rhodes\GeneratedFiles\Release\moc_QtWebInspector.cpp"
11195
+ >
11196
+ <FileConfiguration
11197
+ Name="Debug|Win32"
11198
+ ExcludedFromBuild="true"
11199
+ >
11200
+ <Tool
11201
+ Name="VCCLCompilerTool"
11202
+ />
11203
+ </FileConfiguration>
11204
+ <FileConfiguration
11205
+ Name="Debug|Pocket PC 2003 (ARMV4)"
11206
+ ExcludedFromBuild="true"
11207
+ >
11208
+ <Tool
11209
+ Name="VCCLCompilerTool"
11210
+ />
11211
+ </FileConfiguration>
11212
+ <FileConfiguration
11213
+ Name="Debug|Smartphone 2003 (ARMV4)"
11214
+ ExcludedFromBuild="true"
11215
+ >
11216
+ <Tool
11217
+ Name="VCCLCompilerTool"
11218
+ />
11219
+ </FileConfiguration>
11220
+ <FileConfiguration
11221
+ Name="Debug|MC3000c50b (ARMV4I)"
11222
+ ExcludedFromBuild="true"
11223
+ >
11224
+ <Tool
11225
+ Name="VCCLCompilerTool"
11226
+ />
11227
+ </FileConfiguration>
11228
+ <FileConfiguration
11229
+ Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)"
11230
+ ExcludedFromBuild="true"
11231
+ >
11232
+ <Tool
11233
+ Name="VCCLCompilerTool"
11234
+ />
11235
+ </FileConfiguration>
11236
+ <FileConfiguration
11237
+ Name="SimulatorRelease|Win32"
11238
+ ExcludedFromBuild="true"
11239
+ >
11240
+ <Tool
11241
+ Name="VCCLCompilerTool"
11242
+ />
11243
+ </FileConfiguration>
11244
+ <FileConfiguration
11245
+ Name="Release|Pocket PC 2003 (ARMV4)"
11246
+ ExcludedFromBuild="true"
11247
+ >
11248
+ <Tool
11249
+ Name="VCCLCompilerTool"
11250
+ />
11251
+ </FileConfiguration>
11252
+ <FileConfiguration
11253
+ Name="Release|Smartphone 2003 (ARMV4)"
11254
+ ExcludedFromBuild="true"
11255
+ >
11256
+ <Tool
11257
+ Name="VCCLCompilerTool"
11258
+ />
11259
+ </FileConfiguration>
11260
+ <FileConfiguration
11261
+ Name="Release|MC3000c50b (ARMV4I)"
11262
+ ExcludedFromBuild="true"
11263
+ >
11264
+ <Tool
11265
+ Name="VCCLCompilerTool"
11266
+ />
11267
+ </FileConfiguration>
11268
+ <FileConfiguration
11269
+ Name="Release|Windows Mobile 6 Professional SDK (ARMV4I)"
11270
+ ExcludedFromBuild="true"
11271
+ >
11272
+ <Tool
11273
+ Name="VCCLCompilerTool"
11274
+ />
11275
+ </FileConfiguration>
11276
+ <FileConfiguration
11277
+ Name="SimulatorDebug|Win32"
11278
+ ExcludedFromBuild="true"
11279
+ >
11280
+ <Tool
11281
+ Name="VCCLCompilerTool"
11282
+ />
11283
+ </FileConfiguration>
11284
+ <FileConfiguration
11285
+ Name="SimulatorDebug|Pocket PC 2003 (ARMV4)"
11286
+ ExcludedFromBuild="true"
11287
+ >
11288
+ <Tool
11289
+ Name="VCCLCompilerTool"
11290
+ />
11291
+ </FileConfiguration>
11292
+ <FileConfiguration
11293
+ Name="SimulatorDebug|Smartphone 2003 (ARMV4)"
11294
+ ExcludedFromBuild="true"
11295
+ >
11296
+ <Tool
11297
+ Name="VCCLCompilerTool"
11298
+ />
11299
+ </FileConfiguration>
11300
+ <FileConfiguration
11301
+ Name="SimulatorDebug|MC3000c50b (ARMV4I)"
11302
+ ExcludedFromBuild="true"
11303
+ >
11304
+ <Tool
11305
+ Name="VCCLCompilerTool"
11306
+ />
11307
+ </FileConfiguration>
11308
+ <FileConfiguration
11309
+ Name="SimulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
11310
+ ExcludedFromBuild="true"
11311
+ >
11312
+ <Tool
11313
+ Name="VCCLCompilerTool"
11314
+ />
11315
+ </FileConfiguration>
11316
+ <FileConfiguration
11317
+ Name="Release|Win32"
11318
+ >
11319
+ <Tool
11320
+ Name="VCCLCompilerTool"
11321
+ UsePrecompiledHeader="0"
11322
+ />
11323
+ </FileConfiguration>
11324
+ <FileConfiguration
11325
+ Name="SimulatorRelease|Pocket PC 2003 (ARMV4)"
11326
+ ExcludedFromBuild="true"
11327
+ >
11328
+ <Tool
11329
+ Name="VCCLCompilerTool"
11330
+ />
11331
+ </FileConfiguration>
11332
+ <FileConfiguration
11333
+ Name="SimulatorRelease|Smartphone 2003 (ARMV4)"
11334
+ ExcludedFromBuild="true"
11335
+ >
11336
+ <Tool
11337
+ Name="VCCLCompilerTool"
11338
+ />
11339
+ </FileConfiguration>
11340
+ <FileConfiguration
11341
+ Name="SimulatorRelease|MC3000c50b (ARMV4I)"
11342
+ ExcludedFromBuild="true"
11343
+ >
11344
+ <Tool
11345
+ Name="VCCLCompilerTool"
11346
+ />
11347
+ </FileConfiguration>
11348
+ <FileConfiguration
11349
+ Name="SimulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
11350
+ ExcludedFromBuild="true"
11351
+ >
11352
+ <Tool
11353
+ Name="VCCLCompilerTool"
11354
+ />
11355
+ </FileConfiguration>
11356
+ <FileConfiguration
11357
+ Name="Debug|Windows Mobile 6.5.3 Professional DTK (ARMV4I)"
11358
+ ExcludedFromBuild="true"
11359
+ >
11360
+ <Tool
11361
+ Name="VCCLCompilerTool"
11362
+ />
11363
+ </FileConfiguration>
11364
+ <FileConfiguration
11365
+ Name="Release|Windows Mobile 6.5.3 Professional DTK (ARMV4I)"
11366
+ ExcludedFromBuild="true"
11367
+ >
11368
+ <Tool
11369
+ Name="VCCLCompilerTool"
11370
+ />
11371
+ </FileConfiguration>
11372
+ <FileConfiguration
11373
+ Name="SimulatorDebug|Windows Mobile 6.5.3 Professional DTK (ARMV4I)"
11374
+ ExcludedFromBuild="true"
11375
+ >
11376
+ <Tool
11377
+ Name="VCCLCompilerTool"
11378
+ />
11379
+ </FileConfiguration>
11380
+ <FileConfiguration
11381
+ Name="SimulatorRelease|Windows Mobile 6.5.3 Professional DTK (ARMV4I)"
11382
+ ExcludedFromBuild="true"
11383
+ >
11384
+ <Tool
11385
+ Name="VCCLCompilerTool"
11386
+ />
11387
+ </FileConfiguration>
11388
+ </File>
11389
+ <File
11390
+ RelativePath="..\..\shared\qt\rhodes\GeneratedFiles\Release\qrc_simulator.cpp"
11391
+ >
11392
+ <FileConfiguration
11393
+ Name="Debug|Win32"
11394
+ ExcludedFromBuild="true"
11395
+ >
11396
+ <Tool
11397
+ Name="VCCLCompilerTool"
11398
+ />
11399
+ </FileConfiguration>
11400
+ <FileConfiguration
11401
+ Name="Debug|Pocket PC 2003 (ARMV4)"
11402
+ ExcludedFromBuild="true"
11403
+ >
11404
+ <Tool
11405
+ Name="VCCLCompilerTool"
11406
+ />
11407
+ </FileConfiguration>
11408
+ <FileConfiguration
11409
+ Name="Debug|Smartphone 2003 (ARMV4)"
11410
+ ExcludedFromBuild="true"
11411
+ >
11412
+ <Tool
11413
+ Name="VCCLCompilerTool"
11414
+ />
11415
+ </FileConfiguration>
11416
+ <FileConfiguration
11417
+ Name="Debug|MC3000c50b (ARMV4I)"
11418
+ ExcludedFromBuild="true"
11419
+ >
11420
+ <Tool
11421
+ Name="VCCLCompilerTool"
11422
+ />
11423
+ </FileConfiguration>
11424
+ <FileConfiguration
11425
+ Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)"
11426
+ ExcludedFromBuild="true"
11427
+ >
11428
+ <Tool
11429
+ Name="VCCLCompilerTool"
11430
+ />
11431
+ </FileConfiguration>
11432
+ <FileConfiguration
11433
+ Name="Release|Win32"
11434
+ >
11435
+ <Tool
11436
+ Name="VCCLCompilerTool"
11437
+ UsePrecompiledHeader="0"
11438
+ />
11439
+ </FileConfiguration>
11440
+ <FileConfiguration
11441
+ Name="Release|Pocket PC 2003 (ARMV4)"
11442
+ ExcludedFromBuild="true"
11443
+ >
11444
+ <Tool
11445
+ Name="VCCLCompilerTool"
11446
+ />
11447
+ </FileConfiguration>
11448
+ <FileConfiguration
11449
+ Name="Release|Smartphone 2003 (ARMV4)"
11450
+ ExcludedFromBuild="true"
11451
+ >
11452
+ <Tool
11453
+ Name="VCCLCompilerTool"
11454
+ />
11455
+ </FileConfiguration>
11456
+ <FileConfiguration
11457
+ Name="Release|MC3000c50b (ARMV4I)"
11458
+ ExcludedFromBuild="true"
11459
+ >
11460
+ <Tool
11461
+ Name="VCCLCompilerTool"
11462
+ />
11463
+ </FileConfiguration>
11464
+ <FileConfiguration
11465
+ Name="Release|Windows Mobile 6 Professional SDK (ARMV4I)"
11466
+ ExcludedFromBuild="true"
11467
+ >
11468
+ <Tool
11469
+ Name="VCCLCompilerTool"
11470
+ />
11471
+ </FileConfiguration>
11472
+ <FileConfiguration
11473
+ Name="SimulatorDebug|Win32"
11474
+ ExcludedFromBuild="true"
11475
+ >
11476
+ <Tool
11477
+ Name="VCCLCompilerTool"
11478
+ />
11479
+ </FileConfiguration>
11480
+ <FileConfiguration
11481
+ Name="SimulatorDebug|Pocket PC 2003 (ARMV4)"
11482
+ ExcludedFromBuild="true"
11483
+ >
11484
+ <Tool
11485
+ Name="VCCLCompilerTool"
11486
+ />
11487
+ </FileConfiguration>
11488
+ <FileConfiguration
11489
+ Name="SimulatorDebug|Smartphone 2003 (ARMV4)"
11490
+ ExcludedFromBuild="true"
11491
+ >
11492
+ <Tool
11493
+ Name="VCCLCompilerTool"
11494
+ />
11495
+ </FileConfiguration>
11496
+ <FileConfiguration
11497
+ Name="SimulatorDebug|MC3000c50b (ARMV4I)"
11498
+ ExcludedFromBuild="true"
11499
+ >
11500
+ <Tool
11501
+ Name="VCCLCompilerTool"
11502
+ />
11503
+ </FileConfiguration>
11504
+ <FileConfiguration
11505
+ Name="SimulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
11506
+ ExcludedFromBuild="true"
11507
+ >
11508
+ <Tool
11509
+ Name="VCCLCompilerTool"
11510
+ />
11511
+ </FileConfiguration>
11512
+ <FileConfiguration
11513
+ Name="SimulatorRelease|Win32"
11514
+ ExcludedFromBuild="true"
11515
+ >
11516
+ <Tool
11517
+ Name="VCCLCompilerTool"
11518
+ />
11519
+ </FileConfiguration>
11520
+ <FileConfiguration
11521
+ Name="SimulatorRelease|Pocket PC 2003 (ARMV4)"
11522
+ ExcludedFromBuild="true"
11523
+ >
11524
+ <Tool
11525
+ Name="VCCLCompilerTool"
11526
+ />
11527
+ </FileConfiguration>
11528
+ <FileConfiguration
11529
+ Name="SimulatorRelease|Smartphone 2003 (ARMV4)"
11530
+ ExcludedFromBuild="true"
11531
+ >
11532
+ <Tool
11533
+ Name="VCCLCompilerTool"
11534
+ />
11535
+ </FileConfiguration>
11536
+ <FileConfiguration
11537
+ Name="SimulatorRelease|MC3000c50b (ARMV4I)"
11538
+ ExcludedFromBuild="true"
11539
+ >
11540
+ <Tool
11541
+ Name="VCCLCompilerTool"
11542
+ />
11543
+ </FileConfiguration>
11544
+ <FileConfiguration
11545
+ Name="SimulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
11546
+ ExcludedFromBuild="true"
11547
+ >
11548
+ <Tool
11549
+ Name="VCCLCompilerTool"
11550
+ />
11551
+ </FileConfiguration>
11552
+ <FileConfiguration
11553
+ Name="Debug|Windows Mobile 6.5.3 Professional DTK (ARMV4I)"
11554
+ ExcludedFromBuild="true"
11555
+ >
11556
+ <Tool
11557
+ Name="VCCLCompilerTool"
11558
+ />
11559
+ </FileConfiguration>
11560
+ <FileConfiguration
11561
+ Name="Release|Windows Mobile 6.5.3 Professional DTK (ARMV4I)"
11562
+ ExcludedFromBuild="true"
11563
+ >
11564
+ <Tool
11565
+ Name="VCCLCompilerTool"
11566
+ />
11567
+ </FileConfiguration>
11568
+ <FileConfiguration
11569
+ Name="SimulatorDebug|Windows Mobile 6.5.3 Professional DTK (ARMV4I)"
11570
+ ExcludedFromBuild="true"
11571
+ >
11572
+ <Tool
11573
+ Name="VCCLCompilerTool"
11574
+ />
11575
+ </FileConfiguration>
11576
+ <FileConfiguration
11577
+ Name="SimulatorRelease|Windows Mobile 6.5.3 Professional DTK (ARMV4I)"
11578
+ ExcludedFromBuild="true"
11579
+ >
11580
+ <Tool
11581
+ Name="VCCLCompilerTool"
11582
+ />
11583
+ </FileConfiguration>
11584
+ </File>
11585
+ </Filter>
11586
+ <Filter
11587
+ Name="SimulatorDebug"
11588
+ >
11589
+ <File
11590
+ RelativePath="..\..\shared\qt\rhodes\GeneratedFiles\SimulatorDebug\moc_DateTimeDialog.cpp"
11591
+ >
11592
+ <FileConfiguration
11593
+ Name="Debug|Win32"
11594
+ ExcludedFromBuild="true"
11595
+ >
11596
+ <Tool
11597
+ Name="VCCLCompilerTool"
11598
+ ObjectFile="$(IntDir)\$(InputName)1.obj"
11599
+ XMLDocumentationFileName="$(IntDir)\$(InputName)1.xdc"
11600
+ />
11601
+ </FileConfiguration>
11602
+ <FileConfiguration
11603
+ Name="Debug|Pocket PC 2003 (ARMV4)"
11604
+ ExcludedFromBuild="true"
11605
+ >
11606
+ <Tool
11607
+ Name="VCCLCompilerTool"
11608
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
11609
+ />
11610
+ </FileConfiguration>
11611
+ <FileConfiguration
11612
+ Name="Debug|Smartphone 2003 (ARMV4)"
11613
+ ExcludedFromBuild="true"
11614
+ >
11615
+ <Tool
11616
+ Name="VCCLCompilerTool"
11617
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
11618
+ />
11619
+ </FileConfiguration>
11620
+ <FileConfiguration
11621
+ Name="Debug|MC3000c50b (ARMV4I)"
11622
+ ExcludedFromBuild="true"
11623
+ >
11624
+ <Tool
11625
+ Name="VCCLCompilerTool"
11626
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
11627
+ />
11628
+ </FileConfiguration>
11629
+ <FileConfiguration
11630
+ Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)"
11631
+ ExcludedFromBuild="true"
11632
+ >
11633
+ <Tool
11634
+ Name="VCCLCompilerTool"
11635
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
11636
+ />
11637
+ </FileConfiguration>
11638
+ <FileConfiguration
11639
+ Name="Release|Win32"
11640
+ ExcludedFromBuild="true"
11641
+ >
11642
+ <Tool
11643
+ Name="VCCLCompilerTool"
11644
+ ObjectFile="$(IntDir)\$(InputName)1.obj"
11645
+ XMLDocumentationFileName="$(IntDir)\$(InputName)1.xdc"
11646
+ />
11647
+ </FileConfiguration>
11648
+ <FileConfiguration
11649
+ Name="Release|Pocket PC 2003 (ARMV4)"
11650
+ ExcludedFromBuild="true"
11651
+ >
11652
+ <Tool
11653
+ Name="VCCLCompilerTool"
11654
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
11655
+ />
11656
+ </FileConfiguration>
11657
+ <FileConfiguration
11658
+ Name="Release|Smartphone 2003 (ARMV4)"
11659
+ ExcludedFromBuild="true"
11660
+ >
11661
+ <Tool
11662
+ Name="VCCLCompilerTool"
11663
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
11664
+ />
11665
+ </FileConfiguration>
11666
+ <FileConfiguration
11667
+ Name="Release|MC3000c50b (ARMV4I)"
11668
+ ExcludedFromBuild="true"
11669
+ >
11670
+ <Tool
11671
+ Name="VCCLCompilerTool"
11672
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
11673
+ />
11674
+ </FileConfiguration>
11675
+ <FileConfiguration
11676
+ Name="Release|Windows Mobile 6 Professional SDK (ARMV4I)"
11677
+ ExcludedFromBuild="true"
11678
+ >
11679
+ <Tool
11680
+ Name="VCCLCompilerTool"
11681
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
11682
+ />
11683
+ </FileConfiguration>
11684
+ <FileConfiguration
11685
+ Name="SimulatorDebug|Win32"
11686
+ >
11687
+ <Tool
11688
+ Name="VCCLCompilerTool"
11689
+ UsePrecompiledHeader="0"
11690
+ />
11691
+ </FileConfiguration>
11692
+ <FileConfiguration
11693
+ Name="SimulatorDebug|Pocket PC 2003 (ARMV4)"
11694
+ ExcludedFromBuild="true"
11695
+ >
11696
+ <Tool
11697
+ Name="VCCLCompilerTool"
11698
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
11699
+ />
11700
+ </FileConfiguration>
11701
+ <FileConfiguration
11702
+ Name="SimulatorDebug|Smartphone 2003 (ARMV4)"
11703
+ ExcludedFromBuild="true"
11704
+ >
11705
+ <Tool
11706
+ Name="VCCLCompilerTool"
11707
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
11708
+ />
11709
+ </FileConfiguration>
11710
+ <FileConfiguration
11711
+ Name="SimulatorDebug|MC3000c50b (ARMV4I)"
11712
+ ExcludedFromBuild="true"
11713
+ >
11714
+ <Tool
11715
+ Name="VCCLCompilerTool"
11716
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
11717
+ />
11718
+ </FileConfiguration>
11719
+ <FileConfiguration
11720
+ Name="SimulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
11721
+ ExcludedFromBuild="true"
11722
+ >
11723
+ <Tool
11724
+ Name="VCCLCompilerTool"
11725
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
11726
+ />
11727
+ </FileConfiguration>
11728
+ <FileConfiguration
11729
+ Name="SimulatorRelease|Win32"
11730
+ ExcludedFromBuild="true"
11731
+ >
11732
+ <Tool
11733
+ Name="VCCLCompilerTool"
11734
+ ObjectFile="$(IntDir)\$(InputName)1.obj"
11735
+ XMLDocumentationFileName="$(IntDir)\$(InputName)1.xdc"
11736
+ />
11737
+ </FileConfiguration>
11738
+ <FileConfiguration
11739
+ Name="SimulatorRelease|Pocket PC 2003 (ARMV4)"
11740
+ ExcludedFromBuild="true"
11741
+ >
11742
+ <Tool
11743
+ Name="VCCLCompilerTool"
11744
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
11745
+ />
11746
+ </FileConfiguration>
11747
+ <FileConfiguration
11748
+ Name="SimulatorRelease|Smartphone 2003 (ARMV4)"
11749
+ ExcludedFromBuild="true"
11750
+ >
11751
+ <Tool
11752
+ Name="VCCLCompilerTool"
11753
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
11754
+ />
11755
+ </FileConfiguration>
11756
+ <FileConfiguration
11757
+ Name="SimulatorRelease|MC3000c50b (ARMV4I)"
11758
+ ExcludedFromBuild="true"
11759
+ >
11760
+ <Tool
11761
+ Name="VCCLCompilerTool"
11762
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
11763
+ />
11764
+ </FileConfiguration>
11765
+ <FileConfiguration
11766
+ Name="SimulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
11767
+ ExcludedFromBuild="true"
11768
+ >
11769
+ <Tool
11770
+ Name="VCCLCompilerTool"
11771
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
11772
+ />
11773
+ </FileConfiguration>
11774
+ <FileConfiguration
11775
+ Name="Debug|Windows Mobile 6.5.3 Professional DTK (ARMV4I)"
11776
+ ExcludedFromBuild="true"
11777
+ >
11778
+ <Tool
11779
+ Name="VCCLCompilerTool"
11780
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
11781
+ />
11782
+ </FileConfiguration>
11783
+ <FileConfiguration
11784
+ Name="Release|Windows Mobile 6.5.3 Professional DTK (ARMV4I)"
11785
+ ExcludedFromBuild="true"
11786
+ >
11787
+ <Tool
11788
+ Name="VCCLCompilerTool"
11789
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
11790
+ />
11791
+ </FileConfiguration>
11792
+ <FileConfiguration
11793
+ Name="SimulatorDebug|Windows Mobile 6.5.3 Professional DTK (ARMV4I)"
11794
+ ExcludedFromBuild="true"
11795
+ >
11796
+ <Tool
11797
+ Name="VCCLCompilerTool"
11798
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
11799
+ />
11800
+ </FileConfiguration>
11801
+ <FileConfiguration
11802
+ Name="SimulatorRelease|Windows Mobile 6.5.3 Professional DTK (ARMV4I)"
11803
+ ExcludedFromBuild="true"
11804
+ >
11805
+ <Tool
11806
+ Name="VCCLCompilerTool"
11807
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
11808
+ />
11809
+ </FileConfiguration>
11810
+ </File>
11811
+ <File
11812
+ RelativePath="..\..\shared\qt\rhodes\GeneratedFiles\SimulatorDebug\moc_ExternalWebView.cpp"
11813
+ >
11814
+ <FileConfiguration
11815
+ Name="Debug|Win32"
11816
+ ExcludedFromBuild="true"
11817
+ >
11818
+ <Tool
11819
+ Name="VCCLCompilerTool"
11820
+ ObjectFile="$(IntDir)\$(InputName)1.obj"
11821
+ XMLDocumentationFileName="$(IntDir)\$(InputName)1.xdc"
11822
+ />
11823
+ </FileConfiguration>
11824
+ <FileConfiguration
11825
+ Name="Debug|Pocket PC 2003 (ARMV4)"
11826
+ ExcludedFromBuild="true"
11827
+ >
11828
+ <Tool
11829
+ Name="VCCLCompilerTool"
11830
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
11831
+ />
11832
+ </FileConfiguration>
11833
+ <FileConfiguration
11834
+ Name="Debug|Smartphone 2003 (ARMV4)"
11835
+ ExcludedFromBuild="true"
11836
+ >
11837
+ <Tool
11838
+ Name="VCCLCompilerTool"
11839
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
11840
+ />
11841
+ </FileConfiguration>
11842
+ <FileConfiguration
11843
+ Name="Debug|MC3000c50b (ARMV4I)"
11844
+ ExcludedFromBuild="true"
11845
+ >
11846
+ <Tool
11847
+ Name="VCCLCompilerTool"
11848
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
11849
+ />
11850
+ </FileConfiguration>
11851
+ <FileConfiguration
11852
+ Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)"
11853
+ ExcludedFromBuild="true"
11854
+ >
11855
+ <Tool
11856
+ Name="VCCLCompilerTool"
11857
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
11858
+ />
11859
+ </FileConfiguration>
11860
+ <FileConfiguration
11861
+ Name="Release|Win32"
11862
+ ExcludedFromBuild="true"
11863
+ >
11864
+ <Tool
11865
+ Name="VCCLCompilerTool"
11866
+ ObjectFile="$(IntDir)\$(InputName)1.obj"
11867
+ XMLDocumentationFileName="$(IntDir)\$(InputName)1.xdc"
11868
+ />
11869
+ </FileConfiguration>
11870
+ <FileConfiguration
11871
+ Name="Release|Pocket PC 2003 (ARMV4)"
11872
+ ExcludedFromBuild="true"
11873
+ >
11874
+ <Tool
11875
+ Name="VCCLCompilerTool"
11876
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
11877
+ />
11878
+ </FileConfiguration>
11879
+ <FileConfiguration
11880
+ Name="Release|Smartphone 2003 (ARMV4)"
11881
+ ExcludedFromBuild="true"
11882
+ >
11883
+ <Tool
11884
+ Name="VCCLCompilerTool"
11885
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
11886
+ />
11887
+ </FileConfiguration>
11888
+ <FileConfiguration
11889
+ Name="Release|MC3000c50b (ARMV4I)"
11890
+ ExcludedFromBuild="true"
11891
+ >
11892
+ <Tool
11893
+ Name="VCCLCompilerTool"
11894
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
11895
+ />
11896
+ </FileConfiguration>
11897
+ <FileConfiguration
11898
+ Name="Release|Windows Mobile 6 Professional SDK (ARMV4I)"
11899
+ ExcludedFromBuild="true"
11900
+ >
11901
+ <Tool
11902
+ Name="VCCLCompilerTool"
11903
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
11904
+ />
11905
+ </FileConfiguration>
11906
+ <FileConfiguration
11907
+ Name="SimulatorDebug|Win32"
11908
+ >
11909
+ <Tool
11910
+ Name="VCCLCompilerTool"
11911
+ UsePrecompiledHeader="0"
11912
+ />
11913
+ </FileConfiguration>
11914
+ <FileConfiguration
11915
+ Name="SimulatorDebug|Pocket PC 2003 (ARMV4)"
11916
+ ExcludedFromBuild="true"
11917
+ >
11918
+ <Tool
11919
+ Name="VCCLCompilerTool"
11920
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
11921
+ />
11922
+ </FileConfiguration>
11923
+ <FileConfiguration
11924
+ Name="SimulatorDebug|Smartphone 2003 (ARMV4)"
11925
+ ExcludedFromBuild="true"
11926
+ >
11927
+ <Tool
11928
+ Name="VCCLCompilerTool"
11929
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
11930
+ />
11931
+ </FileConfiguration>
11932
+ <FileConfiguration
11933
+ Name="SimulatorDebug|MC3000c50b (ARMV4I)"
11934
+ ExcludedFromBuild="true"
11935
+ >
11936
+ <Tool
11937
+ Name="VCCLCompilerTool"
11938
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
11939
+ />
11940
+ </FileConfiguration>
11941
+ <FileConfiguration
11942
+ Name="SimulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
11943
+ ExcludedFromBuild="true"
11944
+ >
11945
+ <Tool
11946
+ Name="VCCLCompilerTool"
11947
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
11948
+ />
11949
+ </FileConfiguration>
11950
+ <FileConfiguration
11951
+ Name="SimulatorRelease|Win32"
11952
+ ExcludedFromBuild="true"
11953
+ >
11954
+ <Tool
11955
+ Name="VCCLCompilerTool"
11956
+ ObjectFile="$(IntDir)\$(InputName)1.obj"
11957
+ XMLDocumentationFileName="$(IntDir)\$(InputName)1.xdc"
11958
+ />
11959
+ </FileConfiguration>
11960
+ <FileConfiguration
11961
+ Name="SimulatorRelease|Pocket PC 2003 (ARMV4)"
11962
+ ExcludedFromBuild="true"
11963
+ >
11964
+ <Tool
11965
+ Name="VCCLCompilerTool"
11966
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
11967
+ />
11968
+ </FileConfiguration>
11969
+ <FileConfiguration
11970
+ Name="SimulatorRelease|Smartphone 2003 (ARMV4)"
11971
+ ExcludedFromBuild="true"
11972
+ >
11973
+ <Tool
11974
+ Name="VCCLCompilerTool"
11975
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
11976
+ />
11977
+ </FileConfiguration>
11978
+ <FileConfiguration
11979
+ Name="SimulatorRelease|MC3000c50b (ARMV4I)"
11980
+ ExcludedFromBuild="true"
11981
+ >
11982
+ <Tool
11983
+ Name="VCCLCompilerTool"
11984
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
11985
+ />
11986
+ </FileConfiguration>
11987
+ <FileConfiguration
11988
+ Name="SimulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
11989
+ ExcludedFromBuild="true"
11990
+ >
11991
+ <Tool
11992
+ Name="VCCLCompilerTool"
11993
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
11994
+ />
11995
+ </FileConfiguration>
11996
+ <FileConfiguration
11997
+ Name="Debug|Windows Mobile 6.5.3 Professional DTK (ARMV4I)"
11998
+ ExcludedFromBuild="true"
11999
+ >
12000
+ <Tool
12001
+ Name="VCCLCompilerTool"
12002
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12003
+ />
12004
+ </FileConfiguration>
12005
+ <FileConfiguration
12006
+ Name="Release|Windows Mobile 6.5.3 Professional DTK (ARMV4I)"
12007
+ ExcludedFromBuild="true"
12008
+ >
12009
+ <Tool
12010
+ Name="VCCLCompilerTool"
12011
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12012
+ />
12013
+ </FileConfiguration>
12014
+ <FileConfiguration
12015
+ Name="SimulatorDebug|Windows Mobile 6.5.3 Professional DTK (ARMV4I)"
12016
+ ExcludedFromBuild="true"
12017
+ >
12018
+ <Tool
12019
+ Name="VCCLCompilerTool"
12020
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12021
+ />
12022
+ </FileConfiguration>
12023
+ <FileConfiguration
12024
+ Name="SimulatorRelease|Windows Mobile 6.5.3 Professional DTK (ARMV4I)"
12025
+ ExcludedFromBuild="true"
12026
+ >
12027
+ <Tool
12028
+ Name="VCCLCompilerTool"
12029
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12030
+ />
12031
+ </FileConfiguration>
12032
+ </File>
12033
+ <File
12034
+ RelativePath="..\..\shared\qt\rhodes\GeneratedFiles\SimulatorDebug\moc_QtMainWindow.cpp"
12035
+ >
12036
+ <FileConfiguration
12037
+ Name="Debug|Win32"
12038
+ ExcludedFromBuild="true"
12039
+ >
12040
+ <Tool
12041
+ Name="VCCLCompilerTool"
12042
+ ObjectFile="$(IntDir)\$(InputName)1.obj"
12043
+ XMLDocumentationFileName="$(IntDir)\$(InputName)1.xdc"
12044
+ />
12045
+ </FileConfiguration>
12046
+ <FileConfiguration
12047
+ Name="Debug|Pocket PC 2003 (ARMV4)"
12048
+ ExcludedFromBuild="true"
12049
+ >
12050
+ <Tool
12051
+ Name="VCCLCompilerTool"
12052
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12053
+ />
12054
+ </FileConfiguration>
12055
+ <FileConfiguration
12056
+ Name="Debug|Smartphone 2003 (ARMV4)"
12057
+ ExcludedFromBuild="true"
12058
+ >
12059
+ <Tool
12060
+ Name="VCCLCompilerTool"
12061
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12062
+ />
12063
+ </FileConfiguration>
12064
+ <FileConfiguration
12065
+ Name="Debug|MC3000c50b (ARMV4I)"
12066
+ ExcludedFromBuild="true"
12067
+ >
12068
+ <Tool
12069
+ Name="VCCLCompilerTool"
12070
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12071
+ />
12072
+ </FileConfiguration>
12073
+ <FileConfiguration
12074
+ Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)"
12075
+ ExcludedFromBuild="true"
12076
+ >
12077
+ <Tool
12078
+ Name="VCCLCompilerTool"
12079
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12080
+ />
12081
+ </FileConfiguration>
12082
+ <FileConfiguration
12083
+ Name="Release|Win32"
12084
+ ExcludedFromBuild="true"
12085
+ >
12086
+ <Tool
12087
+ Name="VCCLCompilerTool"
12088
+ ObjectFile="$(IntDir)\$(InputName)1.obj"
12089
+ XMLDocumentationFileName="$(IntDir)\$(InputName)1.xdc"
12090
+ />
12091
+ </FileConfiguration>
12092
+ <FileConfiguration
12093
+ Name="Release|Pocket PC 2003 (ARMV4)"
12094
+ ExcludedFromBuild="true"
12095
+ >
12096
+ <Tool
12097
+ Name="VCCLCompilerTool"
12098
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12099
+ />
12100
+ </FileConfiguration>
12101
+ <FileConfiguration
12102
+ Name="Release|Smartphone 2003 (ARMV4)"
12103
+ ExcludedFromBuild="true"
12104
+ >
12105
+ <Tool
12106
+ Name="VCCLCompilerTool"
12107
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12108
+ />
12109
+ </FileConfiguration>
12110
+ <FileConfiguration
12111
+ Name="Release|MC3000c50b (ARMV4I)"
12112
+ ExcludedFromBuild="true"
12113
+ >
12114
+ <Tool
12115
+ Name="VCCLCompilerTool"
12116
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12117
+ />
12118
+ </FileConfiguration>
12119
+ <FileConfiguration
12120
+ Name="Release|Windows Mobile 6 Professional SDK (ARMV4I)"
12121
+ ExcludedFromBuild="true"
12122
+ >
12123
+ <Tool
12124
+ Name="VCCLCompilerTool"
12125
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12126
+ />
12127
+ </FileConfiguration>
12128
+ <FileConfiguration
12129
+ Name="SimulatorDebug|Win32"
12130
+ >
12131
+ <Tool
12132
+ Name="VCCLCompilerTool"
12133
+ UsePrecompiledHeader="0"
12134
+ />
12135
+ </FileConfiguration>
12136
+ <FileConfiguration
12137
+ Name="SimulatorDebug|Pocket PC 2003 (ARMV4)"
12138
+ ExcludedFromBuild="true"
12139
+ >
12140
+ <Tool
12141
+ Name="VCCLCompilerTool"
12142
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12143
+ />
12144
+ </FileConfiguration>
12145
+ <FileConfiguration
12146
+ Name="SimulatorDebug|Smartphone 2003 (ARMV4)"
12147
+ ExcludedFromBuild="true"
12148
+ >
12149
+ <Tool
12150
+ Name="VCCLCompilerTool"
12151
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12152
+ />
12153
+ </FileConfiguration>
12154
+ <FileConfiguration
12155
+ Name="SimulatorDebug|MC3000c50b (ARMV4I)"
12156
+ ExcludedFromBuild="true"
12157
+ >
12158
+ <Tool
12159
+ Name="VCCLCompilerTool"
12160
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12161
+ />
12162
+ </FileConfiguration>
12163
+ <FileConfiguration
12164
+ Name="SimulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
12165
+ ExcludedFromBuild="true"
12166
+ >
12167
+ <Tool
12168
+ Name="VCCLCompilerTool"
12169
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12170
+ />
12171
+ </FileConfiguration>
12172
+ <FileConfiguration
12173
+ Name="SimulatorRelease|Win32"
12174
+ ExcludedFromBuild="true"
12175
+ >
12176
+ <Tool
12177
+ Name="VCCLCompilerTool"
12178
+ ObjectFile="$(IntDir)\$(InputName)1.obj"
12179
+ XMLDocumentationFileName="$(IntDir)\$(InputName)1.xdc"
12180
+ />
12181
+ </FileConfiguration>
12182
+ <FileConfiguration
12183
+ Name="SimulatorRelease|Pocket PC 2003 (ARMV4)"
12184
+ ExcludedFromBuild="true"
12185
+ >
12186
+ <Tool
12187
+ Name="VCCLCompilerTool"
12188
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12189
+ />
12190
+ </FileConfiguration>
12191
+ <FileConfiguration
12192
+ Name="SimulatorRelease|Smartphone 2003 (ARMV4)"
12193
+ ExcludedFromBuild="true"
12194
+ >
12195
+ <Tool
12196
+ Name="VCCLCompilerTool"
12197
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12198
+ />
12199
+ </FileConfiguration>
12200
+ <FileConfiguration
12201
+ Name="SimulatorRelease|MC3000c50b (ARMV4I)"
12202
+ ExcludedFromBuild="true"
12203
+ >
12204
+ <Tool
12205
+ Name="VCCLCompilerTool"
12206
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12207
+ />
12208
+ </FileConfiguration>
12209
+ <FileConfiguration
12210
+ Name="SimulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
12211
+ ExcludedFromBuild="true"
12212
+ >
12213
+ <Tool
12214
+ Name="VCCLCompilerTool"
12215
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12216
+ />
12217
+ </FileConfiguration>
12218
+ <FileConfiguration
12219
+ Name="Debug|Windows Mobile 6.5.3 Professional DTK (ARMV4I)"
12220
+ ExcludedFromBuild="true"
12221
+ >
12222
+ <Tool
12223
+ Name="VCCLCompilerTool"
12224
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12225
+ />
12226
+ </FileConfiguration>
12227
+ <FileConfiguration
12228
+ Name="Release|Windows Mobile 6.5.3 Professional DTK (ARMV4I)"
12229
+ ExcludedFromBuild="true"
12230
+ >
12231
+ <Tool
12232
+ Name="VCCLCompilerTool"
12233
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12234
+ />
12235
+ </FileConfiguration>
12236
+ <FileConfiguration
12237
+ Name="SimulatorDebug|Windows Mobile 6.5.3 Professional DTK (ARMV4I)"
12238
+ ExcludedFromBuild="true"
12239
+ >
12240
+ <Tool
12241
+ Name="VCCLCompilerTool"
12242
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12243
+ />
12244
+ </FileConfiguration>
12245
+ <FileConfiguration
12246
+ Name="SimulatorRelease|Windows Mobile 6.5.3 Professional DTK (ARMV4I)"
12247
+ ExcludedFromBuild="true"
12248
+ >
12249
+ <Tool
12250
+ Name="VCCLCompilerTool"
12251
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12252
+ />
12253
+ </FileConfiguration>
12254
+ </File>
12255
+ <File
12256
+ RelativePath="..\..\shared\qt\rhodes\GeneratedFiles\SimulatorDebug\moc_QtWebInspector.cpp"
12257
+ >
12258
+ <FileConfiguration
12259
+ Name="Debug|Win32"
12260
+ ExcludedFromBuild="true"
12261
+ >
12262
+ <Tool
12263
+ Name="VCCLCompilerTool"
12264
+ ObjectFile="$(IntDir)\$(InputName)1.obj"
12265
+ XMLDocumentationFileName="$(IntDir)\$(InputName)1.xdc"
12266
+ />
12267
+ </FileConfiguration>
12268
+ <FileConfiguration
12269
+ Name="Debug|Pocket PC 2003 (ARMV4)"
12270
+ ExcludedFromBuild="true"
12271
+ >
12272
+ <Tool
12273
+ Name="VCCLCompilerTool"
12274
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12275
+ />
12276
+ </FileConfiguration>
12277
+ <FileConfiguration
12278
+ Name="Debug|Smartphone 2003 (ARMV4)"
12279
+ ExcludedFromBuild="true"
12280
+ >
12281
+ <Tool
12282
+ Name="VCCLCompilerTool"
12283
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12284
+ />
12285
+ </FileConfiguration>
12286
+ <FileConfiguration
12287
+ Name="Debug|MC3000c50b (ARMV4I)"
12288
+ ExcludedFromBuild="true"
12289
+ >
12290
+ <Tool
12291
+ Name="VCCLCompilerTool"
12292
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12293
+ />
12294
+ </FileConfiguration>
12295
+ <FileConfiguration
12296
+ Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)"
12297
+ ExcludedFromBuild="true"
12298
+ >
12299
+ <Tool
12300
+ Name="VCCLCompilerTool"
12301
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12302
+ />
12303
+ </FileConfiguration>
12304
+ <FileConfiguration
12305
+ Name="Release|Win32"
12306
+ ExcludedFromBuild="true"
12307
+ >
12308
+ <Tool
12309
+ Name="VCCLCompilerTool"
12310
+ ObjectFile="$(IntDir)\$(InputName)1.obj"
12311
+ XMLDocumentationFileName="$(IntDir)\$(InputName)1.xdc"
12312
+ />
12313
+ </FileConfiguration>
12314
+ <FileConfiguration
12315
+ Name="Release|Pocket PC 2003 (ARMV4)"
12316
+ ExcludedFromBuild="true"
12317
+ >
12318
+ <Tool
12319
+ Name="VCCLCompilerTool"
12320
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12321
+ />
12322
+ </FileConfiguration>
12323
+ <FileConfiguration
12324
+ Name="Release|Smartphone 2003 (ARMV4)"
12325
+ ExcludedFromBuild="true"
12326
+ >
12327
+ <Tool
12328
+ Name="VCCLCompilerTool"
12329
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12330
+ />
12331
+ </FileConfiguration>
12332
+ <FileConfiguration
12333
+ Name="Release|MC3000c50b (ARMV4I)"
12334
+ ExcludedFromBuild="true"
12335
+ >
12336
+ <Tool
12337
+ Name="VCCLCompilerTool"
12338
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12339
+ />
12340
+ </FileConfiguration>
12341
+ <FileConfiguration
12342
+ Name="Release|Windows Mobile 6 Professional SDK (ARMV4I)"
12343
+ ExcludedFromBuild="true"
12344
+ >
12345
+ <Tool
12346
+ Name="VCCLCompilerTool"
12347
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12348
+ />
12349
+ </FileConfiguration>
12350
+ <FileConfiguration
12351
+ Name="SimulatorDebug|Win32"
12352
+ >
12353
+ <Tool
12354
+ Name="VCCLCompilerTool"
12355
+ UsePrecompiledHeader="0"
12356
+ />
12357
+ </FileConfiguration>
12358
+ <FileConfiguration
12359
+ Name="SimulatorDebug|Pocket PC 2003 (ARMV4)"
12360
+ ExcludedFromBuild="true"
12361
+ >
12362
+ <Tool
12363
+ Name="VCCLCompilerTool"
12364
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12365
+ />
12366
+ </FileConfiguration>
12367
+ <FileConfiguration
12368
+ Name="SimulatorDebug|Smartphone 2003 (ARMV4)"
12369
+ ExcludedFromBuild="true"
12370
+ >
12371
+ <Tool
12372
+ Name="VCCLCompilerTool"
12373
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12374
+ />
12375
+ </FileConfiguration>
12376
+ <FileConfiguration
12377
+ Name="SimulatorDebug|MC3000c50b (ARMV4I)"
12378
+ ExcludedFromBuild="true"
12379
+ >
12380
+ <Tool
12381
+ Name="VCCLCompilerTool"
12382
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12383
+ />
12384
+ </FileConfiguration>
12385
+ <FileConfiguration
12386
+ Name="SimulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
12387
+ ExcludedFromBuild="true"
12388
+ >
12389
+ <Tool
12390
+ Name="VCCLCompilerTool"
12391
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12392
+ />
12393
+ </FileConfiguration>
12394
+ <FileConfiguration
12395
+ Name="SimulatorRelease|Win32"
12396
+ ExcludedFromBuild="true"
12397
+ >
12398
+ <Tool
12399
+ Name="VCCLCompilerTool"
12400
+ ObjectFile="$(IntDir)\$(InputName)1.obj"
12401
+ XMLDocumentationFileName="$(IntDir)\$(InputName)1.xdc"
12402
+ />
12403
+ </FileConfiguration>
12404
+ <FileConfiguration
12405
+ Name="SimulatorRelease|Pocket PC 2003 (ARMV4)"
12406
+ ExcludedFromBuild="true"
12407
+ >
12408
+ <Tool
12409
+ Name="VCCLCompilerTool"
12410
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12411
+ />
12412
+ </FileConfiguration>
12413
+ <FileConfiguration
12414
+ Name="SimulatorRelease|Smartphone 2003 (ARMV4)"
12415
+ ExcludedFromBuild="true"
12416
+ >
12417
+ <Tool
12418
+ Name="VCCLCompilerTool"
12419
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12420
+ />
12421
+ </FileConfiguration>
12422
+ <FileConfiguration
12423
+ Name="SimulatorRelease|MC3000c50b (ARMV4I)"
12424
+ ExcludedFromBuild="true"
12425
+ >
12426
+ <Tool
12427
+ Name="VCCLCompilerTool"
12428
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12429
+ />
12430
+ </FileConfiguration>
12431
+ <FileConfiguration
12432
+ Name="SimulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
12433
+ ExcludedFromBuild="true"
12434
+ >
12435
+ <Tool
12436
+ Name="VCCLCompilerTool"
12437
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12438
+ />
12439
+ </FileConfiguration>
12440
+ <FileConfiguration
12441
+ Name="Debug|Windows Mobile 6.5.3 Professional DTK (ARMV4I)"
12442
+ ExcludedFromBuild="true"
12443
+ >
12444
+ <Tool
12445
+ Name="VCCLCompilerTool"
12446
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12447
+ />
12448
+ </FileConfiguration>
12449
+ <FileConfiguration
12450
+ Name="Release|Windows Mobile 6.5.3 Professional DTK (ARMV4I)"
12451
+ ExcludedFromBuild="true"
12452
+ >
12453
+ <Tool
12454
+ Name="VCCLCompilerTool"
12455
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12456
+ />
12457
+ </FileConfiguration>
12458
+ <FileConfiguration
12459
+ Name="SimulatorDebug|Windows Mobile 6.5.3 Professional DTK (ARMV4I)"
12460
+ ExcludedFromBuild="true"
12461
+ >
12462
+ <Tool
12463
+ Name="VCCLCompilerTool"
12464
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12465
+ />
12466
+ </FileConfiguration>
12467
+ <FileConfiguration
12468
+ Name="SimulatorRelease|Windows Mobile 6.5.3 Professional DTK (ARMV4I)"
12469
+ ExcludedFromBuild="true"
12470
+ >
12471
+ <Tool
12472
+ Name="VCCLCompilerTool"
12473
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12474
+ />
12475
+ </FileConfiguration>
12476
+ </File>
12477
+ <File
12478
+ RelativePath="..\..\shared\qt\rhodes\GeneratedFiles\SimulatorDebug\qrc_simulator.cpp"
12479
+ >
12480
+ <FileConfiguration
12481
+ Name="Debug|Win32"
12482
+ ExcludedFromBuild="true"
12483
+ >
12484
+ <Tool
12485
+ Name="VCCLCompilerTool"
12486
+ ObjectFile="$(IntDir)\$(InputName)1.obj"
12487
+ XMLDocumentationFileName="$(IntDir)\$(InputName)1.xdc"
12488
+ />
12489
+ </FileConfiguration>
12490
+ <FileConfiguration
12491
+ Name="Debug|Pocket PC 2003 (ARMV4)"
12492
+ ExcludedFromBuild="true"
12493
+ >
12494
+ <Tool
12495
+ Name="VCCLCompilerTool"
12496
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12497
+ />
12498
+ </FileConfiguration>
12499
+ <FileConfiguration
12500
+ Name="Debug|Smartphone 2003 (ARMV4)"
12501
+ ExcludedFromBuild="true"
12502
+ >
12503
+ <Tool
12504
+ Name="VCCLCompilerTool"
12505
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12506
+ />
12507
+ </FileConfiguration>
12508
+ <FileConfiguration
12509
+ Name="Debug|MC3000c50b (ARMV4I)"
12510
+ ExcludedFromBuild="true"
12511
+ >
12512
+ <Tool
12513
+ Name="VCCLCompilerTool"
12514
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12515
+ />
12516
+ </FileConfiguration>
12517
+ <FileConfiguration
12518
+ Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)"
12519
+ ExcludedFromBuild="true"
12520
+ >
12521
+ <Tool
12522
+ Name="VCCLCompilerTool"
12523
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12524
+ />
12525
+ </FileConfiguration>
12526
+ <FileConfiguration
12527
+ Name="Release|Win32"
12528
+ ExcludedFromBuild="true"
12529
+ >
12530
+ <Tool
12531
+ Name="VCCLCompilerTool"
12532
+ ObjectFile="$(IntDir)\$(InputName)1.obj"
12533
+ XMLDocumentationFileName="$(IntDir)\$(InputName)1.xdc"
12534
+ />
12535
+ </FileConfiguration>
12536
+ <FileConfiguration
12537
+ Name="Release|Pocket PC 2003 (ARMV4)"
12538
+ ExcludedFromBuild="true"
12539
+ >
12540
+ <Tool
12541
+ Name="VCCLCompilerTool"
12542
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12543
+ />
12544
+ </FileConfiguration>
12545
+ <FileConfiguration
12546
+ Name="Release|Smartphone 2003 (ARMV4)"
12547
+ ExcludedFromBuild="true"
12548
+ >
12549
+ <Tool
12550
+ Name="VCCLCompilerTool"
12551
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12552
+ />
12553
+ </FileConfiguration>
12554
+ <FileConfiguration
12555
+ Name="Release|MC3000c50b (ARMV4I)"
12556
+ ExcludedFromBuild="true"
12557
+ >
12558
+ <Tool
12559
+ Name="VCCLCompilerTool"
12560
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12561
+ />
12562
+ </FileConfiguration>
12563
+ <FileConfiguration
12564
+ Name="Release|Windows Mobile 6 Professional SDK (ARMV4I)"
12565
+ ExcludedFromBuild="true"
12566
+ >
12567
+ <Tool
12568
+ Name="VCCLCompilerTool"
12569
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12570
+ />
12571
+ </FileConfiguration>
12572
+ <FileConfiguration
12573
+ Name="SimulatorDebug|Win32"
12574
+ >
12575
+ <Tool
12576
+ Name="VCCLCompilerTool"
12577
+ UsePrecompiledHeader="0"
12578
+ />
12579
+ </FileConfiguration>
12580
+ <FileConfiguration
12581
+ Name="SimulatorDebug|Pocket PC 2003 (ARMV4)"
12582
+ ExcludedFromBuild="true"
12583
+ >
12584
+ <Tool
12585
+ Name="VCCLCompilerTool"
12586
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12587
+ />
12588
+ </FileConfiguration>
12589
+ <FileConfiguration
12590
+ Name="SimulatorDebug|Smartphone 2003 (ARMV4)"
12591
+ ExcludedFromBuild="true"
12592
+ >
12593
+ <Tool
12594
+ Name="VCCLCompilerTool"
12595
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12596
+ />
12597
+ </FileConfiguration>
12598
+ <FileConfiguration
12599
+ Name="SimulatorDebug|MC3000c50b (ARMV4I)"
12600
+ ExcludedFromBuild="true"
12601
+ >
12602
+ <Tool
12603
+ Name="VCCLCompilerTool"
12604
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12605
+ />
12606
+ </FileConfiguration>
12607
+ <FileConfiguration
12608
+ Name="SimulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
12609
+ ExcludedFromBuild="true"
12610
+ >
12611
+ <Tool
12612
+ Name="VCCLCompilerTool"
12613
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12614
+ />
12615
+ </FileConfiguration>
12616
+ <FileConfiguration
12617
+ Name="SimulatorRelease|Win32"
12618
+ ExcludedFromBuild="true"
12619
+ >
12620
+ <Tool
12621
+ Name="VCCLCompilerTool"
12622
+ ObjectFile="$(IntDir)\$(InputName)1.obj"
12623
+ XMLDocumentationFileName="$(IntDir)\$(InputName)1.xdc"
12624
+ />
12625
+ </FileConfiguration>
12626
+ <FileConfiguration
12627
+ Name="SimulatorRelease|Pocket PC 2003 (ARMV4)"
12628
+ ExcludedFromBuild="true"
12629
+ >
12630
+ <Tool
12631
+ Name="VCCLCompilerTool"
12632
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12633
+ />
12634
+ </FileConfiguration>
12635
+ <FileConfiguration
12636
+ Name="SimulatorRelease|Smartphone 2003 (ARMV4)"
12637
+ ExcludedFromBuild="true"
12638
+ >
12639
+ <Tool
12640
+ Name="VCCLCompilerTool"
12641
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12642
+ />
12643
+ </FileConfiguration>
12644
+ <FileConfiguration
12645
+ Name="SimulatorRelease|MC3000c50b (ARMV4I)"
12646
+ ExcludedFromBuild="true"
12647
+ >
12648
+ <Tool
12649
+ Name="VCCLCompilerTool"
12650
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12651
+ />
12652
+ </FileConfiguration>
12653
+ <FileConfiguration
12654
+ Name="SimulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
12655
+ ExcludedFromBuild="true"
12656
+ >
12657
+ <Tool
12658
+ Name="VCCLCompilerTool"
12659
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12660
+ />
12661
+ </FileConfiguration>
12662
+ <FileConfiguration
12663
+ Name="Debug|Windows Mobile 6.5.3 Professional DTK (ARMV4I)"
12664
+ ExcludedFromBuild="true"
12665
+ >
12666
+ <Tool
12667
+ Name="VCCLCompilerTool"
12668
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12669
+ />
12670
+ </FileConfiguration>
12671
+ <FileConfiguration
12672
+ Name="Release|Windows Mobile 6.5.3 Professional DTK (ARMV4I)"
12673
+ ExcludedFromBuild="true"
12674
+ >
12675
+ <Tool
12676
+ Name="VCCLCompilerTool"
12677
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12678
+ />
12679
+ </FileConfiguration>
12680
+ <FileConfiguration
12681
+ Name="SimulatorDebug|Windows Mobile 6.5.3 Professional DTK (ARMV4I)"
12682
+ ExcludedFromBuild="true"
12683
+ >
12684
+ <Tool
12685
+ Name="VCCLCompilerTool"
12686
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12687
+ />
12688
+ </FileConfiguration>
12689
+ <FileConfiguration
12690
+ Name="SimulatorRelease|Windows Mobile 6.5.3 Professional DTK (ARMV4I)"
12691
+ ExcludedFromBuild="true"
12692
+ >
12693
+ <Tool
12694
+ Name="VCCLCompilerTool"
12695
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
12696
+ />
12697
+ </FileConfiguration>
12698
+ </File>
12699
+ </Filter>
12700
+ <Filter
12701
+ Name="SimulatorRelease"
12702
+ >
10567
12703
  <File
10568
12704
  RelativePath="..\..\shared\qt\rhodes\GeneratedFiles\SimulatorRelease\moc_DateTimeDialog.cpp"
10569
12705
  >