1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* ext/openssl/ossl_asn1.h: global symbols should be declared

as external.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4683 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
gotoyuzo 2003-10-04 18:45:53 +00:00
parent 993783d84a
commit d0dd2997f3
2 changed files with 24 additions and 18 deletions

View file

@ -1,3 +1,8 @@
Sun Oct 5 03:40:22 2003 GOTOU Yuuzou <gotoyuzo@notwork.org>
* ext/openssl/ossl_asn1.h: global symbols should be declared
as external.
Sun Oct 5 03:03:20 2003 akira yamada <akira@ruby-lang.org> Sun Oct 5 03:03:20 2003 akira yamada <akira@ruby-lang.org>
* test/ruby/test_exception.rb (test_else): added. * test/ruby/test_exception.rb (test_else): added.
@ -16,6 +21,7 @@ Sun Oct 5 02:12:00 2003 Masatoshi SEKI <m_seki@mva.biglobe.ne.jp>
* lib/drb/drb.rb: exit from a thread using 'break'. * lib/drb/drb.rb: exit from a thread using 'break'.
>>>>>>> 1.2257
Sat Oct 4 21:49:14 2003 WATANABE Hirofumi <eban@ruby-lang.org> Sat Oct 4 21:49:14 2003 WATANABE Hirofumi <eban@ruby-lang.org>
* gc.c (Init_stack): the type of space is changed to unsigned int * gc.c (Init_stack): the type of space is changed to unsigned int

View file

@ -26,26 +26,26 @@ ASN1_INTEGER *num_to_asn1integer(VALUE, ASN1_INTEGER *);
/* /*
* ASN1 module * ASN1 module
*/ */
VALUE mASN1; extern VALUE mASN1;
VALUE eASN1Error; extern VALUE eASN1Error;
VALUE cASN1Data; extern VALUE cASN1Data;
VALUE cASN1Primitive; extern VALUE cASN1Primitive;
VALUE cASN1Constructive; extern VALUE cASN1Constructive;
VALUE cASN1Boolean; /* BOOLEAN */ extern VALUE cASN1Boolean; /* BOOLEAN */
VALUE cASN1Integer, cASN1Enumerated; /* INTEGER */ extern VALUE cASN1Integer, cASN1Enumerated; /* INTEGER */
VALUE cASN1BitString; /* BIT STRING */ extern VALUE cASN1BitString; /* BIT STRING */
VALUE cASN1OctetString, cASN1UTF8String; /* STRINGs */ extern VALUE cASN1OctetString, cASN1UTF8String; /* STRINGs */
VALUE cASN1NumericString, cASN1PrintableString; extern VALUE cASN1NumericString, cASN1PrintableString;
VALUE cASN1T61String, cASN1VideotexString; extern VALUE cASN1T61String, cASN1VideotexString;
VALUE cASN1IA5String, cASN1GraphicString; extern VALUE cASN1IA5String, cASN1GraphicString;
VALUE cASN1ISO64String, cASN1GeneralString; extern VALUE cASN1ISO64String, cASN1GeneralString;
VALUE cASN1UniversalString, cASN1BMPString; extern VALUE cASN1UniversalString, cASN1BMPString;
VALUE cASN1Null; /* NULL */ extern VALUE cASN1Null; /* NULL */
VALUE cASN1ObjectId; /* OBJECT IDENTIFIER */ extern VALUE cASN1ObjectId; /* OBJECT IDENTIFIER */
VALUE cASN1UTCTime, cASN1GeneralizedTime; /* TIME */ extern VALUE cASN1UTCTime, cASN1GeneralizedTime; /* TIME */
VALUE cASN1Sequence, cASN1Set; /* CONSTRUCTIVE */ extern VALUE cASN1Sequence, cASN1Set; /* CONSTRUCTIVE */
ASN1_TYPE *ossl_asn1_get_asn1type(VALUE); ASN1_TYPE *ossl_asn1_get_asn1type(VALUE);