File tree Expand file tree Collapse file tree 4 files changed +2
-24
lines changed Expand file tree Collapse file tree 4 files changed +2
-24
lines changed Original file line number Diff line number Diff line change 7
7
uses : ruby/actions/.github/workflows/ruby_versions.yml@master
8
8
with :
9
9
engine : cruby-truffleruby
10
- min_version : 2.6
10
+ min_version : 2.7
11
11
test :
12
12
needs : ruby-versions
13
13
name : >-
Original file line number Diff line number Diff line change @@ -369,22 +369,6 @@ ossl_get_errors(VALUE _)
369
369
*/
370
370
VALUE dOSSL ;
371
371
372
- #if !defined(HAVE_VA_ARGS_MACRO )
373
- void
374
- ossl_debug (const char * fmt , ...)
375
- {
376
- va_list args ;
377
-
378
- if (dOSSL == Qtrue ) {
379
- fprintf (stderr , "OSSL_DEBUG: " );
380
- va_start (args , fmt );
381
- vfprintf (stderr , fmt , args );
382
- va_end (args );
383
- fprintf (stderr , " [CONTEXT N/A]\n" );
384
- }
385
- }
386
- #endif
387
-
388
372
/*
389
373
* call-seq:
390
374
* OpenSSL.debug -> true | false
Original file line number Diff line number Diff line change @@ -157,7 +157,6 @@ VALUE ossl_to_der_if_possible(VALUE);
157
157
*/
158
158
extern VALUE dOSSL ;
159
159
160
- #if defined(HAVE_VA_ARGS_MACRO )
161
160
#define OSSL_Debug (...) do { \
162
161
if (dOSSL == Qtrue) { \
163
162
fprintf(stderr, "OSSL_DEBUG: "); \
@@ -166,11 +165,6 @@ extern VALUE dOSSL;
166
165
} \
167
166
} while (0)
168
167
169
- #else
170
- void ossl_debug (const char * , ...);
171
- #define OSSL_Debug ossl_debug
172
- #endif
173
-
174
168
/*
175
169
* Include all parts
176
170
*/
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ Gem::Specification.new do |spec|
21
21
spec . extra_rdoc_files = Dir [ "*.md" ]
22
22
spec . rdoc_options = [ "--main" , "README.md" ]
23
23
24
- spec . required_ruby_version = ">= 2.6 .0"
24
+ spec . required_ruby_version = ">= 2.7 .0"
25
25
26
26
spec . metadata [ "msys2_mingw_dependencies" ] = "openssl"
27
27
end
You can’t perform that action at this time.
0 commit comments