diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-03-06 05:27:37 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-03-06 05:27:37 +0000 |
commit | 50c455507217045133f9ef3e9c5ac85cf68e6e79 (patch) | |
tree | 6ae5f5ef47c1537316624a8c7e1a49198dd9397b /ext/strscan | |
parent | 11229973f4936e46b71c17a6939787b9fa8fd4dd (diff) | |
download | ruby-50c455507217045133f9ef3e9c5ac85cf68e6e79.tar.gz |
* 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
Diffstat (limited to 'ext/strscan')
-rw-r--r-- | ext/strscan/depend | 3 | ||||
-rw-r--r-- | ext/strscan/strscan.c | 6 |
2 files changed, 2 insertions, 7 deletions
diff --git a/ext/strscan/depend b/ext/strscan/depend index 9199574c3f..eba3c3a0d3 100644 --- a/ext/strscan/depend +++ b/ext/strscan/depend @@ -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 diff --git a/ext/strscan/strscan.c b/ext/strscan/strscan.c index 68471ed461..b60cdb852f 100644 --- a/ext/strscan/strscan.c +++ b/ext/strscan/strscan.c @@ -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" |