ibm_db 5.1.0 → 5.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 31e8f41e222f638241d0797fa0d898d0152372df6bf6479477299e3ef0f1accc
4
- data.tar.gz: d8711fcf90d18465ad55a76c8661bdcd17a683652f0b08389fdbfcd578099fae
3
+ metadata.gz: 3eda9f91aec7dfb2410de01be540997659945db4145c6d27c0a01f1a1e3d230e
4
+ data.tar.gz: ea250d4a4fa07dcfb7cd4c71d6f9c104ac8c280653207effa20d94621c7a973e
5
5
  SHA512:
6
- metadata.gz: bc300c1dace4fc524b5f6124dbe51d4000be3fb6a1556083dc3d5a5798ab62cfb058aa248db7f7b308bbcebc8705956c241bf606089f07e19f4b9b0f7dc00d71
7
- data.tar.gz: 9c0ea6ac28a2ad48902ad4e539c952d294f461fc6ee391ea8df27278d21dc8b6c54a960778eb57db08a8752992b78335c83fe772948b58242ceb430f75b962b0
6
+ metadata.gz: '09700c9331e029ac7bd8739a8954b123a5cc65fb5a0d1471fbff36d79233e2c8a56afda5616d35d8496426ef23bd236f6d36521eaefbbe1381647b94953c7f3e'
7
+ data.tar.gz: dbc615340a728bbeaa633629f6a0ca4dd898b429a2038a09136dbb2e58c7f38df01308c10036138525719ad4079b075cadc9504ff60e751f67051ce8c47f2778
data/ext/Makefile CHANGED
@@ -12,12 +12,12 @@ NULLCMD = :
12
12
  #### Start of system configuration section. ####
13
13
 
14
14
  srcdir = .
15
- topdir = /home/rakhil/ruby_exe/include/ruby-2.6.0
15
+ topdir = /home/rakhil/.rbenv/versions/3.0.0/include/ruby-3.0.0
16
16
  hdrdir = $(topdir)
17
- arch_hdrdir = /home/rakhil/ruby_exe/include/ruby-2.6.0/x86_64-linux
17
+ arch_hdrdir = /home/rakhil/.rbenv/versions/3.0.0/include/ruby-3.0.0/x86_64-linux
18
18
  PATH_SEPARATOR = :
19
19
  VPATH = $(srcdir):$(arch_hdrdir)/ruby:$(hdrdir)/ruby
20
- prefix = $(DESTDIR)/home/rakhil/ruby_exe
20
+ prefix = $(DESTDIR)/home/rakhil/.rbenv/versions/3.0.0
21
21
  rubysitearchprefix = $(rubylibprefix)/$(sitearch)
22
22
  rubyarchprefix = $(rubylibprefix)/$(arch)
23
23
  rubylibprefix = $(libdir)/$(RUBY_BASE_NAME)
@@ -67,9 +67,9 @@ archdir = $(rubyarchdir)
67
67
  CC_WRAPPER =
68
68
  CC = gcc
69
69
  CXX = g++
70
- LIBRUBY = $(LIBRUBY_A)
70
+ LIBRUBY = $(LIBRUBY_SO)
71
71
  LIBRUBY_A = lib$(RUBY_SO_NAME)-static.a
72
- LIBRUBYARG_SHARED = -Wl,-rpath,$(libdir) -L$(libdir)
72
+ LIBRUBYARG_SHARED = -Wl,-rpath,$(libdir) -L$(libdir) -l$(RUBY_SO_NAME)
73
73
  LIBRUBYARG_STATIC = -Wl,-rpath,$(libdir) -L$(libdir) -l$(RUBY_SO_NAME)-static $(MAINLIBS)
74
74
  empty =
75
75
  OUTFLAG = -o $(empty)
@@ -78,24 +78,24 @@ CSRCFLAG = $(empty)
78
78
 
79
79
  RUBY_EXTCONF_H = unicode_support_version.h
80
80
  cflags = $(optflags) $(debugflags) $(warnflags)
81
- cxxflags = $(optflags) $(debugflags) $(warnflags)
81
+ cxxflags =
82
82
  optflags = -O3
83
83
  debugflags = -ggdb3
84
- 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
+ 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
85
85
  cppflags =
86
86
  CCDLFLAGS = -fPIC
87
- CFLAGS = $(CCDLFLAGS) $(cflags) $(ARCH_FLAG)
87
+ CFLAGS = $(CCDLFLAGS) $(cflags) -fPIC $(ARCH_FLAG)
88
88
  INCFLAGS = -I. -I$(arch_hdrdir) -I$(hdrdir)/ruby/backward -I$(hdrdir) -I$(srcdir)
89
89
  DEFS =
90
- CPPFLAGS = -DRUBY_EXTCONF_H=\"$(RUBY_EXTCONF_H)\" -I/work/rakhil/ruby_5.1.0/ruby-ibmdb/IBM_DB_Adapter/ibm_db/ext/../lib/clidriver/include $(DEFS) $(cppflags)
91
- CXXFLAGS = $(CCDLFLAGS) $(cxxflags) $(ARCH_FLAG)
92
- ldflags = -L. -fstack-protector-strong -rdynamic -Wl,-export-dynamic
93
- dldflags = -Wl,--compress-debug-sections=zlib
90
+ CPPFLAGS = -DRUBY_EXTCONF_H=\"$(RUBY_EXTCONF_H)\" -I/work/rakhil/work_ruby/git_clone/5.2.0/ruby-ibmdb/IBM_DB_Adapter/ibm_db/ext/../lib/clidriver/include -I/home/rakhil/.rbenv/versions/3.0.0/include $(DEFS) $(cppflags)
91
+ CXXFLAGS = $(CCDLFLAGS) $(ARCH_FLAG)
92
+ ldflags = -L. -L/home/rakhil/.rbenv/versions/3.0.0/lib -fstack-protector-strong -rdynamic -Wl,-export-dynamic
93
+ dldflags = -L/home/rakhil/.rbenv/versions/3.0.0/lib -Wl,--compress-debug-sections=zlib
94
94
  ARCH_FLAG =
95
95
  DLDFLAGS = $(ldflags) $(dldflags) $(ARCH_FLAG)
96
96
  LDSHARED = $(CC) -shared
97
97
  LDSHAREDXX = $(CXX) -shared
98
- AR = ar
98
+ AR = gcc-ar
99
99
  EXEEXT =
100
100
 
101
101
  RUBY_INSTALL_NAME = $(RUBY_BASE_NAME)
@@ -107,7 +107,7 @@ RUBY_BASE_NAME = ruby
107
107
 
108
108
  arch = x86_64-linux
109
109
  sitearch = $(arch)
110
- ruby_version = 2.6.0
110
+ ruby_version = 3.0.0
111
111
  ruby = $(bindir)/$(RUBY_BASE_NAME)
112
112
  RUBY = $(ruby)
113
113
  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)
@@ -125,8 +125,8 @@ TOUCH = exit >
125
125
  #### End of system configuration section. ####
126
126
 
127
127
  preload =
128
- libpath = . $(libdir) /work/rakhil/ruby_5.1.0/ruby-ibmdb/IBM_DB_Adapter/ibm_db/ext/../lib/clidriver/lib
129
- LIBPATH = -L. -L$(libdir) -Wl,-rpath,$(libdir) -L/work/rakhil/ruby_5.1.0/ruby-ibmdb/IBM_DB_Adapter/ibm_db/ext/../lib/clidriver/lib -Wl,-rpath,/work/rakhil/ruby_5.1.0/ruby-ibmdb/IBM_DB_Adapter/ibm_db/ext/../lib/clidriver/lib '-Wl,-R$$ORIGIN/clidriver/lib'
128
+ libpath = . $(libdir) /work/rakhil/work_ruby/git_clone/5.2.0/ruby-ibmdb/IBM_DB_Adapter/ibm_db/ext/../lib/clidriver/lib
129
+ LIBPATH = -L. -L$(libdir) -Wl,-rpath,$(libdir) -L/work/rakhil/work_ruby/git_clone/5.2.0/ruby-ibmdb/IBM_DB_Adapter/ibm_db/ext/../lib/clidriver/lib -Wl,-rpath,/work/rakhil/work_ruby/git_clone/5.2.0/ruby-ibmdb/IBM_DB_Adapter/ibm_db/ext/../lib/clidriver/lib '-Wl,-R$$ORIGIN/clidriver/lib'
130
130
  DEFFILE =
131
131
 
132
132
  CLEANFILES = mkmf.log
@@ -137,11 +137,11 @@ extout =
137
137
  extout_prefix =
138
138
  target_prefix =
139
139
  LOCAL_LIBS =
140
- LIBS = -ldb2 -lm -lc
140
+ LIBS = $(LIBRUBYARG_SHARED) -ldb2 -lm -lc
141
141
  ORIG_SRCS = ibm_db.c ruby_ibm_db_cli.c
142
142
  SRCS = $(ORIG_SRCS)
143
143
  OBJS = ibm_db.o ruby_ibm_db_cli.o
144
- HDRS = $(srcdir)/unicode_support_version.h $(srcdir)/ruby_ibm_db.h $(srcdir)/gil_release_version.h $(srcdir)/ruby_ibm_db_cli.h
144
+ HDRS = $(srcdir)/gil_release_version.h $(srcdir)/ruby_ibm_db.h $(srcdir)/ruby_ibm_db_cli.h $(srcdir)/unicode_support_version.h
145
145
  LOCAL_HDRS =
146
146
  TARGET = ibm_db
147
147
  TARGET_NAME = ibm_db
data/ext/extconf.rb CHANGED
@@ -242,7 +242,7 @@ def crash(str)
242
242
  exit 1
243
243
  end
244
244
 
245
- if( RUBY_VERSION =~ /1.9/ || RUBY_VERSION =~ /2./)
245
+ if( RUBY_VERSION =~ /1.9/ || RUBY_VERSION =~ /2./ || RUBY_VERSION =~ /3./)
246
246
  create_header('gil_release_version.h')
247
247
  create_header('unicode_support_version.h')
248
248
  end
@@ -266,14 +266,14 @@ step 3: - Retry gem install
266
266
  EOL
267
267
  end
268
268
 
269
- if(RUBY_VERSION =~ /2./)
269
+ if(RUBY_VERSION =~ /2./ || RUBY_VERSION =~ /3./)
270
270
  require 'rbconfig'
271
271
  end
272
272
 
273
273
  alias :libpathflag0 :libpathflag
274
274
  def libpathflag(libpath)
275
275
  if(RUBY_PLATFORM =~ /darwin/i)
276
- if(RUBY_VERSION =~ /2./)
276
+ if(RUBY_VERSION =~ /2./ || RUBY_VERSION =~ /3./)
277
277
  libpathflag0 + case RbConfig::CONFIG["arch"]
278
278
  when /solaris2/
279
279
  libpath[0..-2].map {|path| " -R#{path}"}.join
@@ -293,7 +293,7 @@ def libpathflag(libpath)
293
293
  end
294
294
  end
295
295
  else
296
- if(RUBY_VERSION =~ /2./)
296
+ if(RUBY_VERSION =~ /2./ || RUBY_VERSION =~ /3./)
297
297
  ldflags = case RbConfig::CONFIG["arch"]
298
298
  when /solaris2/
299
299
  libpath[0..-2].map {|path| " -R#{path}"}.join
data/ext/ibm_db.o CHANGED
Binary file
data/ext/ibm_db.so CHANGED
Binary file
data/ext/mkmf.log CHANGED
@@ -14,19 +14,18 @@ unicode_support_version.h is:
14
14
 
15
15
  have_library: checking for SQLConnect() in -ldb2... -------------------- yes
16
16
 
17
- "gcc -o conftest -I/home/rakhil/ruby_exe/include/ruby-2.6.0/x86_64-linux -I/home/rakhil/ruby_exe/include/ruby-2.6.0/ruby/backward -I/home/rakhil/ruby_exe/include/ruby-2.6.0 -I. -I/work/rakhil/ruby_5.1.0/ruby-ibmdb/IBM_DB_Adapter/ibm_db/ext/../lib/clidriver/include -O3 -ggdb3 -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 conftest.c -L. -L/home/rakhil/ruby_exe/lib -Wl,-rpath,/home/rakhil/ruby_exe/lib -L/work/rakhil/ruby_5.1.0/ruby-ibmdb/IBM_DB_Adapter/ibm_db/ext/../lib/clidriver/lib -Wl,-rpath,/work/rakhil/ruby_5.1.0/ruby-ibmdb/IBM_DB_Adapter/ibm_db/ext/../lib/clidriver/lib -L. -fstack-protector-strong -rdynamic -Wl,-export-dynamic -Wl,-rpath,/home/rakhil/ruby_exe/lib -L/home/rakhil/ruby_exe/lib -lruby-static -lz -lpthread -lrt -lrt -ldl -lcrypt -lm -lm -lc"
18
- /home/rakhil/ruby_exe/lib/ruby/2.6.0/mkmf.rb:406: warning: Insecure world writable dir /work/rakhil in PATH, mode 040777
17
+ "gcc -o conftest -I/home/rakhil/.rbenv/versions/3.0.0/include/ruby-3.0.0/x86_64-linux -I/home/rakhil/.rbenv/versions/3.0.0/include/ruby-3.0.0/ruby/backward -I/home/rakhil/.rbenv/versions/3.0.0/include/ruby-3.0.0 -I. -I/work/rakhil/work_ruby/git_clone/5.2.0/ruby-ibmdb/IBM_DB_Adapter/ibm_db/ext/../lib/clidriver/include -I/home/rakhil/.rbenv/versions/3.0.0/include -O3 -ggdb3 -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 -fPIC conftest.c -L. -L/home/rakhil/.rbenv/versions/3.0.0/lib -Wl,-rpath,/home/rakhil/.rbenv/versions/3.0.0/lib -L/work/rakhil/work_ruby/git_clone/5.2.0/ruby-ibmdb/IBM_DB_Adapter/ibm_db/ext/../lib/clidriver/lib -Wl,-rpath,/work/rakhil/work_ruby/git_clone/5.2.0/ruby-ibmdb/IBM_DB_Adapter/ibm_db/ext/../lib/clidriver/lib -L. -L/home/rakhil/.rbenv/versions/3.0.0/lib -fstack-protector-strong -rdynamic -Wl,-export-dynamic -Wl,-rpath,/home/rakhil/.rbenv/versions/3.0.0/lib -L/home/rakhil/.rbenv/versions/3.0.0/lib -lruby -lm -lc"
19
18
  checked program was:
20
19
  /* begin */
21
20
  1: #include "ruby.h"
22
21
  2:
23
22
  3: int main(int argc, char **argv)
24
23
  4: {
25
- 5: return 0;
24
+ 5: return !!argv[argc];
26
25
  6: }
27
26
  /* end */
28
27
 
29
- "gcc -o conftest -I/home/rakhil/ruby_exe/include/ruby-2.6.0/x86_64-linux -I/home/rakhil/ruby_exe/include/ruby-2.6.0/ruby/backward -I/home/rakhil/ruby_exe/include/ruby-2.6.0 -I. -I/work/rakhil/ruby_5.1.0/ruby-ibmdb/IBM_DB_Adapter/ibm_db/ext/../lib/clidriver/include -O3 -ggdb3 -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 conftest.c -L. -L/home/rakhil/ruby_exe/lib -Wl,-rpath,/home/rakhil/ruby_exe/lib -L/work/rakhil/ruby_5.1.0/ruby-ibmdb/IBM_DB_Adapter/ibm_db/ext/../lib/clidriver/lib -Wl,-rpath,/work/rakhil/ruby_5.1.0/ruby-ibmdb/IBM_DB_Adapter/ibm_db/ext/../lib/clidriver/lib -L. -fstack-protector-strong -rdynamic -Wl,-export-dynamic -Wl,-rpath,/home/rakhil/ruby_exe/lib -L/home/rakhil/ruby_exe/lib -lruby-static -lz -lpthread -lrt -lrt -ldl -lcrypt -lm -ldb2 -lm -lc"
28
+ "gcc -o conftest -I/home/rakhil/.rbenv/versions/3.0.0/include/ruby-3.0.0/x86_64-linux -I/home/rakhil/.rbenv/versions/3.0.0/include/ruby-3.0.0/ruby/backward -I/home/rakhil/.rbenv/versions/3.0.0/include/ruby-3.0.0 -I. -I/work/rakhil/work_ruby/git_clone/5.2.0/ruby-ibmdb/IBM_DB_Adapter/ibm_db/ext/../lib/clidriver/include -I/home/rakhil/.rbenv/versions/3.0.0/include -O3 -ggdb3 -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 -fPIC conftest.c -L. -L/home/rakhil/.rbenv/versions/3.0.0/lib -Wl,-rpath,/home/rakhil/.rbenv/versions/3.0.0/lib -L/work/rakhil/work_ruby/git_clone/5.2.0/ruby-ibmdb/IBM_DB_Adapter/ibm_db/ext/../lib/clidriver/lib -Wl,-rpath,/work/rakhil/work_ruby/git_clone/5.2.0/ruby-ibmdb/IBM_DB_Adapter/ibm_db/ext/../lib/clidriver/lib -L. -L/home/rakhil/.rbenv/versions/3.0.0/lib -fstack-protector-strong -rdynamic -Wl,-export-dynamic -Wl,-rpath,/home/rakhil/.rbenv/versions/3.0.0/lib -L/home/rakhil/.rbenv/versions/3.0.0/lib -lruby -ldb2 -lm -lc"
30
29
  conftest.c: In function 't':
31
30
  conftest.c:14:57: error: 'SQLConnect' undeclared (first use in this function)
32
31
  int t(void) { void ((*volatile p)()); p = (void ((*)()))SQLConnect; return !p; }
@@ -50,12 +49,12 @@ checked program was:
50
49
  9: printf("%d", (*tp)());
51
50
  10: }
52
51
  11:
53
- 12: return 0;
52
+ 12: return !!argv[argc];
54
53
  13: }
55
54
  14: int t(void) { void ((*volatile p)()); p = (void ((*)()))SQLConnect; return !p; }
56
55
  /* end */
57
56
 
58
- "gcc -o conftest -I/home/rakhil/ruby_exe/include/ruby-2.6.0/x86_64-linux -I/home/rakhil/ruby_exe/include/ruby-2.6.0/ruby/backward -I/home/rakhil/ruby_exe/include/ruby-2.6.0 -I. -I/work/rakhil/ruby_5.1.0/ruby-ibmdb/IBM_DB_Adapter/ibm_db/ext/../lib/clidriver/include -O3 -ggdb3 -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 conftest.c -L. -L/home/rakhil/ruby_exe/lib -Wl,-rpath,/home/rakhil/ruby_exe/lib -L/work/rakhil/ruby_5.1.0/ruby-ibmdb/IBM_DB_Adapter/ibm_db/ext/../lib/clidriver/lib -Wl,-rpath,/work/rakhil/ruby_5.1.0/ruby-ibmdb/IBM_DB_Adapter/ibm_db/ext/../lib/clidriver/lib -L. -fstack-protector-strong -rdynamic -Wl,-export-dynamic -Wl,-rpath,/home/rakhil/ruby_exe/lib -L/home/rakhil/ruby_exe/lib -lruby-static -lz -lpthread -lrt -lrt -ldl -lcrypt -lm -ldb2 -lm -lc"
57
+ "gcc -o conftest -I/home/rakhil/.rbenv/versions/3.0.0/include/ruby-3.0.0/x86_64-linux -I/home/rakhil/.rbenv/versions/3.0.0/include/ruby-3.0.0/ruby/backward -I/home/rakhil/.rbenv/versions/3.0.0/include/ruby-3.0.0 -I. -I/work/rakhil/work_ruby/git_clone/5.2.0/ruby-ibmdb/IBM_DB_Adapter/ibm_db/ext/../lib/clidriver/include -I/home/rakhil/.rbenv/versions/3.0.0/include -O3 -ggdb3 -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 -fPIC conftest.c -L. -L/home/rakhil/.rbenv/versions/3.0.0/lib -Wl,-rpath,/home/rakhil/.rbenv/versions/3.0.0/lib -L/work/rakhil/work_ruby/git_clone/5.2.0/ruby-ibmdb/IBM_DB_Adapter/ibm_db/ext/../lib/clidriver/lib -Wl,-rpath,/work/rakhil/work_ruby/git_clone/5.2.0/ruby-ibmdb/IBM_DB_Adapter/ibm_db/ext/../lib/clidriver/lib -L. -L/home/rakhil/.rbenv/versions/3.0.0/lib -fstack-protector-strong -rdynamic -Wl,-export-dynamic -Wl,-rpath,/home/rakhil/.rbenv/versions/3.0.0/lib -L/home/rakhil/.rbenv/versions/3.0.0/lib -lruby -ldb2 -lm -lc"
59
58
  checked program was:
60
59
  /* begin */
61
60
  1: #include "ruby.h"
@@ -69,7 +68,7 @@ checked program was:
69
68
  9: printf("%d", (*tp)());
70
69
  10: }
71
70
  11:
72
- 12: return 0;
71
+ 12: return !!argv[argc];
73
72
  13: }
74
73
  14: extern void SQLConnect();
75
74
  15: int t(void) { SQLConnect(); return 0; }
@@ -79,7 +78,7 @@ checked program was:
79
78
 
80
79
  have_header: checking for gil_release_version.h... -------------------- yes
81
80
 
82
- "gcc -E -I/home/rakhil/ruby_exe/include/ruby-2.6.0/x86_64-linux -I/home/rakhil/ruby_exe/include/ruby-2.6.0/ruby/backward -I/home/rakhil/ruby_exe/include/ruby-2.6.0 -I. -I/work/rakhil/ruby_5.1.0/ruby-ibmdb/IBM_DB_Adapter/ibm_db/ext/../lib/clidriver/include -O3 -ggdb3 -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 conftest.c -o conftest.i"
81
+ "gcc -E -I/home/rakhil/.rbenv/versions/3.0.0/include/ruby-3.0.0/x86_64-linux -I/home/rakhil/.rbenv/versions/3.0.0/include/ruby-3.0.0/ruby/backward -I/home/rakhil/.rbenv/versions/3.0.0/include/ruby-3.0.0 -I. -I/work/rakhil/work_ruby/git_clone/5.2.0/ruby-ibmdb/IBM_DB_Adapter/ibm_db/ext/../lib/clidriver/include -I/home/rakhil/.rbenv/versions/3.0.0/include -O3 -ggdb3 -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 -fPIC conftest.c -o conftest.i"
83
82
  checked program was:
84
83
  /* begin */
85
84
  1: #include "ruby.h"
@@ -91,7 +90,7 @@ checked program was:
91
90
 
92
91
  have_header: checking for unicode_support_version.h... -------------------- yes
93
92
 
94
- "gcc -E -I/home/rakhil/ruby_exe/include/ruby-2.6.0/x86_64-linux -I/home/rakhil/ruby_exe/include/ruby-2.6.0/ruby/backward -I/home/rakhil/ruby_exe/include/ruby-2.6.0 -I. -I/work/rakhil/ruby_5.1.0/ruby-ibmdb/IBM_DB_Adapter/ibm_db/ext/../lib/clidriver/include -O3 -ggdb3 -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 conftest.c -o conftest.i"
93
+ "gcc -E -I/home/rakhil/.rbenv/versions/3.0.0/include/ruby-3.0.0/x86_64-linux -I/home/rakhil/.rbenv/versions/3.0.0/include/ruby-3.0.0/ruby/backward -I/home/rakhil/.rbenv/versions/3.0.0/include/ruby-3.0.0 -I. -I/work/rakhil/work_ruby/git_clone/5.2.0/ruby-ibmdb/IBM_DB_Adapter/ibm_db/ext/../lib/clidriver/include -I/home/rakhil/.rbenv/versions/3.0.0/include -O3 -ggdb3 -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 -fPIC conftest.c -o conftest.i"
95
94
  checked program was:
96
95
  /* begin */
97
96
  1: #include "ruby.h"
Binary file
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ibm_db
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.1.0
4
+ version: 5.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - IBM
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-10-20 00:00:00.000000000 Z
11
+ date: 2021-04-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord
@@ -17,6 +17,9 @@ dependencies:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
19
  version: 5.0.7
20
+ - - "<="
21
+ - !ruby/object:Gem::Version
22
+ version: 6.0.3
20
23
  type: :runtime
21
24
  prerelease: false
22
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -24,6 +27,9 @@ dependencies:
24
27
  - - ">="
25
28
  - !ruby/object:Gem::Version
26
29
  version: 5.0.7
30
+ - - "<="
31
+ - !ruby/object:Gem::Version
32
+ version: 6.0.3
27
33
  description:
28
34
  email: opendev@us.ibm.com
29
35
  executables: []
@@ -646,7 +652,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
646
652
  version: '0'
647
653
  requirements:
648
654
  - ActiveRecord, at least 5.0.7
649
- rubygems_version: 3.0.3
655
+ rubygems_version: 3.2.3
650
656
  signing_key:
651
657
  specification_version: 4
652
658
  summary: 'Rails Driver and Adapter for IBM Data Servers: {DB2 on Linux/Unix/Windows,