ibm_db 5.4.1 → 5.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGES +3 -0
- data/README +3 -2
- data/ext/Makefile +14 -12
- data/ext/ibm_db.c +1 -2
- data/ext/ibm_db.o +0 -0
- data/ext/ibm_db.so +0 -0
- data/ext/mkmf.log +5 -5
- data/ext/ruby_ibm_db_cli.o +0 -0
- data/lib/active_record/connection_adapters/ibm_db_adapter.rb +2346 -1841
- data/test/config.yml +68 -12
- metadata +36 -11
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 22e9524281f23d15377bc5a832dd94e3abf74d8f31981f3c97c3bf07458d767e
|
4
|
+
data.tar.gz: dbc18f1c36b164257fc76d269a9ceb38a738ad88ca93d2f1a5a5e4497c60d01e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 70effb43a51e184c178ba285fa2537b6520cb3e519fdbd493b7bce3a29ab38d5bf1efeff49ff562a0e3b0aa63bed1e6a779f6d5f91750768454f1eda525cd11a
|
7
|
+
data.tar.gz: fb9bbf4b3ee750488fa9a046630485cc86cdb59ef73ee28ba3b0b77e787bf4acab7c0a92c66fd2eff360f58d35c916d82b1efe802c4d3cb56ce2cb4a52fc56c4
|
data/CHANGES
CHANGED
@@ -1,5 +1,8 @@
|
|
1
1
|
Change Log
|
2
2
|
==============
|
3
|
+
2023/10/11 (IBM_DB adapter 5.4.2, driver 3.1.0)
|
4
|
+
- config.yml to have Environment variables to specify credentials.
|
5
|
+
|
3
6
|
2023/03/29 (IBM_DB adapter 5.4.1, driver 3.1.0)
|
4
7
|
- Download clidriver issue fixed and replaced http links with https.
|
5
8
|
|
data/README
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
=====================================================================
|
2
|
-
README for the IBM_DB Adapter >= 5.
|
3
|
-
For ActiveRecord Version >=
|
2
|
+
README for the IBM_DB Adapter >= 5.5.0 and Driver >= 3.1.0
|
3
|
+
For ActiveRecord Version >= 7.1.x (and Rails >= 7.1.x)
|
4
4
|
=====================================================================
|
5
5
|
|
6
6
|
Supported Operating Systems
|
@@ -133,6 +133,7 @@ Testing the IBM_DB Adapter
|
|
133
133
|
2) Edit the Rakefile to include ibm_db in list of adapters
|
134
134
|
%w( mysql mysql2 postgresql sqlite3 sqlite3_mem firebird db2 oracle sybase openbase ibm_db frontbase jdbcmysql jdbcpostgresql jdbcsqlite3 jdbcderby jdbch2 jdbchsqldb )
|
135
135
|
3) Configure the connection information in test/config.yml for ibm_db
|
136
|
+
Set Environment Variables DB2_USER1, DB2_PASSWD1, DB2_DATABASE1, DB2_HOST1, DB2_PORT1 etc... accordingly.
|
136
137
|
4) run the test suite - rake test_ibm_db
|
137
138
|
|
138
139
|
Running IBM_DB driver test suite
|
data/ext/Makefile
CHANGED
@@ -13,12 +13,12 @@ NULLCMD = :
|
|
13
13
|
#### Start of system configuration section. ####
|
14
14
|
|
15
15
|
srcdir = .
|
16
|
-
topdir = /home/pnarayanappa/
|
16
|
+
topdir = /home/pnarayanappa/ROR32/ruby_exe/include/ruby-3.2.0
|
17
17
|
hdrdir = $(topdir)
|
18
|
-
arch_hdrdir = /home/pnarayanappa/
|
18
|
+
arch_hdrdir = /home/pnarayanappa/ROR32/ruby_exe/include/ruby-3.2.0/x86_64-linux
|
19
19
|
PATH_SEPARATOR = :
|
20
20
|
VPATH = $(srcdir):$(arch_hdrdir)/ruby:$(hdrdir)/ruby
|
21
|
-
prefix = $(DESTDIR)/home/pnarayanappa/
|
21
|
+
prefix = $(DESTDIR)/home/pnarayanappa/ROR32/ruby_exe
|
22
22
|
rubysitearchprefix = $(rubylibprefix)/$(sitearch)
|
23
23
|
rubyarchprefix = $(rubylibprefix)/$(arch)
|
24
24
|
rubylibprefix = $(libdir)/$(RUBY_BASE_NAME)
|
@@ -82,13 +82,13 @@ cflags = $(optflags) $(debugflags) $(warnflags)
|
|
82
82
|
cxxflags =
|
83
83
|
optflags = -O3 -fno-fast-math
|
84
84
|
debugflags = -ggdb3
|
85
|
-
warnflags = -Wall -Wextra -Wdeprecated-declarations -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wmisleading-indentation -Wpointer-arith -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 -Wundef
|
85
|
+
warnflags = -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wmisleading-indentation -Wpointer-arith -Wwrite-strings -Wold-style-definition -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 -Wundef
|
86
86
|
cppflags =
|
87
87
|
CCDLFLAGS = -fPIC
|
88
88
|
CFLAGS = $(CCDLFLAGS) $(cflags) $(ARCH_FLAG)
|
89
89
|
INCFLAGS = -I. -I$(arch_hdrdir) -I$(hdrdir)/ruby/backward -I$(hdrdir) -I$(srcdir)
|
90
90
|
DEFS =
|
91
|
-
CPPFLAGS = -DRUBY_EXTCONF_H=\"$(RUBY_EXTCONF_H)\" -I/home/pnarayanappa/
|
91
|
+
CPPFLAGS = -DRUBY_EXTCONF_H=\"$(RUBY_EXTCONF_H)\" -I/home/pnarayanappa/ROR32/ruby-ibmdb/IBM_DB_Adapter/ibm_db/ext/../lib/clidriver/include $(DEFS) $(cppflags)
|
92
92
|
CXXFLAGS = $(CCDLFLAGS) $(ARCH_FLAG)
|
93
93
|
ldflags = -L. -fstack-protector-strong -rdynamic -Wl,-export-dynamic
|
94
94
|
dldflags = -Wl,--compress-debug-sections=zlib
|
@@ -108,9 +108,10 @@ RUBY_BASE_NAME = ruby
|
|
108
108
|
|
109
109
|
arch = x86_64-linux
|
110
110
|
sitearch = $(arch)
|
111
|
-
ruby_version = 3.
|
111
|
+
ruby_version = 3.2.0
|
112
112
|
ruby = $(bindir)/$(RUBY_BASE_NAME)
|
113
113
|
RUBY = $(ruby)
|
114
|
+
BUILTRUBY = $(bindir)/$(RUBY_BASE_NAME)
|
114
115
|
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)
|
115
116
|
|
116
117
|
RM = rm -f
|
@@ -126,8 +127,8 @@ TOUCH = exit >
|
|
126
127
|
#### End of system configuration section. ####
|
127
128
|
|
128
129
|
preload =
|
129
|
-
libpath = . $(libdir) /home/pnarayanappa/
|
130
|
-
LIBPATH = -L. -L$(libdir) -Wl,-rpath,$(libdir) -L/home/pnarayanappa/
|
130
|
+
libpath = . $(libdir) /home/pnarayanappa/ROR32/ruby-ibmdb/IBM_DB_Adapter/ibm_db/ext/../lib/clidriver/lib
|
131
|
+
LIBPATH = -L. -L$(libdir) -Wl,-rpath,$(libdir) -L/home/pnarayanappa/ROR32/ruby-ibmdb/IBM_DB_Adapter/ibm_db/ext/../lib/clidriver/lib -Wl,-rpath,/home/pnarayanappa/ROR32/ruby-ibmdb/IBM_DB_Adapter/ibm_db/ext/../lib/clidriver/lib '-Wl,-R$$ORIGIN/clidriver/lib'
|
131
132
|
DEFFILE =
|
132
133
|
|
133
134
|
CLEANFILES = mkmf.log
|
@@ -138,7 +139,7 @@ extout =
|
|
138
139
|
extout_prefix =
|
139
140
|
target_prefix =
|
140
141
|
LOCAL_LIBS =
|
141
|
-
LIBS = -ldb2 -lm -lc
|
142
|
+
LIBS = -ldb2 -lm -lpthread -lc
|
142
143
|
ORIG_SRCS = ibm_db.c ruby_ibm_db_cli.c
|
143
144
|
SRCS = $(ORIG_SRCS)
|
144
145
|
OBJS = ibm_db.o ruby_ibm_db_cli.o
|
@@ -161,7 +162,8 @@ ARCHHDRDIR = $(sitearchhdrdir)$(target_prefix)
|
|
161
162
|
TARGET_SO_DIR =
|
162
163
|
TARGET_SO = $(TARGET_SO_DIR)$(DLLIB)
|
163
164
|
CLEANLIBS = $(TARGET_SO) false
|
164
|
-
CLEANOBJS = *.
|
165
|
+
CLEANOBJS = $(OBJS) *.bak
|
166
|
+
TARGET_SO_DIR_TIMESTAMP = $(TIMESTAMP_DIR)/.sitearchdir.time
|
165
167
|
|
166
168
|
all: $(DLLIB)
|
167
169
|
static: $(STATIC_LIB)
|
@@ -187,7 +189,7 @@ distclean: clean distclean-so distclean-static distclean-rb-default distclean-rb
|
|
187
189
|
realclean: distclean
|
188
190
|
install: install-so install-rb
|
189
191
|
|
190
|
-
install-so: $(DLLIB) $(
|
192
|
+
install-so: $(DLLIB) $(TARGET_SO_DIR_TIMESTAMP)
|
191
193
|
$(INSTALL_PROG) $(DLLIB) $(RUBYARCHDIR)
|
192
194
|
clean-static::
|
193
195
|
-$(Q)$(RM) $(STATIC_LIB)
|
@@ -199,7 +201,7 @@ do-install-rb:
|
|
199
201
|
do-install-rb-default:
|
200
202
|
pre-install-rb-default:
|
201
203
|
@$(NULLCMD)
|
202
|
-
$(
|
204
|
+
$(TARGET_SO_DIR_TIMESTAMP):
|
203
205
|
$(Q) $(MAKEDIRS) $(@D) $(RUBYARCHDIR)
|
204
206
|
$(Q) $(TOUCH) $@
|
205
207
|
|
data/ext/ibm_db.c
CHANGED
@@ -686,8 +686,7 @@ static void _ruby_ibm_db_mark_stmt_struct(stmt_handle *handle)
|
|
686
686
|
static inline
|
687
687
|
VALUE ibm_Ruby_Thread_Call(rb_blocking_function_t *func, void *data1, rb_unblock_function_t *ubf, void *data2)
|
688
688
|
{
|
689
|
-
|
690
|
-
return (VALUE)rb_thread_call_without_gvl(f, data1, ubf, data2);
|
689
|
+
return func(data1);
|
691
690
|
}
|
692
691
|
|
693
692
|
|
data/ext/ibm_db.o
CHANGED
Binary file
|
data/ext/ibm_db.so
CHANGED
Binary file
|
data/ext/mkmf.log
CHANGED
@@ -14,7 +14,7 @@ unicode_support_version.h is:
|
|
14
14
|
|
15
15
|
have_library: checking for SQLConnect() in -ldb2... -------------------- yes
|
16
16
|
|
17
|
-
LD_LIBRARY_PATH=.:/home/pnarayanappa/
|
17
|
+
LD_LIBRARY_PATH=.:/home/pnarayanappa/ROR32/ruby_exe/lib:/home/pnarayanappa/ROR30/openssl/lib:/jre/lib:/jre/bin:/lib:/home/pnarayanappa/nodework/clidriver/lib "gcc -o conftest -I/home/pnarayanappa/ROR32/ruby_exe/include/ruby-3.2.0/x86_64-linux -I/home/pnarayanappa/ROR32/ruby_exe/include/ruby-3.2.0/ruby/backward -I/home/pnarayanappa/ROR32/ruby_exe/include/ruby-3.2.0 -I. -I/home/pnarayanappa/ROR32/ruby-ibmdb/IBM_DB_Adapter/ibm_db/ext/../lib/clidriver/include -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wmisleading-indentation -Wpointer-arith -Wwrite-strings -Wold-style-definition -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 -Wundef conftest.c -L. -L/home/pnarayanappa/ROR32/ruby_exe/lib -Wl,-rpath,/home/pnarayanappa/ROR32/ruby_exe/lib -L/home/pnarayanappa/ROR32/ruby-ibmdb/IBM_DB_Adapter/ibm_db/ext/../lib/clidriver/lib -Wl,-rpath,/home/pnarayanappa/ROR32/ruby-ibmdb/IBM_DB_Adapter/ibm_db/ext/../lib/clidriver/lib -L. -fstack-protector-strong -rdynamic -Wl,-export-dynamic -Wl,-rpath,/home/pnarayanappa/ROR32/ruby_exe/lib -L/home/pnarayanappa/ROR32/ruby_exe/lib -lruby-static -lz -lrt -lrt -ldl -lcrypt -lm -lpthread -lm -lpthread -lc"
|
18
18
|
checked program was:
|
19
19
|
/* begin */
|
20
20
|
1: #include "ruby.h"
|
@@ -25,7 +25,7 @@ checked program was:
|
|
25
25
|
6: }
|
26
26
|
/* end */
|
27
27
|
|
28
|
-
LD_LIBRARY_PATH=.:/home/pnarayanappa/
|
28
|
+
LD_LIBRARY_PATH=.:/home/pnarayanappa/ROR32/ruby_exe/lib:/home/pnarayanappa/ROR30/openssl/lib:/jre/lib:/jre/bin:/lib:/home/pnarayanappa/nodework/clidriver/lib "gcc -o conftest -I/home/pnarayanappa/ROR32/ruby_exe/include/ruby-3.2.0/x86_64-linux -I/home/pnarayanappa/ROR32/ruby_exe/include/ruby-3.2.0/ruby/backward -I/home/pnarayanappa/ROR32/ruby_exe/include/ruby-3.2.0 -I. -I/home/pnarayanappa/ROR32/ruby-ibmdb/IBM_DB_Adapter/ibm_db/ext/../lib/clidriver/include -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wmisleading-indentation -Wpointer-arith -Wwrite-strings -Wold-style-definition -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 -Wundef conftest.c -L. -L/home/pnarayanappa/ROR32/ruby_exe/lib -Wl,-rpath,/home/pnarayanappa/ROR32/ruby_exe/lib -L/home/pnarayanappa/ROR32/ruby-ibmdb/IBM_DB_Adapter/ibm_db/ext/../lib/clidriver/lib -Wl,-rpath,/home/pnarayanappa/ROR32/ruby-ibmdb/IBM_DB_Adapter/ibm_db/ext/../lib/clidriver/lib -L. -fstack-protector-strong -rdynamic -Wl,-export-dynamic -Wl,-rpath,/home/pnarayanappa/ROR32/ruby_exe/lib -L/home/pnarayanappa/ROR32/ruby_exe/lib -lruby-static -lz -lrt -lrt -ldl -lcrypt -lm -lpthread -ldb2 -lm -lpthread -lc"
|
29
29
|
conftest.c: In function ‘t’:
|
30
30
|
conftest.c:14:57: error: ‘SQLConnect’ undeclared (first use in this function)
|
31
31
|
int t(void) { void ((*volatile p)()); p = (void ((*)()))SQLConnect; return !p; }
|
@@ -54,7 +54,7 @@ checked program was:
|
|
54
54
|
14: int t(void) { void ((*volatile p)()); p = (void ((*)()))SQLConnect; return !p; }
|
55
55
|
/* end */
|
56
56
|
|
57
|
-
LD_LIBRARY_PATH=.:/home/pnarayanappa/
|
57
|
+
LD_LIBRARY_PATH=.:/home/pnarayanappa/ROR32/ruby_exe/lib:/home/pnarayanappa/ROR30/openssl/lib:/jre/lib:/jre/bin:/lib:/home/pnarayanappa/nodework/clidriver/lib "gcc -o conftest -I/home/pnarayanappa/ROR32/ruby_exe/include/ruby-3.2.0/x86_64-linux -I/home/pnarayanappa/ROR32/ruby_exe/include/ruby-3.2.0/ruby/backward -I/home/pnarayanappa/ROR32/ruby_exe/include/ruby-3.2.0 -I. -I/home/pnarayanappa/ROR32/ruby-ibmdb/IBM_DB_Adapter/ibm_db/ext/../lib/clidriver/include -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wmisleading-indentation -Wpointer-arith -Wwrite-strings -Wold-style-definition -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 -Wundef conftest.c -L. -L/home/pnarayanappa/ROR32/ruby_exe/lib -Wl,-rpath,/home/pnarayanappa/ROR32/ruby_exe/lib -L/home/pnarayanappa/ROR32/ruby-ibmdb/IBM_DB_Adapter/ibm_db/ext/../lib/clidriver/lib -Wl,-rpath,/home/pnarayanappa/ROR32/ruby-ibmdb/IBM_DB_Adapter/ibm_db/ext/../lib/clidriver/lib -L. -fstack-protector-strong -rdynamic -Wl,-export-dynamic -Wl,-rpath,/home/pnarayanappa/ROR32/ruby_exe/lib -L/home/pnarayanappa/ROR32/ruby_exe/lib -lruby-static -lz -lrt -lrt -ldl -lcrypt -lm -lpthread -ldb2 -lm -lpthread -lc"
|
58
58
|
checked program was:
|
59
59
|
/* begin */
|
60
60
|
1: #include "ruby.h"
|
@@ -78,7 +78,7 @@ checked program was:
|
|
78
78
|
|
79
79
|
have_header: checking for gil_release_version.h... -------------------- yes
|
80
80
|
|
81
|
-
LD_LIBRARY_PATH=.:/home/pnarayanappa/
|
81
|
+
LD_LIBRARY_PATH=.:/home/pnarayanappa/ROR32/ruby_exe/lib:/home/pnarayanappa/ROR30/openssl/lib:/jre/lib:/jre/bin:/lib:/home/pnarayanappa/nodework/clidriver/lib "gcc -I/home/pnarayanappa/ROR32/ruby_exe/include/ruby-3.2.0/x86_64-linux -I/home/pnarayanappa/ROR32/ruby_exe/include/ruby-3.2.0/ruby/backward -I/home/pnarayanappa/ROR32/ruby_exe/include/ruby-3.2.0 -I. -I/home/pnarayanappa/ROR32/ruby-ibmdb/IBM_DB_Adapter/ibm_db/ext/../lib/clidriver/include -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wmisleading-indentation -Wpointer-arith -Wwrite-strings -Wold-style-definition -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 -Wundef -c conftest.c"
|
82
82
|
checked program was:
|
83
83
|
/* begin */
|
84
84
|
1: #include "ruby.h"
|
@@ -90,7 +90,7 @@ checked program was:
|
|
90
90
|
|
91
91
|
have_header: checking for unicode_support_version.h... -------------------- yes
|
92
92
|
|
93
|
-
LD_LIBRARY_PATH=.:/home/pnarayanappa/
|
93
|
+
LD_LIBRARY_PATH=.:/home/pnarayanappa/ROR32/ruby_exe/lib:/home/pnarayanappa/ROR30/openssl/lib:/jre/lib:/jre/bin:/lib:/home/pnarayanappa/nodework/clidriver/lib "gcc -I/home/pnarayanappa/ROR32/ruby_exe/include/ruby-3.2.0/x86_64-linux -I/home/pnarayanappa/ROR32/ruby_exe/include/ruby-3.2.0/ruby/backward -I/home/pnarayanappa/ROR32/ruby_exe/include/ruby-3.2.0 -I. -I/home/pnarayanappa/ROR32/ruby-ibmdb/IBM_DB_Adapter/ibm_db/ext/../lib/clidriver/include -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wmisleading-indentation -Wpointer-arith -Wwrite-strings -Wold-style-definition -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 -Wundef -c conftest.c"
|
94
94
|
checked program was:
|
95
95
|
/* begin */
|
96
96
|
1: #include "ruby.h"
|
data/ext/ruby_ibm_db_cli.o
CHANGED
Binary file
|