* 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> Sat Mar 6 11:14:33 2004 David Black <dblack@wobblini.net>
* lib/scanf.rb: refixed the previous fix in IO#block_scanf * lib/scanf.rb: refixed the previous fix in IO#block_scanf

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 "ruby.h"
#include "re.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" #define STRSCAN_VERSION "0.7.0"