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

* ext/strscan/depend: depends on re.h and regex.h.

* ext/strscan/strscan.c: no version check needed.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5905 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2004-03-06 05:27:37 +00:00
parent 11229973f4
commit 50c4555072
3 changed files with 9 additions and 8 deletions

View file

@ -1,3 +1,9 @@
Sat Mar 6 14:27:32 2004 Nobuyoshi Nakada <nobu@ruby-lang.org>
* ext/strscan/depend: depends on re.h and regex.h.
* ext/strscan/strscan.c: no version check needed.
Sat Mar 6 11:14:33 2004 David Black <dblack@wobblini.net>
* lib/scanf.rb: refixed the previous fix in IO#block_scanf
@ -69,7 +75,7 @@ Fri Mar 5 19:42:09 2004 Minero Aoki <aamine@loveruby.net>
Fri Mar 5 00:51:35 2004 Dave Thomas <dave@pragprog.com>
* lib/test/unit.rb: Move RDoc documentation so that you can
* lib/test/unit.rb: Move RDoc documentation so that you can
now say 'ri Test::Unit'
Thu Mar 4 22:31:40 2004 Nobuyoshi Nakada <nobu@ruby-lang.org>

View file

@ -1 +1,2 @@
strscan.o: strscan.c $(hdrdir)/ruby.h $(topdir)/config.h $(hdrdir)/defines.h
strscan.o: strscan.c $(hdrdir)/ruby.h $(hdrdir)/re.h $(hdrdir)/regex.h \
$(topdir)/config.h $(hdrdir)/defines.h

View file

@ -15,12 +15,6 @@
#include "ruby.h"
#include "re.h"
#include "version.h"
#if (RUBY_VERSION_CODE < 150)
# define rb_eRangeError rb_eArgError
# define rb_obj_freeze(obj) rb_str_freeze(obj)
#endif
#define STRSCAN_VERSION "0.7.0"