ibm_db 3.0.5-x86-mingw32 → 5.0.5-x86-mingw32
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.
- checksums.yaml +5 -5
 - data/CHANGES +4 -0
 - data/LICENSE +1 -1
 - data/ParameterizedQueries README +6 -6
 - data/README +38 -55
 - data/ext/Makefile +269 -0
 - data/ext/extconf.rb +34 -3
 - data/ext/gil_release_version +3 -0
 - data/ext/ibm_db-i386-mingw32.def +2 -0
 - data/ext/ibm_db.c +100 -108
 - data/ext/ibm_db.o +0 -0
 - data/ext/ibm_db.so +0 -0
 - data/ext/mkmf.log +110 -0
 - data/ext/ruby_ibm_db_cli.o +0 -0
 - data/ext/unicode_support_version +3 -0
 - data/lib/active_record/connection_adapters/ibm_db_adapter.rb +923 -527
 - data/lib/active_record/connection_adapters/ibmdb_adapter.rb +4 -1
 - data/lib/mswin32/ibm_db.rb +7 -39
 - data/lib/mswin32/rb2x/i386/ibm_db.so +0 -0
 - data/test/active_record/connection_adapters/fake_adapter.rb +8 -5
 - data/test/cases/adapter_test.rb +133 -58
 - data/test/cases/adapters/mysql2/active_schema_test.rb +193 -0
 - data/test/cases/adapters/mysql2/bind_parameter_test.rb +50 -0
 - data/test/cases/adapters/mysql2/boolean_test.rb +100 -0
 - data/test/cases/adapters/mysql2/case_sensitivity_test.rb +63 -0
 - data/test/cases/adapters/mysql2/charset_collation_test.rb +54 -0
 - data/test/cases/adapters/mysql2/connection_test.rb +210 -0
 - data/test/cases/adapters/mysql2/datetime_precision_quoting_test.rb +45 -0
 - data/test/cases/adapters/mysql2/enum_test.rb +26 -0
 - data/test/cases/adapters/mysql2/explain_test.rb +21 -0
 - data/test/cases/adapters/mysql2/json_test.rb +195 -0
 - data/test/cases/adapters/mysql2/mysql2_adapter_test.rb +83 -0
 - data/test/cases/adapters/mysql2/reserved_word_test.rb +152 -0
 - data/test/cases/adapters/mysql2/schema_migrations_test.rb +59 -0
 - data/test/cases/adapters/mysql2/schema_test.rb +126 -0
 - data/test/cases/adapters/mysql2/sp_test.rb +36 -0
 - data/test/cases/adapters/mysql2/sql_types_test.rb +14 -0
 - data/test/cases/adapters/mysql2/table_options_test.rb +42 -0
 - data/test/cases/adapters/mysql2/unsigned_type_test.rb +66 -0
 - data/test/cases/adapters/postgresql/active_schema_test.rb +98 -0
 - data/test/cases/adapters/postgresql/array_test.rb +339 -0
 - data/test/cases/adapters/postgresql/bit_string_test.rb +82 -0
 - data/test/cases/adapters/postgresql/bytea_test.rb +134 -0
 - data/test/cases/adapters/postgresql/case_insensitive_test.rb +26 -0
 - data/test/cases/adapters/postgresql/change_schema_test.rb +38 -0
 - data/test/cases/adapters/postgresql/cidr_test.rb +25 -0
 - data/test/cases/adapters/postgresql/citext_test.rb +78 -0
 - data/test/cases/adapters/postgresql/collation_test.rb +53 -0
 - data/test/cases/adapters/postgresql/composite_test.rb +132 -0
 - data/test/cases/adapters/postgresql/connection_test.rb +257 -0
 - data/test/cases/adapters/postgresql/datatype_test.rb +92 -0
 - data/test/cases/adapters/postgresql/domain_test.rb +47 -0
 - data/test/cases/adapters/postgresql/enum_test.rb +91 -0
 - data/test/cases/adapters/postgresql/explain_test.rb +20 -0
 - data/test/cases/adapters/postgresql/extension_migration_test.rb +63 -0
 - data/test/cases/adapters/postgresql/full_text_test.rb +44 -0
 - data/test/cases/adapters/postgresql/geometric_test.rb +378 -0
 - data/test/cases/adapters/postgresql/hstore_test.rb +382 -0
 - data/test/cases/adapters/postgresql/infinity_test.rb +69 -0
 - data/test/cases/adapters/postgresql/integer_test.rb +25 -0
 - data/test/cases/adapters/postgresql/json_test.rb +237 -0
 - data/test/cases/adapters/postgresql/ltree_test.rb +53 -0
 - data/test/cases/adapters/postgresql/money_test.rb +96 -0
 - data/test/cases/adapters/postgresql/network_test.rb +94 -0
 - data/test/cases/adapters/postgresql/numbers_test.rb +49 -0
 - data/test/cases/adapters/postgresql/postgresql_adapter_test.rb +405 -0
 - data/test/cases/adapters/postgresql/prepared_statements_test.rb +22 -0
 - data/test/cases/adapters/postgresql/quoting_test.rb +44 -0
 - data/test/cases/adapters/postgresql/range_test.rb +343 -0
 - data/test/cases/adapters/postgresql/referential_integrity_test.rb +111 -0
 - data/test/cases/adapters/postgresql/rename_table_test.rb +34 -0
 - data/test/cases/adapters/postgresql/schema_authorization_test.rb +119 -0
 - data/test/cases/adapters/postgresql/schema_test.rb +597 -0
 - data/test/cases/adapters/postgresql/serial_test.rb +154 -0
 - data/test/cases/adapters/postgresql/statement_pool_test.rb +41 -0
 - data/test/cases/adapters/postgresql/timestamp_test.rb +90 -0
 - data/test/cases/adapters/postgresql/type_lookup_test.rb +33 -0
 - data/test/cases/adapters/postgresql/utils_test.rb +62 -0
 - data/test/cases/adapters/postgresql/uuid_test.rb +294 -0
 - data/test/cases/adapters/postgresql/xml_test.rb +54 -0
 - data/test/cases/adapters/sqlite3/collation_test.rb +53 -0
 - data/test/cases/adapters/sqlite3/copy_table_test.rb +98 -0
 - data/test/cases/adapters/sqlite3/explain_test.rb +21 -0
 - data/test/cases/adapters/sqlite3/quoting_test.rb +101 -0
 - data/test/cases/adapters/sqlite3/sqlite3_adapter_test.rb +441 -0
 - data/test/cases/adapters/sqlite3/sqlite3_create_folder_test.rb +24 -0
 - data/test/cases/adapters/sqlite3/statement_pool_test.rb +20 -0
 - data/test/cases/aggregations_test.rb +11 -1
 - data/test/cases/ar_schema_test.rb +35 -50
 - data/test/cases/associations/association_scope_test.rb +1 -6
 - data/test/cases/associations/belongs_to_associations_test.rb +122 -10
 - data/test/cases/associations/bidirectional_destroy_dependencies_test.rb +41 -0
 - data/test/cases/associations/callbacks_test.rb +5 -7
 - data/test/cases/associations/cascaded_eager_loading_test.rb +1 -1
 - data/test/cases/associations/eager_load_nested_include_test.rb +1 -3
 - data/test/cases/associations/eager_test.rb +158 -73
 - data/test/cases/associations/extension_test.rb +7 -2
 - data/test/cases/associations/has_and_belongs_to_many_associations_test.rb +64 -32
 - data/test/cases/associations/has_many_associations_test.rb +362 -43
 - data/test/cases/associations/has_many_through_associations_test.rb +108 -41
 - data/test/cases/associations/has_one_associations_test.rb +105 -8
 - data/test/cases/associations/has_one_through_associations_test.rb +6 -3
 - data/test/cases/associations/inner_join_association_test.rb +3 -3
 - data/test/cases/associations/inverse_associations_test.rb +38 -11
 - data/test/cases/associations/join_model_test.rb +59 -36
 - data/test/cases/associations/left_outer_join_association_test.rb +88 -0
 - data/test/cases/associations/nested_through_associations_test.rb +2 -2
 - data/test/cases/associations/required_test.rb +25 -5
 - data/test/cases/associations_test.rb +39 -34
 - data/test/cases/attribute_decorators_test.rb +9 -8
 - data/test/cases/attribute_methods/read_test.rb +5 -5
 - data/test/cases/attribute_methods_test.rb +97 -40
 - data/test/cases/attribute_set_test.rb +64 -4
 - data/test/cases/attribute_test.rb +84 -18
 - data/test/cases/attributes_test.rb +151 -34
 - data/test/cases/autosave_association_test.rb +149 -36
 - data/test/cases/base_test.rb +290 -241
 - data/test/cases/batches_test.rb +299 -22
 - data/test/cases/binary_test.rb +2 -10
 - data/test/cases/bind_parameter_test.rb +76 -66
 - data/test/cases/cache_key_test.rb +26 -0
 - data/test/cases/calculations_test.rb +167 -15
 - data/test/cases/callbacks_test.rb +161 -68
 - data/test/cases/coders/json_test.rb +15 -0
 - data/test/cases/collection_cache_key_test.rb +115 -0
 - data/test/cases/column_definition_test.rb +26 -57
 - data/test/cases/comment_test.rb +145 -0
 - data/test/cases/connection_adapters/adapter_leasing_test.rb +5 -3
 - data/test/cases/connection_adapters/connection_handler_test.rb +128 -21
 - data/test/cases/connection_adapters/connection_specification_test.rb +1 -1
 - data/test/cases/connection_adapters/merge_and_resolve_default_url_config_test.rb +0 -38
 - data/test/cases/connection_adapters/mysql_type_lookup_test.rb +5 -1
 - data/test/cases/connection_adapters/schema_cache_test.rb +8 -3
 - data/test/cases/connection_adapters/type_lookup_test.rb +15 -7
 - data/test/cases/connection_management_test.rb +46 -56
 - data/test/cases/connection_pool_test.rb +195 -20
 - data/test/cases/connection_specification/resolver_test.rb +15 -0
 - data/test/cases/counter_cache_test.rb +10 -5
 - data/test/cases/custom_locking_test.rb +1 -1
 - data/test/cases/database_statements_test.rb +18 -3
 - data/test/cases/{invalid_date_test.rb → date_test.rb} +13 -1
 - data/test/cases/date_time_precision_test.rb +107 -0
 - data/test/cases/defaults_test.rb +85 -89
 - data/test/cases/dirty_test.rb +30 -52
 - data/test/cases/disconnected_test.rb +4 -2
 - data/test/cases/enum_test.rb +178 -24
 - data/test/cases/errors_test.rb +16 -0
 - data/test/cases/explain_test.rb +32 -21
 - data/test/cases/finder_test.rb +273 -148
 - data/test/cases/fixture_set/file_test.rb +18 -0
 - data/test/cases/fixtures_test.rb +112 -32
 - data/test/cases/forbidden_attributes_protection_test.rb +69 -3
 - data/test/cases/helper.rb +10 -16
 - data/test/cases/hot_compatibility_test.rb +89 -1
 - data/test/cases/inheritance_test.rb +284 -53
 - data/test/cases/integration_test.rb +23 -7
 - data/test/cases/invalid_connection_test.rb +4 -2
 - data/test/cases/invertible_migration_test.rb +124 -32
 - data/test/cases/json_serialization_test.rb +11 -2
 - data/test/cases/locking_test.rb +22 -6
 - data/test/cases/log_subscriber_test.rb +106 -17
 - data/test/cases/migration/change_schema_test.rb +60 -114
 - data/test/cases/migration/change_table_test.rb +34 -2
 - data/test/cases/migration/column_attributes_test.rb +7 -23
 - data/test/cases/migration/column_positioning_test.rb +8 -8
 - data/test/cases/migration/columns_test.rb +17 -11
 - data/test/cases/migration/command_recorder_test.rb +47 -2
 - data/test/cases/migration/compatibility_test.rb +118 -0
 - data/test/cases/migration/create_join_table_test.rb +21 -12
 - data/test/cases/migration/foreign_key_test.rb +52 -18
 - data/test/cases/migration/index_test.rb +14 -12
 - data/test/cases/migration/logger_test.rb +1 -1
 - data/test/cases/migration/pending_migrations_test.rb +0 -1
 - data/test/cases/migration/references_foreign_key_test.rb +59 -7
 - data/test/cases/migration/references_index_test.rb +4 -4
 - data/test/cases/migration/references_statements_test.rb +26 -6
 - data/test/cases/migration/rename_table_test.rb +25 -25
 - data/test/cases/migration_test.rb +279 -81
 - data/test/cases/migrator_test.rb +91 -8
 - data/test/cases/mixin_test.rb +0 -2
 - data/test/cases/modules_test.rb +3 -4
 - data/test/cases/multiparameter_attributes_test.rb +24 -2
 - data/test/cases/multiple_db_test.rb +11 -4
 - data/test/cases/nested_attributes_test.rb +61 -33
 - data/test/cases/persistence_test.rb +102 -10
 - data/test/cases/pooled_connections_test.rb +3 -3
 - data/test/cases/primary_keys_test.rb +170 -31
 - data/test/cases/query_cache_test.rb +216 -96
 - data/test/cases/quoting_test.rb +65 -19
 - data/test/cases/readonly_test.rb +2 -1
 - data/test/cases/reflection_test.rb +68 -22
 - data/test/cases/relation/delegation_test.rb +3 -8
 - data/test/cases/relation/merging_test.rb +10 -14
 - data/test/cases/relation/mutation_test.rb +42 -24
 - data/test/cases/relation/or_test.rb +92 -0
 - data/test/cases/relation/predicate_builder_test.rb +4 -2
 - data/test/cases/relation/record_fetch_warning_test.rb +40 -0
 - data/test/cases/relation/where_chain_test.rb +23 -99
 - data/test/cases/relation/where_clause_test.rb +182 -0
 - data/test/cases/relation/where_test.rb +45 -23
 - data/test/cases/relation_test.rb +67 -58
 - data/test/cases/relations_test.rb +249 -38
 - data/test/cases/result_test.rb +10 -0
 - data/test/cases/sanitize_test.rb +108 -15
 - data/test/cases/schema_dumper_test.rb +119 -125
 - data/test/cases/schema_loading_test.rb +52 -0
 - data/test/cases/scoping/default_scoping_test.rb +113 -39
 - data/test/cases/scoping/named_scoping_test.rb +46 -9
 - data/test/cases/scoping/relation_scoping_test.rb +47 -4
 - data/test/cases/secure_token_test.rb +32 -0
 - data/test/cases/serialization_test.rb +1 -1
 - data/test/cases/serialized_attribute_test.rb +93 -6
 - data/test/cases/statement_cache_test.rb +38 -0
 - data/test/cases/store_test.rb +2 -1
 - data/test/cases/suppressor_test.rb +63 -0
 - data/test/cases/tasks/database_tasks_test.rb +73 -9
 - data/test/cases/tasks/mysql_rake_test.rb +139 -118
 - data/test/cases/tasks/postgresql_rake_test.rb +60 -6
 - data/test/cases/tasks/sqlite_rake_test.rb +30 -3
 - data/test/cases/test_case.rb +28 -20
 - data/test/cases/test_fixtures_test.rb +36 -0
 - data/test/cases/time_precision_test.rb +103 -0
 - data/test/cases/timestamp_test.rb +44 -10
 - data/test/cases/touch_later_test.rb +121 -0
 - data/test/cases/transaction_callbacks_test.rb +128 -62
 - data/test/cases/transaction_isolation_test.rb +2 -2
 - data/test/cases/transactions_test.rb +61 -43
 - data/test/cases/type/adapter_specific_registry_test.rb +133 -0
 - data/test/cases/type/date_time_test.rb +14 -0
 - data/test/cases/type/integer_test.rb +2 -96
 - data/test/cases/type/string_test.rb +0 -14
 - data/test/cases/type_test.rb +39 -0
 - data/test/cases/types_test.rb +1 -118
 - data/test/cases/unconnected_test.rb +1 -1
 - data/test/cases/validations/absence_validation_test.rb +73 -0
 - data/test/cases/validations/association_validation_test.rb +13 -2
 - data/test/cases/validations/i18n_validation_test.rb +6 -10
 - data/test/cases/validations/length_validation_test.rb +62 -30
 - data/test/cases/validations/presence_validation_test.rb +36 -1
 - data/test/cases/validations/uniqueness_validation_test.rb +128 -37
 - data/test/cases/validations_repair_helper.rb +2 -6
 - data/test/cases/validations_test.rb +36 -7
 - data/test/cases/view_test.rb +102 -5
 - data/test/cases/yaml_serialization_test.rb +21 -26
 - data/test/config.example.yml +97 -0
 - data/test/fixtures/bad_posts.yml +9 -0
 - data/test/fixtures/books.yml +20 -0
 - data/test/fixtures/content.yml +3 -0
 - data/test/fixtures/content_positions.yml +3 -0
 - data/test/fixtures/dead_parrots.yml +5 -0
 - data/test/fixtures/live_parrots.yml +4 -0
 - data/test/fixtures/naked/yml/parrots.yml +2 -0
 - data/test/fixtures/naked/yml/trees.yml +3 -0
 - data/test/fixtures/nodes.yml +29 -0
 - data/test/fixtures/other_comments.yml +6 -0
 - data/test/fixtures/other_dogs.yml +2 -0
 - data/test/fixtures/other_posts.yml +7 -0
 - data/test/fixtures/price_estimates.yml +10 -1
 - data/test/fixtures/trees.yml +3 -0
 - data/test/migrations/10_urban/9_add_expressions.rb +1 -1
 - data/test/migrations/decimal/1_give_me_big_numbers.rb +1 -1
 - data/test/migrations/magic/1_currencies_have_symbols.rb +1 -1
 - data/test/migrations/missing/1000_people_have_middle_names.rb +2 -2
 - data/test/migrations/missing/1_people_have_last_names.rb +2 -2
 - data/test/migrations/missing/3_we_need_reminders.rb +2 -2
 - data/test/migrations/missing/4_innocent_jointable.rb +2 -2
 - data/test/migrations/rename/1_we_need_things.rb +2 -2
 - data/test/migrations/rename/2_rename_things.rb +2 -2
 - data/test/migrations/to_copy/1_people_have_hobbies.rb +1 -1
 - data/test/migrations/to_copy/2_people_have_descriptions.rb +1 -1
 - data/test/migrations/to_copy2/1_create_articles.rb +1 -1
 - data/test/migrations/to_copy2/2_create_comments.rb +1 -1
 - data/test/migrations/to_copy_with_name_collision/1_people_have_hobbies.rb +1 -1
 - data/test/migrations/to_copy_with_timestamps/20090101010101_people_have_hobbies.rb +1 -1
 - data/test/migrations/to_copy_with_timestamps/20090101010202_people_have_descriptions.rb +1 -1
 - data/test/migrations/to_copy_with_timestamps2/20090101010101_create_articles.rb +1 -1
 - data/test/migrations/to_copy_with_timestamps2/20090101010202_create_comments.rb +1 -1
 - data/test/migrations/valid/1_valid_people_have_last_names.rb +1 -1
 - data/test/migrations/valid/2_we_need_reminders.rb +2 -2
 - data/test/migrations/valid/3_innocent_jointable.rb +2 -2
 - data/test/migrations/valid_with_subdirectories/1_valid_people_have_last_names.rb +1 -1
 - data/test/migrations/valid_with_subdirectories/sub/2_we_need_reminders.rb +2 -2
 - data/test/migrations/valid_with_subdirectories/sub1/3_innocent_jointable.rb +2 -2
 - data/test/migrations/valid_with_timestamps/20100101010101_valid_with_timestamps_people_have_last_names.rb +1 -1
 - data/test/migrations/valid_with_timestamps/20100201010101_valid_with_timestamps_we_need_reminders.rb +1 -1
 - data/test/migrations/valid_with_timestamps/20100301010101_valid_with_timestamps_innocent_jointable.rb +1 -1
 - data/test/migrations/version_check/20131219224947_migration_version_check.rb +1 -1
 - data/test/models/admin/randomly_named_c1.rb +6 -2
 - data/test/models/aircraft.rb +1 -0
 - data/test/models/author.rb +4 -7
 - data/test/models/bird.rb +1 -1
 - data/test/models/book.rb +5 -0
 - data/test/models/bulb.rb +2 -1
 - data/test/models/car.rb +3 -0
 - data/test/models/cat.rb +10 -0
 - data/test/models/chef.rb +1 -0
 - data/test/models/club.rb +2 -0
 - data/test/models/comment.rb +17 -5
 - data/test/models/company.rb +4 -2
 - data/test/models/company_in_module.rb +1 -1
 - data/test/models/contact.rb +1 -1
 - data/test/models/content.rb +40 -0
 - data/test/models/customer.rb +8 -2
 - data/test/models/developer.rb +19 -0
 - data/test/models/face.rb +1 -1
 - data/test/models/guitar.rb +4 -0
 - data/test/models/hotel.rb +2 -0
 - data/test/models/member.rb +1 -0
 - data/test/models/member_detail.rb +4 -3
 - data/test/models/mentor.rb +3 -0
 - data/test/models/mocktail_designer.rb +2 -0
 - data/test/models/node.rb +5 -0
 - data/test/models/non_primary_key.rb +2 -0
 - data/test/models/notification.rb +3 -0
 - data/test/models/other_dog.rb +5 -0
 - data/test/models/owner.rb +4 -1
 - data/test/models/parrot.rb +6 -7
 - data/test/models/person.rb +0 -1
 - data/test/models/pet.rb +3 -0
 - data/test/models/pet_treasure.rb +6 -0
 - data/test/models/pirate.rb +3 -3
 - data/test/models/post.rb +18 -9
 - data/test/models/project.rb +9 -0
 - data/test/models/randomly_named_c1.rb +1 -1
 - data/test/models/recipe.rb +3 -0
 - data/test/models/ship.rb +8 -2
 - data/test/models/tag.rb +6 -0
 - data/test/models/topic.rb +2 -8
 - data/test/models/tree.rb +3 -0
 - data/test/models/tuning_peg.rb +4 -0
 - data/test/models/user.rb +14 -0
 - data/test/models/uuid_item.rb +6 -0
 - data/test/schema/mysql2_specific_schema.rb +33 -23
 - data/test/schema/oracle_specific_schema.rb +1 -4
 - data/test/schema/postgresql_specific_schema.rb +36 -124
 - data/test/schema/schema.rb +170 -65
 - data/test/schema/schema.rb.original +1057 -0
 - data/test/schema/sqlite_specific_schema.rb +1 -5
 - data/test/support/connection.rb +1 -0
 - data/test/support/schema_dumping_helper.rb +1 -1
 - data/test/support/yaml_compatibility_fixtures/rails_4_1.yml +22 -0
 - data/test/support/yaml_compatibility_fixtures/rails_4_2_0.yml +182 -0
 - metadata +146 -30
 - data/lib/mswin32/rb19x/ibm_db.so +0 -0
 - data/lib/mswin32/rb21x/i386/ibm_db.so +0 -0
 - data/lib/mswin32/rb22x/i386/ibm_db.so +0 -0
 - data/lib/mswin32/rb23x/i386/ibm_db.so +0 -0
 - data/test/cases/associations/deprecated_counter_cache_on_has_many_through_test.rb +0 -26
 - data/test/cases/attribute_methods/serialization_test.rb +0 -29
 - data/test/cases/migration/change_schema_test - Copy.rb +0 -448
 - data/test/cases/migration/foreign_key_test - Changed.rb +0 -325
 - data/test/cases/migration/table_and_index_test.rb +0 -24
 - data/test/cases/relation/where_test2.rb +0 -36
 - data/test/cases/type/decimal_test.rb +0 -56
 - data/test/cases/type/unsigned_integer_test.rb +0 -18
 - data/test/cases/xml_serialization_test.rb +0 -457
 - data/test/fixtures/naked/csv/accounts.csv +0 -1
 - data/test/schema/mysql_specific_schema.rb +0 -70
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
     | 
    
         
            -
             
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 2 
     | 
    
         
            +
            SHA256:
         
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: 431bd5a8a968177cca4733ecb3612353f4b46c1aaef82e69c27cafbff5cc13be
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: a148b2d5695bea923e0f624ec02f1d88cb554dd9a4097665b59aad10f2ea243b
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 7799b0f97238828cd8100944fdff0a50544d4b62539c4f771dc2de7b1703a8ad6afcd9548ea094311a746613a5f6d0edacb7a100dba8678dad8ce344739b90d3
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: ebef53348015de9f0860dc6ceceda17cfc70c498a5eb806048120761bf5acec5df26a43c928469b8e5ab93d5002bed87c2f5b279c9ebd1714178548fc60ea3e5
         
     | 
    
        data/CHANGES
    CHANGED
    
    | 
         @@ -1,5 +1,9 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            Change Log
         
     | 
| 
       2 
2 
     | 
    
         
             
            ==============
         
     | 
| 
      
 3 
     | 
    
         
            +
             
     | 
| 
      
 4 
     | 
    
         
            +
            2018/05/24 (IBM_DB adapter 4.0.0, driver 3.0.5)
         
     | 
| 
      
 5 
     | 
    
         
            +
              - Rails 5.0.7 Toleration support. New features of Active Record 5.0.7 are not added also none of the open issue are fixed in this release.
         
     | 
| 
      
 6 
     | 
    
         
            +
              
         
     | 
| 
       3 
7 
     | 
    
         
             
            2016/07/08 (IBM_DB adapter 3.0.5, driver 3.0.5)
         
     | 
| 
       4 
8 
     | 
    
         
             
              - Fixed issue #71 - Query hangs from db2 with no any exception return
         
     | 
| 
       5 
9 
     | 
    
         | 
    
        data/LICENSE
    CHANGED
    
    
    
        data/ParameterizedQueries README	
    CHANGED
    
    | 
         @@ -22,18 +22,18 @@ development: 
     | 
|
| 
       22 
22 
     | 
    
         | 
| 
       23 
23 
     | 
    
         
             
            Similarly for the other sections (test/production) of the database.yml file set "parameterized" to true to enable usage of parameterized SQL queries
         
     | 
| 
       24 
24 
     | 
    
         | 
| 
      
 25 
     | 
    
         
            +
             
     | 
| 
       25 
26 
     | 
    
         
             
            Supported Activerecord Versions
         
     | 
| 
       26 
27 
     | 
    
         
             
            ===============================
         
     | 
| 
       27 
     | 
    
         
            -
              Activerecord- 
     | 
| 
      
 28 
     | 
    
         
            +
              Activerecord-5.0.7 and above
         
     | 
| 
      
 29 
     | 
    
         
            +
              
         
     | 
| 
       28 
30 
     | 
    
         | 
| 
       29 
31 
     | 
    
         
             
            Supported Operating Systems and Databases
         
     | 
| 
       30 
32 
     | 
    
         
             
            =========================================
         
     | 
| 
       31 
33 
     | 
    
         
             
            Refer the main README
         
     | 
| 
       32 
34 
     | 
    
         | 
| 
      
 35 
     | 
    
         
            +
             
     | 
| 
       33 
36 
     | 
    
         
             
            Feedback
         
     | 
| 
       34 
37 
     | 
    
         
             
            ========
         
     | 
| 
       35 
     | 
    
         
            -
              Your feedback is very much appreciated and expected through  
     | 
| 
       36 
     | 
    
         
            -
               -  
     | 
| 
       37 
     | 
    
         
            -
               - rubyibm forum:       http://rubyforge.org/forum/?group_id=2361
         
     | 
| 
       38 
     | 
    
         
            -
               - rubyibm bug reports: http://rubyforge.org/tracker/?group_id=2361
         
     | 
| 
       39 
     | 
    
         
            -
               - IBM_DB developers:   rubyibm-developers@rubyforge.org
         
     | 
| 
      
 38 
     | 
    
         
            +
              Your feedback is very much appreciated and expected through github:
         
     | 
| 
      
 39 
     | 
    
         
            +
               - github issue: https://github.com/ibmdb/ruby-ibmdb/issues
         
     | 
    
        data/README
    CHANGED
    
    | 
         @@ -1,6 +1,6 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            =====================================================================
         
     | 
| 
       2 
     | 
    
         
            -
            README for the IBM_DB Adapter ( 
     | 
| 
       3 
     | 
    
         
            -
            For ActiveRecord Version >=  
     | 
| 
      
 2 
     | 
    
         
            +
            README for the IBM_DB Adapter (5.0.0) and Driver (3.0.5)
         
     | 
| 
      
 3 
     | 
    
         
            +
            For ActiveRecord Version >= 5.0.7 (and Rails >= 5.0.7)
         
     | 
| 
       4 
4 
     | 
    
         
             
            =====================================================================
         
     | 
| 
       5 
5 
     | 
    
         | 
| 
       6 
6 
     | 
    
         
             
            Supported Operating Systems 
         
     | 
| 
         @@ -14,13 +14,10 @@ Supported Operating Systems 
     | 
|
| 
       14 
14 
     | 
    
         | 
| 
       15 
15 
     | 
    
         
             
            Supported Databases
         
     | 
| 
       16 
16 
     | 
    
         
             
            ====================
         
     | 
| 
       17 
     | 
    
         
            -
              - IBM DB2 Universal Database on Linux/Unix/Windows versions  
     | 
| 
       18 
     | 
    
         
            -
              - Remote connections to IBM DB2 Universal Database on i5/OS versions  
     | 
| 
       19 
     | 
    
         
            -
             
     | 
| 
       20 
     | 
    
         
            -
             
     | 
| 
       21 
     | 
    
         
            -
              - Remote connections to IBM DB2 Universal Database on z/OS version 8, 9 and 10
         
     | 
| 
       22 
     | 
    
         
            -
              - Informix Dynamic Server 11.10 and beyond.
         
     | 
| 
       23 
     | 
    
         
            -
                Please ensure that the IBM DataServer Viper 2 client is installed.
         
     | 
| 
      
 17 
     | 
    
         
            +
              - IBM DB2 Universal Database on Linux/Unix/Windows versions 10 Fixpak 5 and above
         
     | 
| 
      
 18 
     | 
    
         
            +
              - Remote connections to IBM DB2 Universal Database on i5/OS versions 7.2 and above.        
         
     | 
| 
      
 19 
     | 
    
         
            +
              - Remote connections to IBM DB2 Universal Database on z/OS version 11 and above
         
     | 
| 
      
 20 
     | 
    
         
            +
             
     | 
| 
       24 
21 
     | 
    
         | 
| 
       25 
22 
     | 
    
         | 
| 
       26 
23 
     | 
    
         
             
            Installing the IBM_DB adapter and driver as a Ruby gem
         
     | 
| 
         @@ -28,32 +25,26 @@ Installing the IBM_DB adapter and driver as a Ruby gem 
     | 
|
| 
       28 
25 
     | 
    
         
             
            The IBM_DB gem is an ActiveRecord adapter. Installing the IBM_DB adapter and driver as a gem enables any application in the
         
     | 
| 
       29 
26 
     | 
    
         
             
            Ruby environment, including Rails, to interact with IBM data servers.
         
     | 
| 
       30 
27 
     | 
    
         | 
| 
       31 
     | 
    
         
            -
            Note : -	1)	If using activerecord version below 2.0 then it requires that the ibm_db adapter be registered with the list of connection adapters by manually adding ibm_db at line 77 (approx) in the file activerecord.rb (GEM_HOME\activerecord-<version>\lib\). 
         
     | 
| 
       32 
28 
     | 
    
         | 
| 
       33 
     | 
    
         
            -
             
     | 
| 
      
 29 
     | 
    
         
            +
            	The IBM_DB driver can also be built separately (from source) and used in direct API calls.
         
     | 
| 
       34 
30 
     | 
    
         | 
| 
      
 31 
     | 
    
         
            +
            	
         
     | 
| 
       35 
32 
     | 
    
         
             
            1. Windows platforms:
         
     | 
| 
       36 
33 
     | 
    
         
             
            =====================
         
     | 
| 
       37 
34 
     | 
    
         
             
              INSTALL (as Ruby gem)
         
     | 
| 
       38 
35 
     | 
    
         
             
               To remove previous gem version (optionally):
         
     | 
| 
       39 
36 
     | 
    
         
             
                D:\>gem uninstall ibm_db
         
     | 
| 
       40 
     | 
    
         
            -
                Successfully uninstalled ibm_db version  
     | 
| 
      
 37 
     | 
    
         
            +
                Successfully uninstalled ibm_db version 3.0.5
         
     | 
| 
       41 
38 
     | 
    
         | 
| 
       42 
39 
     | 
    
         
             
              Example:
         
     | 
| 
       43 
40 
     | 
    
         
             
                D:\>gem install ibm_db
         
     | 
| 
       44 
     | 
    
         
            -
                Fetching: ibm_db- 
     | 
| 
       45 
     | 
    
         
            -
                Successfully installed ibm_db- 
     | 
| 
      
 41 
     | 
    
         
            +
                Fetching: ibm_db-4.0.0-x86-mingw32.gem (100%)
         
     | 
| 
      
 42 
     | 
    
         
            +
                Successfully installed ibm_db-4.0.0-x86-mingw32
         
     | 
| 
       46 
43 
     | 
    
         
             
                1 gem installed
         
     | 
| 
       47 
     | 
    
         
            -
                Installing ri documentation for ibm_db- 
     | 
| 
       48 
     | 
    
         
            -
                Installing RDoc documentation for ibm_db- 
     | 
| 
      
 44 
     | 
    
         
            +
                Installing ri documentation for ibm_db-4.0.0-x86-mingw32...
         
     | 
| 
      
 45 
     | 
    
         
            +
                Installing RDoc documentation for ibm_db-4.0.0-x86-mingw32...
         
     | 
| 
       49 
46 
     | 
    
         | 
| 
       50 
     | 
    
         
            -
                Note:
         
     | 
| 
       51 
     | 
    
         
            -
                	1) Currently Ruby-2.0 64-bit version on Windows is not supported as there are issues related to SQL definitions with the mingW compiler 
         
     | 
| 
       52 
     | 
    
         
            -
                			[Details can be found here https://sourceforge.net/p/mingw/bugs/2041/ ]. 
         
     | 
| 
       53 
     | 
    
         
            -
                		Support will be enabled after the abive reported issue is resolved.
         
     | 
| 
       54 
47 
     | 
    
         | 
| 
       55 
     | 
    
         
            -
                	2)The manual step after install if using activerecord version below 2.0:
         
     | 
| 
       56 
     | 
    
         
            -
                     add ibm_db into GEM_HOME\1.8\gems\activerecord-1.15.3\lib\active_record.rb (Line 77)
         
     | 
| 
       57 
48 
     | 
    
         | 
| 
       58 
49 
     | 
    
         
             
            2. Linux and Unix platforms:
         
     | 
| 
       59 
50 
     | 
    
         
             
            ============================
         
     | 
| 
         @@ -61,28 +52,25 @@ Note : -	1)	If using activerecord version below 2.0 then it requires that the ib 
     | 
|
| 
       61 
52 
     | 
    
         
             
              INSTALL (as Ruby gem)
         
     | 
| 
       62 
53 
     | 
    
         
             
                To remove previous gem version (optionally):
         
     | 
| 
       63 
54 
     | 
    
         
             
                $ gem uninstall ibm_db
         
     | 
| 
       64 
     | 
    
         
            -
                Successfully uninstalled ibm_db version 0. 
     | 
| 
      
 55 
     | 
    
         
            +
                Successfully uninstalled ibm_db version 3.0.5
         
     | 
| 
       65 
56 
     | 
    
         | 
| 
       66 
     | 
    
         
            -
                
     | 
| 
       67 
     | 
    
         
            -
                     (other than the DB2 install user account)
         
     | 
| 
       68 
     | 
    
         
            -
               $ . /home/db2inst1/sqllib/db2profile
         
     | 
| 
       69 
     | 
    
         
            -
               $ export IBM_DB_HOME=DB2HOME (eg. /home/db2inst1/sqllib or /opt/ibm/db2/v9.5)
         
     | 
| 
      
 57 
     | 
    
         
            +
               
         
     | 
| 
       70 
58 
     | 
    
         
             
               $ gem install ibm_db
         
     | 
| 
       71 
59 
     | 
    
         
             
                 Building native extensions.  This could take a while...
         
     | 
| 
       72 
     | 
    
         
            -
                 Successfully installed ibm_db- 
     | 
| 
      
 60 
     | 
    
         
            +
                 Successfully installed ibm_db-4.0.0
         
     | 
| 
       73 
61 
     | 
    
         
             
                 1 gem installed
         
     | 
| 
       74 
     | 
    
         
            -
                 Installing ri documentation for ibm_db- 
     | 
| 
       75 
     | 
    
         
            -
                 Installing RDoc documentation for ibm_db- 
     | 
| 
      
 62 
     | 
    
         
            +
                 Installing ri documentation for ibm_db-4.0.0...
         
     | 
| 
      
 63 
     | 
    
         
            +
                 Installing RDoc documentation for ibm_db-4.0.0...
         
     | 
| 
       76 
64 
     | 
    
         | 
| 
      
 65 
     | 
    
         
            +
            	 
         
     | 
| 
       77 
66 
     | 
    
         
             
              BUILD (optionally) ibm_db gem  from sources (ibm_db-x.x.x.tar.gz):
         
     | 
| 
       78 
     | 
    
         
            -
              1. Download source from  
     | 
| 
       79 
     | 
    
         
            -
                  
     | 
| 
      
 67 
     | 
    
         
            +
              1. Download source from Github
         
     | 
| 
      
 68 
     | 
    
         
            +
                 https://github.com/ibmdb/ruby-ibmdb
         
     | 
| 
       80 
69 
     | 
    
         
             
              2. Build gem from specification (IBM_DB.gemspec)
         
     | 
| 
       81 
70 
     | 
    
         
             
                 $ cd IBM_DB_Adapter/ibm_db
         
     | 
| 
       82 
71 
     | 
    
         
             
                 $ gem build IBM_DB.gemspec
         
     | 
| 
       83 
72 
     | 
    
         | 
| 
       84 
     | 
    
         
            -
                
     | 
| 
       85 
     | 
    
         
            -
                     add ibm_db into GEM_HOME\1.8\gems\activerecord-1.15.3\lib\active_record.rb (Line 77)
         
     | 
| 
      
 73 
     | 
    
         
            +
               
         
     | 
| 
       86 
74 
     | 
    
         | 
| 
       87 
75 
     | 
    
         
             
            TEST (simple gem install verification)
         
     | 
| 
       88 
76 
     | 
    
         
             
            ======================================
         
     | 
| 
         @@ -93,6 +81,7 @@ TEST (simple gem install verification) 
     | 
|
| 
       93 
81 
     | 
    
         
             
               $ rake db:migrate
         
     | 
| 
       94 
82 
     | 
    
         
             
               $ rails console #rails server
         
     | 
| 
       95 
83 
     | 
    
         | 
| 
      
 84 
     | 
    
         
            +
               
         
     | 
| 
       96 
85 
     | 
    
         
             
            Instructions for building and installing the IBM_DB driver from source
         
     | 
| 
       97 
86 
     | 
    
         
             
            =======================================================================
         
     | 
| 
       98 
87 
     | 
    
         
             
            Building the driver manually as described below is not required if the install
         
     | 
| 
         @@ -102,7 +91,7 @@ here only for reference. 
     | 
|
| 
       102 
91 
     | 
    
         | 
| 
       103 
92 
     | 
    
         
             
             Prerequisites:
         
     | 
| 
       104 
93 
     | 
    
         
             
              Install Ruby from:
         
     | 
| 
       105 
     | 
    
         
            -
                 
     | 
| 
      
 94 
     | 
    
         
            +
                https://github.com/ibmdb/ruby-ibmdb
         
     | 
| 
       106 
95 
     | 
    
         | 
| 
       107 
96 
     | 
    
         
             
              Setup the environment
         
     | 
| 
       108 
97 
     | 
    
         | 
| 
         @@ -114,7 +103,7 @@ here only for reference. 
     | 
|
| 
       114 
103 
     | 
    
         
             
                      $ . /home/db2inst1/sqllib/db2profile
         
     | 
| 
       115 
104 
     | 
    
         | 
| 
       116 
105 
     | 
    
         
             
                  - To compile and link with DB2 client libraries:
         
     | 
| 
       117 
     | 
    
         
            -
                     $ export IBM_DB_HOME=DB2HOME (eg. /home/db2inst1/sqllib or /opt/ibm/db2/ 
     | 
| 
      
 106 
     | 
    
         
            +
                     $ export IBM_DB_HOME=DB2HOME (eg. /home/db2inst1/sqllib or /opt/ibm/db2/v10.5)
         
     | 
| 
       118 
107 
     | 
    
         | 
| 
       119 
108 
     | 
    
         
             
                Windows platforms:
         
     | 
| 
       120 
109 
     | 
    
         
             
                  - Set ruby devkit environment:
         
     | 
| 
         @@ -124,13 +113,13 @@ here only for reference. 
     | 
|
| 
       124 
113 
     | 
    
         
             
              Build the driver:
         
     | 
| 
       125 
114 
     | 
    
         
             
                - $ cd rubyibm_source/IBM_DB_Adapter/ibm_db/ext
         
     | 
| 
       126 
115 
     | 
    
         
             
                - $ ruby extconf.rb
         
     | 
| 
       127 
     | 
    
         
            -
                - $ make
         
     | 
| 
      
 116 
     | 
    
         
            +
                - $ ridk exec make
         
     | 
| 
       128 
117 
     | 
    
         | 
| 
       129 
118 
     | 
    
         
             
              Build the ibm_db gem
         
     | 
| 
       130 
119 
     | 
    
         
             
                - $ cp rubyibm_source/IBM_DB_Adapter/ibm_db/ext/ibm_db.so rubyibm_source/IBM_DB_Adapter/ibm_db/lib 
         
     | 
| 
       131 
     | 
    
         
            -
                	#  
     | 
| 
       132 
     | 
    
         
            -
                	# and placed under  
     | 
| 
       133 
     | 
    
         
            -
                	 
     | 
| 
      
 120 
     | 
    
         
            +
                	# On windows binaries are generated for 2.x version of ruby
         
     | 
| 
      
 121 
     | 
    
         
            +
                	# and placed under rb2x directory. The file ibm_db.rb is to ensure that binary is loaded based on runtime
         
     | 
| 
      
 122 
     | 
    
         
            +
                	
         
     | 
| 
       134 
123 
     | 
    
         
             
                - $ cd rubyibm_source/IBM_DB_Adapter/ibm_db
         
     | 
| 
       135 
124 
     | 
    
         
             
                - $ gem build IBM_DB.gemspec
         
     | 
| 
       136 
125 
     | 
    
         | 
| 
         @@ -184,12 +173,8 @@ Limitations and known problems 
     | 
|
| 
       184 
173 
     | 
    
         
             
               The IBM_DB adapter relies on IBM_DB driver (C extension) and the IBM Driver for ODBC and
         
     | 
| 
       185 
174 
     | 
    
         
             
               CLI to access databases on IBM data servers. Alternatively, you can either use the regular C
         
     | 
| 
       186 
175 
     | 
    
         
             
               implementation of Ruby, or use ActiveRecord-JDBC adapter to access databases.
         
     | 
| 
       187 
     | 
    
         
            -
              
     | 
| 
       188 
     | 
    
         
            -
             
     | 
| 
       189 
     | 
    
         
            -
             	The patch is required because, ActiveRecord 2.1.0 generates a non-standard SQL identifier,while preloading has_and_belongs_to_many associations,
         
     | 
| 
       190 
     | 
    
         
            -
             	which standard compliant databases like DB2 do not support. The bug report, against ActiveRecord, can be found in the link below
         
     | 
| 
       191 
     | 
    
         
            -
             		http://rails.lighthouseapp.com/projects/8994/tickets/394-patch-fixed-non-standard-sql-generated-by-preloading-has_and_belongs_to_many-associations
         
     | 
| 
       192 
     | 
    
         
            -
             - The following tests from the ActiveRecord 2.1.0 test suite with ibm_db gem 0.10.0 are expected to fail on DB2 LUW
         
     | 
| 
      
 176 
     | 
    
         
            +
             
         
     | 
| 
      
 177 
     | 
    
         
            +
             - The following tests are expected to fail on DB2 LUW
         
     | 
| 
       193 
178 
     | 
    
         
             
             	- test_read_attributes_before_type_cast_on_datetime
         
     | 
| 
       194 
179 
     | 
    
         
             
             	- test_to_xml
         
     | 
| 
       195 
180 
     | 
    
         
             
             	- test_native_types
         
     | 
| 
         @@ -198,28 +183,26 @@ Limitations and known problems 
     | 
|
| 
       198 
183 
     | 
    
         
             
             	- test_counting_with_empty_hash_conditions
         
     | 
| 
       199 
184 
     | 
    
         
             
             	- test_counting_with_single_conditions
         
     | 
| 
       200 
185 
     | 
    
         
             
             	- test_counting_with_single_hash
         
     | 
| 
      
 186 
     | 
    
         
            +
            	- Finders methods first, second, last, nth from first, nth from last, with limit, with offset etc. are expected to fail
         
     | 
| 
       201 
187 
     | 
    
         
             
             	Note :- 1)	The test cases from HasManyAssociations (4-8) above are found failing only when run as part of
         
     | 
| 
       202 
188 
     | 
    
         
             
             			the complete suite. However they pass when run standalone.
         
     | 
| 
       203 
189 
     | 
    
         
             
             		2)	Also there are two test cases (test_validate_uniqueness_with_non_standard_table_names, test_update_all_with_non_standard_table_name)which run against table with non-standard name. Given that DB2/IDS is standard compliant these test cases are expected to fail.
         
     | 
| 
       204 
190 
     | 
    
         
             
             			To have these test cases passing rename the fixtures file warehouse-things to warehouse_things.
         
     | 
| 
       205 
     | 
    
         
            -
             
     | 
| 
       206 
     | 
    
         
            -
             
     | 
| 
      
 191 
     | 
    
         
            +
            	- The test cases do not follow the DB2 rules are expectedto fail
         
     | 
| 
      
 192 
     | 
    
         
            +
             
     | 
| 
       207 
193 
     | 
    
         | 
| 
       208 
194 
     | 
    
         
             
            Unicode Support
         
     | 
| 
       209 
195 
     | 
    
         
             
            ===============
         
     | 
| 
       210 
     | 
    
         
            -
              - Available only with Ruby version 1.9 and above
         
     | 
| 
       211 
196 
     | 
    
         
             
              - Data returned from the driver will be in UTF8 encoding format.
         
     | 
| 
       212 
197 
     | 
    
         
             
              - The input data to the driver can be in any Ruby supported encoding format.
         
     | 
| 
       213 
198 
     | 
    
         | 
| 
       214 
199 
     | 
    
         
             
            To Do
         
     | 
| 
       215 
200 
     | 
    
         
             
            ====
         
     | 
| 
       216 
     | 
    
         
            -
             - Support ActiveRecord remove_column method for DB2 zOS 
     | 
| 
      
 201 
     | 
    
         
            +
             - Support ActiveRecord remove_column method for DB2 zOS
         
     | 
| 
      
 202 
     | 
    
         
            +
             - Open issues in Github
         
     | 
| 
       217 
203 
     | 
    
         | 
| 
       218 
204 
     | 
    
         | 
| 
       219 
205 
     | 
    
         
             
            Feedback
         
     | 
| 
       220 
206 
     | 
    
         
             
            ========
         
     | 
| 
       221 
     | 
    
         
            -
              Your feedback is very much appreciated and expected through  
     | 
| 
       222 
     | 
    
         
            -
               -  
     | 
| 
       223 
     | 
    
         
            -
               - rubyibm forum:       http://rubyforge.org/forum/?group_id=2361
         
     | 
| 
       224 
     | 
    
         
            -
               - rubyibm bug reports: http://rubyforge.org/tracker/?group_id=2361
         
     | 
| 
       225 
     | 
    
         
            -
               - IBM_DB developers:   rubyibm-developers@rubyforge.org
         
     | 
| 
      
 207 
     | 
    
         
            +
              Your feedback is very much appreciated and expected through github:
         
     | 
| 
      
 208 
     | 
    
         
            +
               - github issue: https://github.com/ibmdb/ruby-ibmdb/issues
         
     | 
    
        data/ext/Makefile
    ADDED
    
    | 
         @@ -0,0 +1,269 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
             
     | 
| 
      
 2 
     | 
    
         
            +
            SHELL = /bin/sh
         
     | 
| 
      
 3 
     | 
    
         
            +
             
     | 
| 
      
 4 
     | 
    
         
            +
            # V=0 quiet, V=1 verbose.  other values don't work.
         
     | 
| 
      
 5 
     | 
    
         
            +
            V = 0
         
     | 
| 
      
 6 
     | 
    
         
            +
            Q1 = $(V:1=)
         
     | 
| 
      
 7 
     | 
    
         
            +
            Q = $(Q1:0=@)
         
     | 
| 
      
 8 
     | 
    
         
            +
            ECHO1 = $(V:1=@ :)
         
     | 
| 
      
 9 
     | 
    
         
            +
            ECHO = $(ECHO1:0=@ echo)
         
     | 
| 
      
 10 
     | 
    
         
            +
            NULLCMD = :
         
     | 
| 
      
 11 
     | 
    
         
            +
             
     | 
| 
      
 12 
     | 
    
         
            +
            #### Start of system configuration section. ####
         
     | 
| 
      
 13 
     | 
    
         
            +
             
     | 
| 
      
 14 
     | 
    
         
            +
            srcdir = .
         
     | 
| 
      
 15 
     | 
    
         
            +
            topdir = /C/Ruby26/include/ruby-2.6.0
         
     | 
| 
      
 16 
     | 
    
         
            +
            hdrdir = $(topdir)
         
     | 
| 
      
 17 
     | 
    
         
            +
            arch_hdrdir = C:/Ruby26/include/ruby-2.6.0/i386-mingw32
         
     | 
| 
      
 18 
     | 
    
         
            +
            PATH_SEPARATOR = :
         
     | 
| 
      
 19 
     | 
    
         
            +
            VPATH = $(srcdir):$(arch_hdrdir)/ruby:$(hdrdir)/ruby
         
     | 
| 
      
 20 
     | 
    
         
            +
            prefix = $(DESTDIR)/C/Ruby26
         
     | 
| 
      
 21 
     | 
    
         
            +
            rubysitearchprefix = $(rubylibprefix)/$(sitearch)
         
     | 
| 
      
 22 
     | 
    
         
            +
            rubyarchprefix = $(rubylibprefix)/$(arch)
         
     | 
| 
      
 23 
     | 
    
         
            +
            rubylibprefix = $(libdir)/$(RUBY_BASE_NAME)
         
     | 
| 
      
 24 
     | 
    
         
            +
            exec_prefix = $(prefix)
         
     | 
| 
      
 25 
     | 
    
         
            +
            vendorarchhdrdir = $(vendorhdrdir)/$(sitearch)
         
     | 
| 
      
 26 
     | 
    
         
            +
            sitearchhdrdir = $(sitehdrdir)/$(sitearch)
         
     | 
| 
      
 27 
     | 
    
         
            +
            rubyarchhdrdir = $(rubyhdrdir)/$(arch)
         
     | 
| 
      
 28 
     | 
    
         
            +
            vendorhdrdir = $(rubyhdrdir)/vendor_ruby
         
     | 
| 
      
 29 
     | 
    
         
            +
            sitehdrdir = $(rubyhdrdir)/site_ruby
         
     | 
| 
      
 30 
     | 
    
         
            +
            rubyhdrdir = $(includedir)/$(RUBY_VERSION_NAME)
         
     | 
| 
      
 31 
     | 
    
         
            +
            vendorarchdir = $(vendorlibdir)/$(sitearch)
         
     | 
| 
      
 32 
     | 
    
         
            +
            vendorlibdir = $(vendordir)/$(ruby_version)
         
     | 
| 
      
 33 
     | 
    
         
            +
            vendordir = $(rubylibprefix)/vendor_ruby
         
     | 
| 
      
 34 
     | 
    
         
            +
            sitearchdir = $(sitelibdir)/$(sitearch)
         
     | 
| 
      
 35 
     | 
    
         
            +
            sitelibdir = $(sitedir)/$(ruby_version)
         
     | 
| 
      
 36 
     | 
    
         
            +
            sitedir = $(rubylibprefix)/site_ruby
         
     | 
| 
      
 37 
     | 
    
         
            +
            rubyarchdir = $(rubylibdir)/$(arch)
         
     | 
| 
      
 38 
     | 
    
         
            +
            rubylibdir = $(rubylibprefix)/$(ruby_version)
         
     | 
| 
      
 39 
     | 
    
         
            +
            sitearchincludedir = $(includedir)/$(sitearch)
         
     | 
| 
      
 40 
     | 
    
         
            +
            archincludedir = $(includedir)/$(arch)
         
     | 
| 
      
 41 
     | 
    
         
            +
            sitearchlibdir = $(libdir)/$(sitearch)
         
     | 
| 
      
 42 
     | 
    
         
            +
            archlibdir = $(libdir)/$(arch)
         
     | 
| 
      
 43 
     | 
    
         
            +
            ridir = $(datarootdir)/$(RI_BASE_NAME)
         
     | 
| 
      
 44 
     | 
    
         
            +
            mandir = $(datarootdir)/man
         
     | 
| 
      
 45 
     | 
    
         
            +
            localedir = $(datarootdir)/locale
         
     | 
| 
      
 46 
     | 
    
         
            +
            libdir = $(exec_prefix)/lib
         
     | 
| 
      
 47 
     | 
    
         
            +
            psdir = $(docdir)
         
     | 
| 
      
 48 
     | 
    
         
            +
            pdfdir = $(docdir)
         
     | 
| 
      
 49 
     | 
    
         
            +
            dvidir = $(docdir)
         
     | 
| 
      
 50 
     | 
    
         
            +
            htmldir = $(docdir)
         
     | 
| 
      
 51 
     | 
    
         
            +
            infodir = $(datarootdir)/info
         
     | 
| 
      
 52 
     | 
    
         
            +
            docdir = $(datarootdir)/doc/$(PACKAGE)
         
     | 
| 
      
 53 
     | 
    
         
            +
            oldincludedir = $(DESTDIR)/usr/include
         
     | 
| 
      
 54 
     | 
    
         
            +
            includedir = $(prefix)/include
         
     | 
| 
      
 55 
     | 
    
         
            +
            localstatedir = $(prefix)/var
         
     | 
| 
      
 56 
     | 
    
         
            +
            sharedstatedir = $(prefix)/com
         
     | 
| 
      
 57 
     | 
    
         
            +
            sysconfdir = $(DESTDIR)
         
     | 
| 
      
 58 
     | 
    
         
            +
            datadir = $(datarootdir)
         
     | 
| 
      
 59 
     | 
    
         
            +
            datarootdir = $(prefix)/share
         
     | 
| 
      
 60 
     | 
    
         
            +
            libexecdir = $(exec_prefix)/libexec
         
     | 
| 
      
 61 
     | 
    
         
            +
            sbindir = $(exec_prefix)/sbin
         
     | 
| 
      
 62 
     | 
    
         
            +
            bindir = $(exec_prefix)/bin
         
     | 
| 
      
 63 
     | 
    
         
            +
            archdir = $(rubyarchdir)
         
     | 
| 
      
 64 
     | 
    
         
            +
             
     | 
| 
      
 65 
     | 
    
         
            +
             
     | 
| 
      
 66 
     | 
    
         
            +
            CC_WRAPPER = 
         
     | 
| 
      
 67 
     | 
    
         
            +
            CC = i686-w64-mingw32-gcc
         
     | 
| 
      
 68 
     | 
    
         
            +
            CXX = i686-w64-mingw32-g++
         
     | 
| 
      
 69 
     | 
    
         
            +
            LIBRUBY = lib$(RUBY_SO_NAME).dll.a
         
     | 
| 
      
 70 
     | 
    
         
            +
            LIBRUBY_A = lib$(RUBY_SO_NAME)-static.a
         
     | 
| 
      
 71 
     | 
    
         
            +
            LIBRUBYARG_SHARED = -l$(RUBY_SO_NAME)
         
     | 
| 
      
 72 
     | 
    
         
            +
            LIBRUBYARG_STATIC = -l$(RUBY_SO_NAME)-static $(MAINLIBS)
         
     | 
| 
      
 73 
     | 
    
         
            +
            empty =
         
     | 
| 
      
 74 
     | 
    
         
            +
            OUTFLAG = -o $(empty)
         
     | 
| 
      
 75 
     | 
    
         
            +
            COUTFLAG = -o $(empty)
         
     | 
| 
      
 76 
     | 
    
         
            +
            CSRCFLAG = $(empty)
         
     | 
| 
      
 77 
     | 
    
         
            +
             
     | 
| 
      
 78 
     | 
    
         
            +
            RUBY_EXTCONF_H = unicode_support_version
         
     | 
| 
      
 79 
     | 
    
         
            +
            cflags   = $(optflags) $(debugflags) $(warnflags)
         
     | 
| 
      
 80 
     | 
    
         
            +
            cxxflags = $(optflags) $(debugflags) $(warnflags)
         
     | 
| 
      
 81 
     | 
    
         
            +
            optflags = -O3 -fno-omit-frame-pointer
         
     | 
| 
      
 82 
     | 
    
         
            +
            debugflags = -ggdb3
         
     | 
| 
      
 83 
     | 
    
         
            +
            warnflags = -Wall -Wextra -Wdeclaration-after-statement -Wdeprecated-declarations -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wmisleading-indentation -Wpointer-arith -Wrestrict -Wwrite-strings -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable
         
     | 
| 
      
 84 
     | 
    
         
            +
            cppflags = 
         
     | 
| 
      
 85 
     | 
    
         
            +
            CCDLFLAGS = 
         
     | 
| 
      
 86 
     | 
    
         
            +
            CFLAGS   = $(CCDLFLAGS) -O3 -fno-fast-math $(ARCH_FLAG)
         
     | 
| 
      
 87 
     | 
    
         
            +
            INCFLAGS = -I. -I$(arch_hdrdir) -I$(hdrdir)/ruby/backward -I$(hdrdir) -I$(srcdir)
         
     | 
| 
      
 88 
     | 
    
         
            +
            DEFS     = -D_FILE_OFFSET_BITS=64
         
     | 
| 
      
 89 
     | 
    
         
            +
            CPPFLAGS = -DRUBY_EXTCONF_H=\"$(RUBY_EXTCONF_H)\" -IC:\clidriver\32-bit\clidriver/include -D__USE_MINGW_ANSI_STDIO=1 -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0600 -D__MINGW_USE_VC2005_COMPAT $(DEFS) $(cppflags)
         
     | 
| 
      
 90 
     | 
    
         
            +
            CXXFLAGS = $(CCDLFLAGS) -march=i686 -mtune=generic -O2 -pipe $(ARCH_FLAG)
         
     | 
| 
      
 91 
     | 
    
         
            +
            ldflags  = -L. -pipe -s
         
     | 
| 
      
 92 
     | 
    
         
            +
            dldflags = -pipe -s -Wl,--enable-auto-image-base,--enable-auto-import $(DEFFILE) 
         
     | 
| 
      
 93 
     | 
    
         
            +
            ARCH_FLAG = 
         
     | 
| 
      
 94 
     | 
    
         
            +
            DLDFLAGS = $(ldflags) $(dldflags) $(ARCH_FLAG)
         
     | 
| 
      
 95 
     | 
    
         
            +
            LDSHARED = $(CC) -shared
         
     | 
| 
      
 96 
     | 
    
         
            +
            LDSHAREDXX = $(CXX) -shared
         
     | 
| 
      
 97 
     | 
    
         
            +
            AR = ar
         
     | 
| 
      
 98 
     | 
    
         
            +
            EXEEXT = .exe
         
     | 
| 
      
 99 
     | 
    
         
            +
             
     | 
| 
      
 100 
     | 
    
         
            +
            RUBY_INSTALL_NAME = $(RUBY_BASE_NAME)
         
     | 
| 
      
 101 
     | 
    
         
            +
            RUBY_SO_NAME = msvcrt-ruby260
         
     | 
| 
      
 102 
     | 
    
         
            +
            RUBYW_INSTALL_NAME = $(RUBYW_BASE_NAME)
         
     | 
| 
      
 103 
     | 
    
         
            +
            RUBY_VERSION_NAME = $(RUBY_BASE_NAME)-$(ruby_version)
         
     | 
| 
      
 104 
     | 
    
         
            +
            RUBYW_BASE_NAME = rubyw
         
     | 
| 
      
 105 
     | 
    
         
            +
            RUBY_BASE_NAME = ruby
         
     | 
| 
      
 106 
     | 
    
         
            +
             
     | 
| 
      
 107 
     | 
    
         
            +
            arch = i386-mingw32
         
     | 
| 
      
 108 
     | 
    
         
            +
            sitearch = i386-msvcrt
         
     | 
| 
      
 109 
     | 
    
         
            +
            ruby_version = 2.6.0
         
     | 
| 
      
 110 
     | 
    
         
            +
            ruby = $(bindir)/$(RUBY_BASE_NAME)
         
     | 
| 
      
 111 
     | 
    
         
            +
            RUBY = $(ruby)
         
     | 
| 
      
 112 
     | 
    
         
            +
            ruby_headers = $(hdrdir)/ruby.h $(hdrdir)/ruby/backward.h $(hdrdir)/ruby/ruby.h $(hdrdir)/ruby/defines.h $(hdrdir)/ruby/missing.h $(hdrdir)/ruby/intern.h $(hdrdir)/ruby/st.h $(hdrdir)/ruby/subst.h $(arch_hdrdir)/ruby/config.h $(RUBY_EXTCONF_H)
         
     | 
| 
      
 113 
     | 
    
         
            +
             
     | 
| 
      
 114 
     | 
    
         
            +
            RM = rm -f
         
     | 
| 
      
 115 
     | 
    
         
            +
            RM_RF = $(RUBY) -run -e rm -- -rf
         
     | 
| 
      
 116 
     | 
    
         
            +
            RMDIRS = rmdir --ignore-fail-on-non-empty -p
         
     | 
| 
      
 117 
     | 
    
         
            +
            MAKEDIRS = /usr/bin/mkdir -p
         
     | 
| 
      
 118 
     | 
    
         
            +
            INSTALL = /usr/bin/install -c
         
     | 
| 
      
 119 
     | 
    
         
            +
            INSTALL_PROG = $(INSTALL) -m 0755
         
     | 
| 
      
 120 
     | 
    
         
            +
            INSTALL_DATA = $(INSTALL) -m 644
         
     | 
| 
      
 121 
     | 
    
         
            +
            COPY = cp
         
     | 
| 
      
 122 
     | 
    
         
            +
            TOUCH = exit >
         
     | 
| 
      
 123 
     | 
    
         
            +
             
     | 
| 
      
 124 
     | 
    
         
            +
            #### End of system configuration section. ####
         
     | 
| 
      
 125 
     | 
    
         
            +
             
     | 
| 
      
 126 
     | 
    
         
            +
            preload = 
         
     | 
| 
      
 127 
     | 
    
         
            +
            libpath = . $(libdir) C:\clidriver\32-bit\clidriver/lib
         
     | 
| 
      
 128 
     | 
    
         
            +
            LIBPATH =  -L. -L$(libdir) -LC:\clidriver\32-bit\clidriver/lib '-Wl,-R$$ORIGIN/clidriver/lib' 
         
     | 
| 
      
 129 
     | 
    
         
            +
            DEFFILE = $(TARGET)-$(arch).def
         
     | 
| 
      
 130 
     | 
    
         
            +
             
     | 
| 
      
 131 
     | 
    
         
            +
            CLEANFILES = mkmf.log $(DEFFILE)
         
     | 
| 
      
 132 
     | 
    
         
            +
            DISTCLEANFILES = 
         
     | 
| 
      
 133 
     | 
    
         
            +
            DISTCLEANDIRS = 
         
     | 
| 
      
 134 
     | 
    
         
            +
             
     | 
| 
      
 135 
     | 
    
         
            +
            extout = 
         
     | 
| 
      
 136 
     | 
    
         
            +
            extout_prefix = 
         
     | 
| 
      
 137 
     | 
    
         
            +
            target_prefix = 
         
     | 
| 
      
 138 
     | 
    
         
            +
            LOCAL_LIBS = 
         
     | 
| 
      
 139 
     | 
    
         
            +
            LIBS = $(LIBRUBYARG_SHARED) -ldb2cli  -lshell32 -lws2_32 -liphlpapi -limagehlp -lshlwapi  
         
     | 
| 
      
 140 
     | 
    
         
            +
            ORIG_SRCS = ibm_db.c ruby_ibm_db_cli.c
         
     | 
| 
      
 141 
     | 
    
         
            +
            SRCS = $(ORIG_SRCS) 
         
     | 
| 
      
 142 
     | 
    
         
            +
            OBJS = ibm_db.o ruby_ibm_db_cli.o
         
     | 
| 
      
 143 
     | 
    
         
            +
            HDRS = $(srcdir)/ruby_ibm_db.h $(srcdir)/ruby_ibm_db_cli.h
         
     | 
| 
      
 144 
     | 
    
         
            +
            LOCAL_HDRS = 
         
     | 
| 
      
 145 
     | 
    
         
            +
            TARGET = ibm_db
         
     | 
| 
      
 146 
     | 
    
         
            +
            TARGET_NAME = ibm_db
         
     | 
| 
      
 147 
     | 
    
         
            +
            TARGET_ENTRY = Init_$(TARGET_NAME)
         
     | 
| 
      
 148 
     | 
    
         
            +
            DLLIB = $(TARGET).so
         
     | 
| 
      
 149 
     | 
    
         
            +
            EXTSTATIC = 
         
     | 
| 
      
 150 
     | 
    
         
            +
            STATIC_LIB = 
         
     | 
| 
      
 151 
     | 
    
         
            +
             
     | 
| 
      
 152 
     | 
    
         
            +
            TIMESTAMP_DIR = .
         
     | 
| 
      
 153 
     | 
    
         
            +
            BINDIR        = $(bindir)
         
     | 
| 
      
 154 
     | 
    
         
            +
            RUBYCOMMONDIR = $(sitedir)$(target_prefix)
         
     | 
| 
      
 155 
     | 
    
         
            +
            RUBYLIBDIR    = $(sitelibdir)$(target_prefix)
         
     | 
| 
      
 156 
     | 
    
         
            +
            RUBYARCHDIR   = $(sitearchdir)$(target_prefix)
         
     | 
| 
      
 157 
     | 
    
         
            +
            HDRDIR        = $(rubyhdrdir)/ruby$(target_prefix)
         
     | 
| 
      
 158 
     | 
    
         
            +
            ARCHHDRDIR    = $(rubyhdrdir)/$(arch)/ruby$(target_prefix)
         
     | 
| 
      
 159 
     | 
    
         
            +
            TARGET_SO_DIR =
         
     | 
| 
      
 160 
     | 
    
         
            +
            TARGET_SO     = $(TARGET_SO_DIR)$(DLLIB)
         
     | 
| 
      
 161 
     | 
    
         
            +
            CLEANLIBS     = $(TARGET_SO) 
         
     | 
| 
      
 162 
     | 
    
         
            +
            CLEANOBJS     = *.o  *.bak
         
     | 
| 
      
 163 
     | 
    
         
            +
             
     | 
| 
      
 164 
     | 
    
         
            +
            all:    $(DLLIB)
         
     | 
| 
      
 165 
     | 
    
         
            +
            static: $(STATIC_LIB)
         
     | 
| 
      
 166 
     | 
    
         
            +
            .PHONY: all install static install-so install-rb
         
     | 
| 
      
 167 
     | 
    
         
            +
            .PHONY: clean clean-so clean-static clean-rb
         
     | 
| 
      
 168 
     | 
    
         
            +
             
     | 
| 
      
 169 
     | 
    
         
            +
            clean-static::
         
     | 
| 
      
 170 
     | 
    
         
            +
            clean-rb-default::
         
     | 
| 
      
 171 
     | 
    
         
            +
            clean-rb::
         
     | 
| 
      
 172 
     | 
    
         
            +
            clean-so::
         
     | 
| 
      
 173 
     | 
    
         
            +
            clean: clean-so clean-static clean-rb-default clean-rb
         
     | 
| 
      
 174 
     | 
    
         
            +
            		-$(Q)$(RM) $(CLEANLIBS) $(CLEANOBJS) $(CLEANFILES) .*.time
         
     | 
| 
      
 175 
     | 
    
         
            +
             
     | 
| 
      
 176 
     | 
    
         
            +
            distclean-rb-default::
         
     | 
| 
      
 177 
     | 
    
         
            +
            distclean-rb::
         
     | 
| 
      
 178 
     | 
    
         
            +
            distclean-so::
         
     | 
| 
      
 179 
     | 
    
         
            +
            distclean-static::
         
     | 
| 
      
 180 
     | 
    
         
            +
            distclean: clean distclean-so distclean-static distclean-rb-default distclean-rb
         
     | 
| 
      
 181 
     | 
    
         
            +
            		-$(Q)$(RM) Makefile $(RUBY_EXTCONF_H) conftest.* mkmf.log
         
     | 
| 
      
 182 
     | 
    
         
            +
            		-$(Q)$(RM) core ruby$(EXEEXT) *~ $(DISTCLEANFILES)
         
     | 
| 
      
 183 
     | 
    
         
            +
            		-$(Q)$(RMDIRS) $(DISTCLEANDIRS) 2> /dev/null || true
         
     | 
| 
      
 184 
     | 
    
         
            +
             
     | 
| 
      
 185 
     | 
    
         
            +
            realclean: distclean
         
     | 
| 
      
 186 
     | 
    
         
            +
            install: install-so install-rb
         
     | 
| 
      
 187 
     | 
    
         
            +
             
     | 
| 
      
 188 
     | 
    
         
            +
            install-so: $(DLLIB) $(TIMESTAMP_DIR)/.sitearchdir.time
         
     | 
| 
      
 189 
     | 
    
         
            +
            	$(INSTALL_PROG) $(DLLIB) $(RUBYARCHDIR)
         
     | 
| 
      
 190 
     | 
    
         
            +
            clean-static::
         
     | 
| 
      
 191 
     | 
    
         
            +
            	-$(Q)$(RM) $(STATIC_LIB)
         
     | 
| 
      
 192 
     | 
    
         
            +
            install-rb: pre-install-rb do-install-rb install-rb-default
         
     | 
| 
      
 193 
     | 
    
         
            +
            install-rb-default: pre-install-rb-default do-install-rb-default
         
     | 
| 
      
 194 
     | 
    
         
            +
            pre-install-rb: Makefile
         
     | 
| 
      
 195 
     | 
    
         
            +
            pre-install-rb-default: Makefile
         
     | 
| 
      
 196 
     | 
    
         
            +
            do-install-rb:
         
     | 
| 
      
 197 
     | 
    
         
            +
            do-install-rb-default:
         
     | 
| 
      
 198 
     | 
    
         
            +
            pre-install-rb-default:
         
     | 
| 
      
 199 
     | 
    
         
            +
            	@$(NULLCMD)
         
     | 
| 
      
 200 
     | 
    
         
            +
            $(TIMESTAMP_DIR)/.sitearchdir.time:
         
     | 
| 
      
 201 
     | 
    
         
            +
            	$(Q) $(MAKEDIRS) $(@D) $(RUBYARCHDIR)
         
     | 
| 
      
 202 
     | 
    
         
            +
            	$(Q) $(TOUCH) $@
         
     | 
| 
      
 203 
     | 
    
         
            +
             
     | 
| 
      
 204 
     | 
    
         
            +
            site-install: site-install-so site-install-rb
         
     | 
| 
      
 205 
     | 
    
         
            +
            site-install-so: install-so
         
     | 
| 
      
 206 
     | 
    
         
            +
            site-install-rb: install-rb
         
     | 
| 
      
 207 
     | 
    
         
            +
             
     | 
| 
      
 208 
     | 
    
         
            +
            .SUFFIXES: .c .m .cc .mm .cxx .cpp .o .S
         
     | 
| 
      
 209 
     | 
    
         
            +
             
     | 
| 
      
 210 
     | 
    
         
            +
            .cc.o:
         
     | 
| 
      
 211 
     | 
    
         
            +
            	$(ECHO) compiling $(<)
         
     | 
| 
      
 212 
     | 
    
         
            +
            	$(Q) $(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(COUTFLAG)$@ -c $(CSRCFLAG)$<
         
     | 
| 
      
 213 
     | 
    
         
            +
             
     | 
| 
      
 214 
     | 
    
         
            +
            .cc.S:
         
     | 
| 
      
 215 
     | 
    
         
            +
            	$(ECHO) translating $(<)
         
     | 
| 
      
 216 
     | 
    
         
            +
            	$(Q) $(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(COUTFLAG)$@ -S $(CSRCFLAG)$<
         
     | 
| 
      
 217 
     | 
    
         
            +
             
     | 
| 
      
 218 
     | 
    
         
            +
            .mm.o:
         
     | 
| 
      
 219 
     | 
    
         
            +
            	$(ECHO) compiling $(<)
         
     | 
| 
      
 220 
     | 
    
         
            +
            	$(Q) $(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(COUTFLAG)$@ -c $(CSRCFLAG)$<
         
     | 
| 
      
 221 
     | 
    
         
            +
             
     | 
| 
      
 222 
     | 
    
         
            +
            .mm.S:
         
     | 
| 
      
 223 
     | 
    
         
            +
            	$(ECHO) translating $(<)
         
     | 
| 
      
 224 
     | 
    
         
            +
            	$(Q) $(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(COUTFLAG)$@ -S $(CSRCFLAG)$<
         
     | 
| 
      
 225 
     | 
    
         
            +
             
     | 
| 
      
 226 
     | 
    
         
            +
            .cxx.o:
         
     | 
| 
      
 227 
     | 
    
         
            +
            	$(ECHO) compiling $(<)
         
     | 
| 
      
 228 
     | 
    
         
            +
            	$(Q) $(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(COUTFLAG)$@ -c $(CSRCFLAG)$<
         
     | 
| 
      
 229 
     | 
    
         
            +
             
     | 
| 
      
 230 
     | 
    
         
            +
            .cxx.S:
         
     | 
| 
      
 231 
     | 
    
         
            +
            	$(ECHO) translating $(<)
         
     | 
| 
      
 232 
     | 
    
         
            +
            	$(Q) $(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(COUTFLAG)$@ -S $(CSRCFLAG)$<
         
     | 
| 
      
 233 
     | 
    
         
            +
             
     | 
| 
      
 234 
     | 
    
         
            +
            .cpp.o:
         
     | 
| 
      
 235 
     | 
    
         
            +
            	$(ECHO) compiling $(<)
         
     | 
| 
      
 236 
     | 
    
         
            +
            	$(Q) $(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(COUTFLAG)$@ -c $(CSRCFLAG)$<
         
     | 
| 
      
 237 
     | 
    
         
            +
             
     | 
| 
      
 238 
     | 
    
         
            +
            .cpp.S:
         
     | 
| 
      
 239 
     | 
    
         
            +
            	$(ECHO) translating $(<)
         
     | 
| 
      
 240 
     | 
    
         
            +
            	$(Q) $(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(COUTFLAG)$@ -S $(CSRCFLAG)$<
         
     | 
| 
      
 241 
     | 
    
         
            +
             
     | 
| 
      
 242 
     | 
    
         
            +
            .c.o:
         
     | 
| 
      
 243 
     | 
    
         
            +
            	$(ECHO) compiling $(<)
         
     | 
| 
      
 244 
     | 
    
         
            +
            	$(Q) $(CC) $(INCFLAGS) $(CPPFLAGS) $(CFLAGS) $(COUTFLAG)$@ -c $(CSRCFLAG)$<
         
     | 
| 
      
 245 
     | 
    
         
            +
             
     | 
| 
      
 246 
     | 
    
         
            +
            .c.S:
         
     | 
| 
      
 247 
     | 
    
         
            +
            	$(ECHO) translating $(<)
         
     | 
| 
      
 248 
     | 
    
         
            +
            	$(Q) $(CC) $(INCFLAGS) $(CPPFLAGS) $(CFLAGS) $(COUTFLAG)$@ -S $(CSRCFLAG)$<
         
     | 
| 
      
 249 
     | 
    
         
            +
             
     | 
| 
      
 250 
     | 
    
         
            +
            .m.o:
         
     | 
| 
      
 251 
     | 
    
         
            +
            	$(ECHO) compiling $(<)
         
     | 
| 
      
 252 
     | 
    
         
            +
            	$(Q) $(CC) $(INCFLAGS) $(CPPFLAGS) $(CFLAGS) $(COUTFLAG)$@ -c $(CSRCFLAG)$<
         
     | 
| 
      
 253 
     | 
    
         
            +
             
     | 
| 
      
 254 
     | 
    
         
            +
            .m.S:
         
     | 
| 
      
 255 
     | 
    
         
            +
            	$(ECHO) translating $(<)
         
     | 
| 
      
 256 
     | 
    
         
            +
            	$(Q) $(CC) $(INCFLAGS) $(CPPFLAGS) $(CFLAGS) $(COUTFLAG)$@ -S $(CSRCFLAG)$<
         
     | 
| 
      
 257 
     | 
    
         
            +
             
     | 
| 
      
 258 
     | 
    
         
            +
            $(TARGET_SO): $(DEFFILE) $(OBJS) Makefile
         
     | 
| 
      
 259 
     | 
    
         
            +
            	$(ECHO) linking shared-object $(DLLIB)
         
     | 
| 
      
 260 
     | 
    
         
            +
            	-$(Q)$(RM) $(@)
         
     | 
| 
      
 261 
     | 
    
         
            +
            	$(Q) $(LDSHARED) -o $@ $(OBJS) $(LIBPATH) $(DLDFLAGS) $(LOCAL_LIBS) $(LIBS)
         
     | 
| 
      
 262 
     | 
    
         
            +
             
     | 
| 
      
 263 
     | 
    
         
            +
             
     | 
| 
      
 264 
     | 
    
         
            +
             
     | 
| 
      
 265 
     | 
    
         
            +
            $(DEFFILE): 
         
     | 
| 
      
 266 
     | 
    
         
            +
            	$(ECHO) generating $(@)
         
     | 
| 
      
 267 
     | 
    
         
            +
            	$(Q) (echo EXPORTS && echo $(TARGET_ENTRY)) > $@
         
     | 
| 
      
 268 
     | 
    
         
            +
             
     | 
| 
      
 269 
     | 
    
         
            +
            $(OBJS): $(HDRS) $(ruby_headers)
         
     |